From 7c7bc1fa8e1d69786315de8531c6b1ddf93b2f91 Mon Sep 17 00:00:00 2001 From: Pradeep Krishnaswamy Date: Mon, 22 Apr 2024 08:28:39 +0000 Subject: [PATCH 01/21] ncbi taxonomy data cleaning scripts and unittest --- scripts/biomedical/NCBI_Taxonomy/README.md | 93 +++ .../schema_mfc/ncbi_taxonomy_schema.mcf | 81 +++ .../NCBI_Taxonomy/scripts/download.sh | 14 + .../scripts/format_ncbi_taxonomy.py | 656 ++++++++++++++++++ .../scripts/format_ncbi_taxonomy_test.py | 106 +++ .../biomedical/NCBI_Taxonomy/scripts/run.sh | 25 + .../biomedical/NCBI_Taxonomy/scripts/tests.sh | 21 + .../NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf | 18 + .../test_data/division_enum_expected.mcf | 78 +++ .../test_data/host_enum_expected.mcf | 58 ++ .../test_data/nodes_enum_expected.mcf | 184 +++++ 11 files changed, 1334 insertions(+) create mode 100644 scripts/biomedical/NCBI_Taxonomy/README.md create mode 100644 scripts/biomedical/NCBI_Taxonomy/schema_mfc/ncbi_taxonomy_schema.mcf create mode 100755 scripts/biomedical/NCBI_Taxonomy/scripts/download.sh create mode 100644 scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py create mode 100644 scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py create mode 100755 scripts/biomedical/NCBI_Taxonomy/scripts/run.sh create mode 100755 scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh create mode 100644 scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md new file mode 100644 index 0000000000..b2387616d1 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -0,0 +1,93 @@ +# Importing NCBI Taxonomy Data + +## Table of Contents + +1. [About the Dataset](#about-the-dataset) + 1. [Download URL](#download-url) + 2. [Database Overview](#database-overview) + 3. [Schema Overview](#schema-overview) + 4. [Notes and Caveats](#notes-and-caveats) + 5. [License](#license) + 6. [Dataset Documentation and Relevant Links](#dataset-documentation-and-relevant-links) +2. [About the Import](#about-the-import) + 1. [Artifacts](#artifacts) + 2. [Import Procedure](#import-procedure) + 3. [Test](#test) + + +## About the Dataset + +### Download URL + +NCBI Taxonomy data can be downloaded from the National Center for Biotechnology Information (NCBI) Assembly database using their FTP Site +1. [ncbi_taxdump](https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/new_taxdump/new_taxdump.tar.Z). +2. [ncbi_taxcat](https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/taxcat.tar.gz). + +### Database Overview + +Need to add notes + +### Schema Overview + +Need to add notes + +### Notes and Caveats + +Need to add notes + +### License + +Need to add notes + +### Dataset Documentation and Relevant Links + +Need to add notes + +## About the import + +### Artifacts + +#### Scripts + +##### Bash Scripts + +- [download.sh](scripts/download.sh) downloads the most recent release of the NCBI Taxonomy data. +- [run.sh](scripts/run.sh) creates new taxonomy enum mfc and converts data into formatted CSV for import of data using categories.dmp, division.dmp, host.dmp, names.dmp & nodes.dmp files from download location +- [tests.sh](scripts/tests.sh) runs standard tests to check for proper formatting of taxonomy enum mfc file. + +##### Python Scripts + +- [format_ncbi_taxonomy.py](scripts/format_ncbi_taxonomy.py) creates the taxonomy enum mcf and formatted CSV files. +- [format_ncbi_taxonomy_test.py](scripts/format_ncbi_taxonomy.py) unittest script to test standard test cases on taxonomy enum mcf. + +#### tMCFs + +- [ncbi_taxonomy_schema.mcf](tMCFs/ncbi_taxonomy.tmcf) contains the tmcf mapping to the csv of taxonomy. + +#### Schema MCF + +- [ncbi_taxonomy_schema.mcf](schema_mcf/ncbi_taxonomy_schema.mcf) contains the schema mcf. + + +### Import Procedure + +Download the most recent versions of NCBI Taxonomy data: + +```bash +sh download.sh +``` + +Generate the enum schema MCF & formatted CSV: + +```bash +sh run.sh +``` + + +### Test + +To run tests: + +```bash +sh tests.sh +``` \ No newline at end of file diff --git a/scripts/biomedical/NCBI_Taxonomy/schema_mfc/ncbi_taxonomy_schema.mcf b/scripts/biomedical/NCBI_Taxonomy/schema_mfc/ncbi_taxonomy_schema.mcf new file mode 100644 index 0000000000..65ffd7dd97 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/schema_mfc/ncbi_taxonomy_schema.mcf @@ -0,0 +1,81 @@ +Node: dcid:Taxon +name: "Taxon" +typeOf: schema:Class +subClassOf: dcs:BiologicalEntity +description: "A set of organisms asserted to represent a natural cohesive biological unit." + +Node: dcid:biologicalHost +name: "biologicalHost" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: dcs:BiologicalHostEnum +description: "The type of larger biological organism that harbors this group of organisms." + +Node: dcid:genBankName +name: "genBankName" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: schema:Text +description: "The name by which GenBank refers to this taxon." + +Node: dcid:hasInheritedDivision +name: "hasInheritedDivision" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: schema:Boolean +description: "Division is inherited by the parent Taxon." + +Node: dcid:ncbiBlastName +name: "ncbiBlastName" +typeOf: schema:Property +domainIncludes: dcs:BiologicalEntity +rangeIncludes: schema:Text +description: "The name by which NCBI Basic Local Alignment Search Tool (Blast) refers to this taxon." + +Node: dcid:ncbiTaxId +name: "ncbiTaxId" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: schema:Number +description: "Node id in ncbi GenBank taxonomy database." + +Node: dcid:parentTaxon +name: "parentTaxon" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: dcs:Taxon +description:"Closest parent taxon of the taxon in question." + +Node: dcid:taxonDivision +name: "taxonDivision" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: dcs:BiologicalTaxonomicDivisionEnum +description:"The broad biological division to which the group of organisms belongs." + +Node: dcid:taxonRank +name: "taxonRank" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: dcs:BiologicalTaxonomicRankEnum +description: "The relative level of the group of organisms (a taxon) is in an ancestral or hereditary hierarchy." + +Node: dcid:taxonTopLevelCategory +name: "taxonTopLevelCategory" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes: dcs:TaxonTopLevelCategoryEnum +description: "The top level category to which a group of organisms (a taxon) belongs. This can be Archaea, Bacteria, Eukaryota, Viruses and Viroids, Other, and Unclassified." + +Node: dcid:abbreviaion +name: "abbreviaion" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes:schema:Text + +Node: dcid:acronym +name: "acronym" +typeOf: schema:Property +domainIncludes: dcs:Taxon +rangeIncludes:schema:Text + diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/download.sh b/scripts/biomedical/NCBI_Taxonomy/scripts/download.sh new file mode 100755 index 0000000000..09e0344be5 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/download.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +mkdir -p input; cd input + +# download the newest ncbi taxdump file and uncompress it +curl -o ncbi_taxdump.tar.Z https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/new_taxdump/new_taxdump.tar.Z +uncompress ncbi_taxdump.tar.Z +tar -xvf ncbi_taxdump.tar +rm ncbi_taxdump.tar + +# download the newest ncbi taxcat file and uncompress it +curl -o ncbi_taxcat.tar.gz https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/taxcat.tar.gz +tar -xvzf ncbi_taxcat.tar.gz +rm ncbi_taxcat.tar.gz diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py new file mode 100644 index 0000000000..556371c151 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py @@ -0,0 +1,656 @@ +# Copyright 2023 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Author: Pradeep Kumar Krishnaswamy +Date: 18-Apr-2024 +Name: format_ncbi_taxonomy +Description: cleaning the NCBI Taxonomy data. +@source data: Download Taxdump.tar.z from NCBI Taxonomy FTP Download page +@file_input: names.dmp, divisions.dmp, host.dmp & nodes.dmp +@file_output: formatted ncbi_taxonomy.csv, tax_id_dcid_mapping.txt & ncbi_taxonomy_schema_enum.mcf +""" + +# import the required packages +import copy +import re +import string +import sys +import os +from pathlib import Path +import pandas as pd +from absl import app +from absl import flags +from absl import logging + +SOURCE_FILE_PATH = None +OUTPUT_FILE_PATH = None +OUTPUT_MCF_FILE = 'ncbi_taxonomy_schema_enum.mcf' +OUTPUT_TAXID_DCID_MAPPING_FILE = 'tax_id_dcid_mapping.txt' +OUTPUT_NCBI_TAXONOMY_CSV = 'ncbi_taxonomy.csv' + +FIRST_MCF_ENTRY = """Node:dcid:BiologicalTaxonomicDivisionEnum +name: "BiologicalTaxonomicDivisionEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "These are broad biological divisions that are commonly used to divide living organisms" +\n""" + +DIVISION_DMP = 'division.dmp' +DIVISION_COL = [ + 'division_code', 'division_acronym', 'division_name', 'comments' +] +DIVISION_MCF = "Node:dcid:BiologicalTaxonomicDivision{PascalCaseDivisionName}\nname: {division_name}\ntypeOf: dcs:BiologicalTaxonomicDivisionEnum\nacronym: {division_acronym}\ndescription: {comments}\n\n" # pylint: disable=line-too-long + +DIVISION_DICT = {} +NCBI_TAXONOMY_CSV_HEADER = [ + 'taxID', 'acronym (list)', 'citation', 'ncbiBlastName', 'commonName', + 'synonym (list)', 'genBankName', 'scientificName', 'dcid', 'host', + 'parentDcid', 'taxonRank', 'division', 'hasInheritedDivision', + 'taxonTopLevelCategory' +] +NAMES_DMP = 'names.dmp' +NAMES_COL = ['tax_id', 'name_txt', 'unique_name', 'name_class'] + +NAME_CLASS_MAPPING = { + "acronym": { + "property_value": "name_txt", + "property_type": "acronym", + "replace_text": False, + "is_list": True + }, + "authority": { + "property_value": "name_txt", + "property_type": "citation", + "replace_text": False, + "is_list": False + }, + "blast name": { + "property_value": "name_txt", + "property_type": "ncbiBlastName", + "replace_text": False, + "is_list": False + }, + "common name": { + "property_value": "name_txt", + "property_type": "commonName", + "replace_text": False, + "is_list": False + }, + "equivalent name": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + }, + "genbank acronym": { + "property_value": "name_txt", + "property_type": "acronym", + "replace_text": False, + "is_list": True + }, + "genbank common name": { + "property_value": "unique_name", + "property_type": "genBankName", + "replace_text": False, + "is_list": False + }, + "in-part": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + }, + "includes": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + }, + "scientific name": { + "property_value": "unique_name", + "property_type": "scientificName", + "replace_text": True, + "is_list": False + }, + "synonym": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + } +} +NCBI_TAXONOMY_PROP = { + "acronym": [], + "citation": "", + "ncbiBlastName": "", + "commonName": "", + "synonym": set(), + "genBankName": "", + "scientificName": "", + "dcid": "", + "host": "", + "parentDcid": "", + "taxonRank": "", + "division": "", + "hasInheritedDivision": "", + "taxonTopLevelCategory": "" +} + +FINAL_NCBI_TAXONOMY = {} +TAX_ID_DCID_MAPPING = {} + +HOST_DMP = 'host.dmp' +HOST_COL = ['tax_id', 'host'] +HOST_ENUM_MCF = """Node:dcid:BiologicalHostEnum +name: "BiologicalHostEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." +\n""" +HOST_MCF = "Node:dcid:BiologicalHost{biological_case_item}\nname: {item}\ntypeOf: dcs:BiologicalHostEnum\n\n" # pylint: disable=line-too-long +HOST_DICT = {} + +NODES_DMP = 'nodes.dmp' +NODES_COL = [ + 'tax_id', 'parent_tax_id', 'rank', 'embl_code', 'division_code', + 'inherited_division' +] +NODES_ENUM_MCF = """Node:dcid:BiologicalTaxonomicRankEnum +name: "BiologicalTaxonomicRankEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "In biology, taxonomic rank is the relative level of a group of organisms (a taxon) in an ancestral or hereditary hierarchy. A common system of biological classification (taxonomy) consists of species, genus, family, order, class, phylum, kingdom, and domain. However, todays taxonomic rankings have expanded beyond these seven basic classifications." +descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" +\n +""" +NODES_MCF = "Node:dcid:BiologicalTaxonomicRank{rank_case}\nname: {rank}\ntypeOf: dcs:BiologicalTaxonomicRankEnum\n\n" # pylint: disable=line-too-long +NODES_DICT = {} + +CATEGORIES_DMP = 'categories.dmp' +CATEGORIES_COL = ['taxonTopLevelCategory', 'speciesTaxID', 'tax_id'] +CATEGORIES_DICT = { + "A": "dcs:TaxonTopLevelCategoryArchaea", + "B": "dcs:TaxonTopLevelCategoryBacteria", + "E": "dcs:TaxonTopLevelCategoryEukaryota", + "V": "dcs:TaxonTopLevelCategoryVirusesAndViroids", + "O": "dcs:TaxonTopLevelCategoryOther", + "U": "dcs:TaxonTopLevelCategoryUnclassified" +} + +_FLAGS = flags.FLAGS + +flags.DEFINE_string('output_dir', 'output', + 'Output directory for generated files.') + +flags.DEFINE_string('input_dir', 'input', + 'Input directory where .dmp files downloaded.') + +MODULE_DIR = str(Path(os.path.dirname(__file__))) + + +class DataFrameGenerator: + """Common Class for DataFrame operation + """ + + def get_dataframe(self, path: str, filename: str) -> pd.DataFrame: + """Create DataFrame from the file name provided + + Args: + path (str): file path of the file + filename (str): file name + + Returns: + pd.DataFrame: clean DataFrame without "|" + """ + df = pd.DataFrame() + try: + df = pd.read_csv(path_join(path, filename), + sep=r'\t', + header=None, + engine='python') + # identify columns with "|" symbol and remove it + col_names = [] # list to store column names with data + for column in df: + if df[column][0] != "|": + col_names.append(column) + df = df[col_names] + + except Exception as e: + logging.error(f"Error in generating DataFrame - {e}") + return df + + def assign_dataframe_header(self, df: pd.DataFrame, + header: list) -> pd.DataFrame: + """Method to assign DataFrame header as per the supplied header (list) + it assigns colum header from zero index as per the list provided + + Args: + df (pd.DataFrame): To which header need to assign + header (list): list of header string + + Returns: + pd.DataFrame: DataFrame with header + """ + if len(header) > 0: + for index, column_name in enumerate(header): + df.rename(columns={df.columns[index]: column_name}, + inplace=True) + return df + + def make_pascal_case(self, df: pd.DataFrame, + colum_name: str) -> pd.DataFrame: + """Adds new column with PascalCase + + Args: + df (pd.DataFrame): DataFrame to make PascalCase column + colum_name (str): column name + + Returns: + pd.DataFrame: DataFrame with PascalCase column + """ + if colum_name in df.columns: + df[colum_name + 'PascalCase'] = df[colum_name].apply( + lambda x: string.capwords(x).replace(" ", "")) + return df + + +class DivisionCls: + """Class to process division.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Division DataFrame + + Returns: + pd.DataFrame: Division DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, DIVISION_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, DIVISION_COL) + df = DataFrameGenerator().make_pascal_case(df, 'division_name') + return df + + def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: + """Append BiologicalTaxonomicDivision MCF entries to file + and creates DIVISION dict + + Args: + df (pd.DataFrame): Division DataFrame + mcf_file_path (str): MCF file path + """ + with open(mcf_file_path, 'w') as file: + file.write(FIRST_MCF_ENTRY) + + global DIVISION_DICT + df.sort_values(by=['division_namePascalCase'], inplace=True) + with open(mcf_file_path, 'a') as file: + for _, row in df.iterrows(): + mcf_line = DIVISION_MCF.format( + PascalCaseDivisionName=row['division_namePascalCase'], + division_name=row['division_name'], + division_acronym=row['division_acronym'], + comments=row['comments']) + file.write(mcf_line) + DIVISION_DICT[row[ + 'division_code']] = 'dcs:BiologicalTaxonomicDivision' + row[ + 'division_namePascalCase'] + + +class NamesCls: + """Class to process names.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Names DataFrame + + Returns: + pd.DataFrame: Names DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NAMES_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, NAMES_COL) + return df + + def clean_names_dataframe(self, df: pd.DataFrame) -> None: + """Clean-up Names DataFrame and generates FINAL_NCBI_TAXONOMY, TAX_ID_DCID_MAPPING + + Args: + df (pd.DataFrame): Names DataFrame + """ + global FINAL_NCBI_TAXONOMY, TAX_ID_DCID_MAPPING + for _, row in df.iterrows(): + current_node = None + tax_id = row['tax_id'] + if tax_id in FINAL_NCBI_TAXONOMY: + current_node = FINAL_NCBI_TAXONOMY[tax_id] + else: + FINAL_NCBI_TAXONOMY[tax_id] = copy.deepcopy(NCBI_TAXONOMY_PROP) + current_node = FINAL_NCBI_TAXONOMY[tax_id] + + # get the mapping record to update details + try: + mapping_ncbi = NAME_CLASS_MAPPING[row['name_class']] + property_value = None + property_list = [] + scientific_name = None + if mapping_ncbi[ + "property_value"] == "unique_name" and not pd.isnull( + row[mapping_ncbi["property_value"]]): + property_value = char_replace(row["unique_name"]) + scientific_name = char_replace(row["unique_name"]) + property_list.append(char_replace(row['name_txt'])) + try: + property_list.append( + char_replace( + row['unique_name'].split('<')[1].split('>')[0])) + except: + logging.error(f"Error in split {property_value}") + else: + property_list.append(char_replace(row['name_txt'])) + property_value = char_replace(row['name_txt']) + scientific_name = char_replace(row["name_txt"]) + if mapping_ncbi['replace_text']: + dcid = property_value.replace('<', + "_ ").replace("(in:", "_ ") + dcid = re.sub('[^A-Za-z0-9_ ]+', '', dcid) + dcid = string.capwords(dcid) + dcid = dcid.replace(" ", "") + current_node['scientificName'] = scientific_name + dcid = 'bio/' + dcid + current_node['dcid'] = dcid + TAX_ID_DCID_MAPPING[tax_id] = 'dcid:' + dcid + else: + if mapping_ncbi['is_list']: + if mapping_ncbi['property_type'] == "acronym": + current_node[mapping_ncbi['property_type']].extend( + property_list) + else: + current_node[mapping_ncbi['property_type']].update( + property_list) + else: + current_node[mapping_ncbi[ + 'property_type']] = char_replace(property_value) + + except Exception as e: + logging.error( + f"Error resolving name_class - {row['name_class']}") + + def create_tax_id_dcid_mapping_file(self, path: str) -> None: + """Writes to tax_id_dcid_mapping file + + Args: + path (str): tax_id_dcid_mapping file path + """ + with open(path, 'w') as file: + file.write("tax_id,dcid\n") + for td_mapping in TAX_ID_DCID_MAPPING: + file.write("{},{}\n".format(td_mapping, + TAX_ID_DCID_MAPPING[td_mapping])) + + +class HostCls: + """Class to process host.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Host DataFrame + + Returns: + pd.DataFrame: Host DataFrame + """ + global HOST_DICT + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, HOST_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, HOST_COL) + df['DC_host_enum'] = df['host'].apply(lambda x: self.__hostdcsformat(x)) + return df + + def __hostdcsformat(self, host: str) -> str: + """Format BiologicalHost string + + Args: + host (str): host string from DataFrame + + Returns: + str: formatted BiologicalHost string + """ + host_lst = host.replace(',', ', ') + host_lst = string.capwords(host_lst) + host_lst = host_lst.replace(' ', '').split(',') + return ','.join(map('dcs:BiologicalHost{0}'.format, host_lst)) + + def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: + """Append BiologicalHost MCF entries to file + + Args: + df (pd.DataFrame): Host DataFrame + mcf_file_path (str): Enum MCF file path + """ + unique_host_lst = df.host.unique() + set_unique_host = set() + for uh in unique_host_lst: + unique_host = uh.split(',') + for u in unique_host: + set_unique_host.add(u) + + sorted_lst = sorted(set_unique_host) + with open(mcf_file_path, 'a') as file: + file.write(HOST_ENUM_MCF) + for uh in sorted_lst: + biological_case_item = string.capwords(uh).replace(" ", "") + mcf_line = HOST_MCF.format( + biological_case_item=biological_case_item, item=uh) + file.write(mcf_line) + + def update_host_enum(self, df: pd.DataFrame) -> None: + """Update Host Enum in FINAL_NCBI_TAXONOMY based on tax_id + + Args: + df (pd.DataFrame): Host DataFrame + """ + global FINAL_NCBI_TAXONOMY + for _, row in df.iterrows(): + try: + current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] + current_node['host'] = row['DC_host_enum'] + except: + logging.error( + f"Host tax_id - {row['tax_id']} is missing in FINAL_NCBI_TAXONOMY" + ) + + +class NodesCls: + """Class to process nodes.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Nodes DataFrame + + Returns: + pd.DataFrame: Nodes DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NODES_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, NODES_COL) + df = df.drop(['embl_code'], axis=1) + df = df.drop(df.columns[5:], axis=1) + return df + + def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: + """Append BiologicalTaxonomicRank MCF entries to file + + Args: + df (pd.DataFrame): Nodes DataFrame + mcf_file_path (str): Enum MCF file path + """ + unique_rank = sorted(df['rank'].unique()) + + with open(mcf_file_path, 'a') as file: + file.write(NODES_ENUM_MCF) + for ur in unique_rank: + rank_case = string.capwords(ur).replace(" ", "") + mcf_line = NODES_MCF.format(rank_case=rank_case, rank=ur) + file.write(mcf_line) + + def update_nodes_enum(self, df: pd.DataFrame) -> None: + """Update parentDcid, division & hasInheritedDivision in FINAL_NCBI_TAXONOMY + + Args: + df (pd.DataFrame): Nodes DataFrame + """ + global FINAL_NCBI_TAXONOMY + for index, row in df.iterrows(): + try: + current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] + current_node['parentDcid'] = TAX_ID_DCID_MAPPING[ + row["parent_tax_id"]] + current_node['division'] = DIVISION_DICT[row["division_code"]] + current_node['hasInheritedDivision'] = True if row[ + 'inherited_division'] == 1 else False + except: + logging.error( + f"Unable to get Nodes tax_id - {row['tax_id']} in FINAL_NCBI_TAXONOMY" + ) + + +class CategoriesCls: + """Class to process nodes.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Categories DataFrame + + Returns: + pd.DataFrame: Categories DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, + CATEGORIES_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, CATEGORIES_COL) + df = df.drop(['speciesTaxID'], axis=1) + df['taxonTopLevelCategory'] = df['taxonTopLevelCategory'].apply( + lambda x: CATEGORIES_DICT[x]) + return df + + def update_categories_enum(self, df: pd.DataFrame) -> None: + """Updated taxonTopLevelCategory in FINAL_NCBI_TAXONOMY + + Args: + df (pd.DataFrame): Categories DataFrame + """ + global FINAL_NCBI_TAXONOMY + for _, row in df.iterrows(): + try: + current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] + current_node['taxonTopLevelCategory'] = row[ + 'taxonTopLevelCategory'] + except: + # do nothing if Categories tax_id not available in FINAL_NCBI_TAXONOMY + pass + + +class FinalDataFrameCls: + """Class to generate final DataFrame and csv file + """ + + def createFinalDF(self) -> pd.DataFrame: + """Creates Final DataFrame from FINAL_NCBI_TAXONOMY dict + + Returns: + pd.DataFrame: Cleaned final DataFrame + """ + global FINAL_NCBI_TAXONOMY + for fnt in FINAL_NCBI_TAXONOMY: + acronym = "" + synonym = "" + if len(FINAL_NCBI_TAXONOMY[fnt]['acronym']) > 0: + acronym = '{}'.format(', '.join( + w for w in FINAL_NCBI_TAXONOMY[fnt]['acronym'])) + + if len(FINAL_NCBI_TAXONOMY[fnt]['synonym']) > 0: + synonym = '{}'.format(', '.join( + w for w in FINAL_NCBI_TAXONOMY[fnt]['synonym'])) + + FINAL_NCBI_TAXONOMY[fnt]['acronym'] = acronym + FINAL_NCBI_TAXONOMY[fnt]['synonym'] = synonym + + ncbi_taxonomy_df = pd.DataFrame.from_dict(FINAL_NCBI_TAXONOMY, + orient='index') + ncbi_taxonomy_df['taxID'] = ncbi_taxonomy_df.index + cols = ncbi_taxonomy_df.columns.tolist() + cols = cols[-1:] + cols[:-1] + ncbi_taxonomy_df = ncbi_taxonomy_df[cols] + + return ncbi_taxonomy_df + + def create_final_csv(self, df: pd.DataFrame, path: str) -> None: + """Creates ncbi_taxonomy.csv + + Args: + df (pd.DataFrame): Cleaned final DataFrame + path (str): ncbi_taxonomy.csv file path + """ + df.to_csv(path, index=False) + + +def char_replace(s: str) -> str: + return s.replace('[', "").replace(']', "").replace('"', "") + + +def set_flages() -> None: + global OUTPUT_FILE_PATH, SOURCE_FILE_PATH + _FLAGS(sys.argv) + OUTPUT_FILE_PATH = path_join(MODULE_DIR, _FLAGS.output_dir) + if not os.path.exists(os.path.join(MODULE_DIR, _FLAGS.output_dir)): + os.mkdir(OUTPUT_FILE_PATH) + SOURCE_FILE_PATH = path_join(MODULE_DIR, _FLAGS.input_dir) + + +def path_join(path: str, filename: str) -> str: + """path join + + Args: + path (str): path + filename (str): filename + + Returns: + str: full filename + """ + return os.path.join(path, filename) + + +def main(_): + """Main method + """ + global OUTPUT_FILE_PATH, SOURCE_FILE_PATH + set_flages() + division_df = DivisionCls().create_dataframe() + DivisionCls().append_mcf_data(division_df, + path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) + names_df = NamesCls().create_dataframe() + NamesCls().clean_names_dataframe(names_df) + NamesCls().create_tax_id_dcid_mapping_file( + path_join(OUTPUT_FILE_PATH, OUTPUT_TAXID_DCID_MAPPING_FILE)) + host_df = HostCls().create_dataframe() + HostCls().append_mcf_data(host_df, + path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) + HostCls().update_host_enum(host_df) + nodes_df = NodesCls().create_dataframe() + NodesCls().append_mcf_data(nodes_df, + path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) + NodesCls().update_nodes_enum(nodes_df) + categories_df = CategoriesCls().create_dataframe() + CategoriesCls().update_categories_enum(categories_df) + final_df = FinalDataFrameCls().createFinalDF() + FinalDataFrameCls().create_final_csv( + final_df, path_join(OUTPUT_FILE_PATH, OUTPUT_NCBI_TAXONOMY_CSV)) + + +if __name__ == "__main__": + app.run(main) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py new file mode 100644 index 0000000000..71d16864d6 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py @@ -0,0 +1,106 @@ +# Copyright 2023 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +""" +Author: Pradeep Kumar Krishnaswamy +Date: 18-Apr-2024 +""" + +import os +import copy +import tempfile +import unittest +from format_ncbi_taxonomy import * + +MODULE_DIR_PATH = str(Path(os.path.dirname(__file__)).parents[0]) + + +class TestNCBITaxonomy(unittest.TestCase): + @classmethod + def setUpClass(self): + set_flages() + + def test_check_division_df_columns(self): + division_df = DivisionCls().create_dataframe() + division_col_lst = copy.deepcopy(DIVISION_COL) + division_col_lst.append('division_namePascalCase') + self.assertListEqual(division_col_lst, division_df.columns.to_list()) + + def test_check_names_df_columns(self): + names_df = NamesCls().create_dataframe() + self.assertListEqual(NAMES_COL, names_df.columns.to_list()) + + def test_check_host_df_columns(self): + host_df = HostCls().create_dataframe() + host_col_lst = copy.deepcopy(HOST_COL) + host_col_lst.append('DC_host_enum') + self.assertListEqual(host_col_lst, host_df.columns.to_list()) + + def test_check_nodes_df_columns(self): + nodes_df = NodesCls().create_dataframe() + nodes_col_lst = NODES_COL + nodes_col_lst.remove('embl_code') + self.assertListEqual(nodes_col_lst, nodes_df.columns.to_list()) + + def test_check_categories_df_columns(self): + categories_df = CategoriesCls().create_dataframe() + categories_col_lst = CATEGORIES_COL + categories_col_lst.remove('speciesTaxID') + self.assertListEqual(CATEGORIES_COL, categories_df.columns.to_list()) + + def test_check_mcf_entries_division(self): + expected_mcf_list = [] + current_mcf_list = [] + division_df = DivisionCls().create_dataframe() + with tempfile.TemporaryDirectory() as tmp_dir: + result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') + DivisionCls().append_mcf_data(division_df, result_mcf_file) + with open(os.path.join(MODULE_DIR_PATH, 'test_data/division_enum_expected.mcf'), 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) + with open(result_mcf_file, 'r') as mcf: + current_mcf_list.extend(mcf.read().split('\n\n')) + + self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + + + def test_check_mcf_entries_hosts(self): + expected_mcf_list = [] + current_mcf_list = [] + host_df = HostCls().create_dataframe() + with tempfile.TemporaryDirectory() as tmp_dir: + result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') + HostCls().append_mcf_data(host_df, result_mcf_file) + with open(os.path.join(MODULE_DIR_PATH, 'test_data/host_enum_expected.mcf'), 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) + with open(result_mcf_file, 'r') as mcf: + current_mcf_list.extend(mcf.read().split('\n\n')) + + self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + + def test_check_mcf_entries_nodes(self): + expected_mcf_list = [] + current_mcf_list = [] + nodes_df = NodesCls().create_dataframe() + with tempfile.TemporaryDirectory() as tmp_dir: + result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') + NodesCls().append_mcf_data(nodes_df, result_mcf_file) + with open(os.path.join(MODULE_DIR_PATH, 'test_data/nodes_enum_expected.mcf'), 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) + with open(result_mcf_file, 'r') as mcf: + current_mcf_list.extend(mcf.read().split('\n\n')) + + self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + + +if __name__ == '__main__': + unittest.main() diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/run.sh b/scripts/biomedical/NCBI_Taxonomy/scripts/run.sh new file mode 100755 index 0000000000..9f23b2f3a1 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/run.sh @@ -0,0 +1,25 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Author: Pradeep Kumar Krishnaswamy +# Date: 18-Apr-2024 + + +# !/bin/bash + +# make output directory to save enmu mcf & cleaned csv +mkdir -p output + +# Command +python3 format_ncbi_taxonomy.py diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh b/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh new file mode 100755 index 0000000000..d80520673c --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh @@ -0,0 +1,21 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Author: Pradeep Kumar Krishnaswamy +# Date: 18-Apr-2024 + +#!/bin/bash + +# Command +python3 format_ncbi_taxonomy_test.py diff --git a/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf b/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf new file mode 100644 index 0000000000..3677d02ff9 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf @@ -0,0 +1,18 @@ +Node: E:ncbi_taxonomy->E1 +typeOf: dcs:Taxon +dcid: C:ncbi_taxonomy->dcid +name: C:ncbi_taxonomy->scientificName +abbreviaion: C:ncbi_taxonomy->acronym +biologicalHost: C:ncbi_taxonomy->host +citation: C:ncbi_taxonomy->citation +commonName: C:ncbi_taxonomy->commonName +genBankName: C:ncbi_taxonomy->genBankName +hasInheritedDivsion: C:ncbi_taxonomy->hasInheritedDivision +ncbiBlastName: C:ncbi_taxonomy->ncbiBlastName +ncbiTaxId: C:ncbi_taxonomy->taxID +parentTaxon: C:ncbi_taxonomy->parentDcid +scientificName: C:ncbi_taxonomy->scientificName +synonym: C:ncbi_taxonomy->synonym +taxonDivision: C:ncbi_taxonomy->division +taxonRank: C:ncbi_taxonomy->taxonRank +taxonTopLevelCategory: C:ncbi_taxonomy->taxonTopLevelCategory diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf new file mode 100644 index 0000000000..e57e72f512 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf @@ -0,0 +1,78 @@ +Node:dcid:BiologicalTaxonomicDivisionEnum +name: "BiologicalTaxonomicDivisionEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "These are broad biological divisions that are commonly used to divide living organisms" + +Node:dcid:BiologicalTaxonomicDivisionBacteria +name: Bacteria +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: BCT +description: + +Node:dcid:BiologicalTaxonomicDivisionEnvironmentalSamples +name: Environmental samples +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: ENV +description: Anonymous sequences cloned directly from the environment + +Node:dcid:BiologicalTaxonomicDivisionInvertebrates +name: Invertebrates +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: INV +description: + +Node:dcid:BiologicalTaxonomicDivisionMammals +name: Mammals +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: MAM +description: + +Node:dcid:BiologicalTaxonomicDivisionPhages +name: Phages +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: PHG +description: + +Node:dcid:BiologicalTaxonomicDivisionPlantsAndFungi +name: Plants and Fungi +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: PLN +description: + +Node:dcid:BiologicalTaxonomicDivisionPrimates +name: Primates +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: PRI +description: + +Node:dcid:BiologicalTaxonomicDivisionRodents +name: Rodents +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: ROD +description: + +Node:dcid:BiologicalTaxonomicDivisionSyntheticAndChimeric +name: Synthetic and Chimeric +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: SYN +description: + +Node:dcid:BiologicalTaxonomicDivisionUnassigned +name: Unassigned +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: UNA +description: No species nodes should inherit this division assignment + +Node:dcid:BiologicalTaxonomicDivisionVertebrates +name: Vertebrates +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: VRT +description: + +Node:dcid:BiologicalTaxonomicDivisionViruses +name: Viruses +typeOf: dcs:BiologicalTaxonomicDivisionEnum +acronym: VRL +description: + diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf new file mode 100644 index 0000000000..e6217a7ab5 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf @@ -0,0 +1,58 @@ +Node:dcid:BiologicalHostEnum +name: "BiologicalHostEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." + +Node:dcid:BiologicalHostAlgae +name: algae +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostArchaea +name: archaea +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostBacteria +name: bacteria +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostEukaryoticAlgae +name: eukaryotic algae +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostFungi +name: fungi +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostHuman +name: human +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostHumanStool +name: human stool +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostInsects +name: insects +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostInvertebrates +name: invertebrates +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostLandPlants +name: land plants +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostPlants +name: plants +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostProtozoa +name: protozoa +typeOf: dcs:BiologicalHostEnum + +Node:dcid:BiologicalHostVertebrates +name: vertebrates +typeOf: dcs:BiologicalHostEnum + diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf new file mode 100644 index 0000000000..ccbc748473 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf @@ -0,0 +1,184 @@ +Node:dcid:BiologicalTaxonomicRankEnum +name: "BiologicalTaxonomicRankEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "In biology, taxonomic rank is the relative level of a group of organisms (a taxon) in an ancestral or hereditary hierarchy. A common system of biological classification (taxonomy) consists of species, genus, family, order, class, phylum, kingdom, and domain. However, todays taxonomic rankings have expanded beyond these seven basic classifications." +descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" + + +Node:dcid:BiologicalTaxonomicRankBiotype +name: biotype +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankClade +name: clade +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankClass +name: class +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankCohort +name: cohort +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankFamily +name: family +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankForma +name: forma +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankFormaSpecialis +name: forma specialis +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankGenotype +name: genotype +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankGenus +name: genus +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankInfraclass +name: infraclass +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankInfraorder +name: infraorder +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankIsolate +name: isolate +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankKingdom +name: kingdom +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankMorph +name: morph +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankNoRank +name: no rank +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankOrder +name: order +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankParvorder +name: parvorder +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankPathogroup +name: pathogroup +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankPhylum +name: phylum +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSection +name: section +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSeries +name: series +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSerogroup +name: serogroup +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSerotype +name: serotype +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSpecies +name: species +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSpeciesGroup +name: species group +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSpeciesSubgroup +name: species subgroup +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankStrain +name: strain +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubclass +name: subclass +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubcohort +name: subcohort +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubfamily +name: subfamily +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubgenus +name: subgenus +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubkingdom +name: subkingdom +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSuborder +name: suborder +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubphylum +name: subphylum +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubsection +name: subsection +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubspecies +name: subspecies +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSubtribe +name: subtribe +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSuperclass +name: superclass +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSuperfamily +name: superfamily +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSuperkingdom +name: superkingdom +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSuperorder +name: superorder +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankSuperphylum +name: superphylum +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankTribe +name: tribe +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node:dcid:BiologicalTaxonomicRankVarietas +name: varietas +typeOf: dcs:BiologicalTaxonomicRankEnum + From d9145a9bf889785c646a38cdde60b61e65259374 Mon Sep 17 00:00:00 2001 From: Pradeep Krishnaswamy Date: Mon, 22 Apr 2024 08:55:55 +0000 Subject: [PATCH 02/21] fixed format issues --- .../scripts/format_ncbi_taxonomy_test.py | 25 +++++++++++++------ 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py index 71d16864d6..07e7b655a2 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py @@ -25,7 +25,8 @@ MODULE_DIR_PATH = str(Path(os.path.dirname(__file__)).parents[0]) -class TestNCBITaxonomy(unittest.TestCase): +class TestNCBITaxonomy(unittest.TestCase): + @classmethod def setUpClass(self): set_flages() @@ -61,26 +62,31 @@ def test_check_categories_df_columns(self): def test_check_mcf_entries_division(self): expected_mcf_list = [] current_mcf_list = [] - division_df = DivisionCls().create_dataframe() + division_df = DivisionCls().create_dataframe() with tempfile.TemporaryDirectory() as tmp_dir: result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') DivisionCls().append_mcf_data(division_df, result_mcf_file) - with open(os.path.join(MODULE_DIR_PATH, 'test_data/division_enum_expected.mcf'), 'r') as mcf: + with open( + os.path.join(MODULE_DIR_PATH, + 'test_data/division_enum_expected.mcf'), + 'r') as mcf: expected_mcf_list.extend(mcf.read().split('\n\n')) with open(result_mcf_file, 'r') as mcf: current_mcf_list.extend(mcf.read().split('\n\n')) self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) - def test_check_mcf_entries_hosts(self): expected_mcf_list = [] current_mcf_list = [] - host_df = HostCls().create_dataframe() + host_df = HostCls().create_dataframe() with tempfile.TemporaryDirectory() as tmp_dir: result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') HostCls().append_mcf_data(host_df, result_mcf_file) - with open(os.path.join(MODULE_DIR_PATH, 'test_data/host_enum_expected.mcf'), 'r') as mcf: + with open( + os.path.join(MODULE_DIR_PATH, + 'test_data/host_enum_expected.mcf'), + 'r') as mcf: expected_mcf_list.extend(mcf.read().split('\n\n')) with open(result_mcf_file, 'r') as mcf: current_mcf_list.extend(mcf.read().split('\n\n')) @@ -90,11 +96,14 @@ def test_check_mcf_entries_hosts(self): def test_check_mcf_entries_nodes(self): expected_mcf_list = [] current_mcf_list = [] - nodes_df = NodesCls().create_dataframe() + nodes_df = NodesCls().create_dataframe() with tempfile.TemporaryDirectory() as tmp_dir: result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') NodesCls().append_mcf_data(nodes_df, result_mcf_file) - with open(os.path.join(MODULE_DIR_PATH, 'test_data/nodes_enum_expected.mcf'), 'r') as mcf: + with open( + os.path.join(MODULE_DIR_PATH, + 'test_data/nodes_enum_expected.mcf'), + 'r') as mcf: expected_mcf_list.extend(mcf.read().split('\n\n')) with open(result_mcf_file, 'r') as mcf: current_mcf_list.extend(mcf.read().split('\n\n')) From 3dcb084aef18743b29ec60936f7be0469f9d8ca0 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Mon, 24 Jun 2024 20:47:44 -0700 Subject: [PATCH 03/21] Update README.md fill in missing subsections --- scripts/biomedical/NCBI_Taxonomy/README.md | 27 ++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index b2387616d1..965bd253d7 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -6,6 +6,8 @@ 1. [Download URL](#download-url) 2. [Database Overview](#database-overview) 3. [Schema Overview](#schema-overview) + 1. [dcid Generation](#dcid-generation) + 2. [enum Generation](#enum-generation) 4. [Notes and Caveats](#notes-and-caveats) 5. [License](#license) 6. [Dataset Documentation and Relevant Links](#dataset-documentation-and-relevant-links) @@ -17,6 +19,8 @@ ## About the Dataset +NCBI Taxonomy "consists of a curated set of names and classifications for all of the source organisms represented in the International Nucleotide Sequence Database Collaboration (INSDC). The NCBI Taxonomy database contains a list of names that are determined to be nomenclaturally correct or valid (as defined according to the different codes of nomenclature), classified in an approximately phylogenetic hierarchy (depending on the level of knowledge regarding phylogenetic relationships of a given group) as well as a number of names that exist outside the jurisdiction of the codes. That is, it focuses on nomenclature and systematics, rather than documenting the description of taxa." Furthermore, NCBI Taxonomy "includes organism names and classifications for every sequence in the nucleotide and protein sequence databases of the INSDC. It provides a framework for clustering elements within other domains of NCBI web pages, for internal linking between domains of the Entrez system and for linking out to taxon-specific external resources on the web and relevant publications. It is also the standard nomenclature and classification repository for the INSDC that comprises of GenBank, the European Molecular Biology Laboratory (EMBL) and DNA Data Bank of Japan (DDBJ)." + ### Download URL NCBI Taxonomy data can be downloaded from the National Center for Biotechnology Information (NCBI) Assembly database using their FTP Site @@ -25,23 +29,38 @@ NCBI Taxonomy data can be downloaded from the National Center for Biotechnology ### Database Overview -Need to add notes +"NCBI Taxonomy distinguishes between formal and informal names. Formal names are declared based on rules laid down in four relevant codes of nomenclature (although other codes do exist). These are the International Code of Nomenclature for algae, fungi, and plants (ICNafp), the International Code of Nomenclature of Prokaryotes (ICNP) and the International Code of Zoological Nomenclature (ICZN). The viruses are governed by the International Code of Virus Classification and Nomenclature (ICVCN, also referred to as the ICTV Code). Informal names follow internal rules that are dictated by practical considerations outside of the Codes. For example, names lacking species epithets are commonly applied to GenBank records." + +In this import we include information from the following files downloaded from the ftp backend: +* divisions.dmp +* names.dmp +* host.dmp +* nodes.dmp +* categories.dmp ### Schema Overview Need to add notes +#### dcid Generation + +The data for each entry in NCBI Taxonomy was stored as a Taxon entity. The dcid for these entities was generated by adding the prefix "bio/" to the scientific name for the Taxon in which the scientific name was reperesented in pascal case and text in <> was connected by an "_" (e.g. scientifc name Bacteria for ncbi tax id "2" was represented as "bio/Bacteria_Bacteria"). + +#### enum Generation + +The schema for the BiologicalTaxonomicDivisionEnum, and BiologicalHostEnum, and BiologicalTaxonomicRankEnum are autogenerated by `format_ncbi_taxonomy.py`. + ### Notes and Caveats Need to add notes ### License -Need to add notes +This data is from an NIH human genome unrestricted-access data repository and made accessible under the [NIH Genomic Data Sharing (GDS) Policy](https://osp.od.nih.gov/scientific-sharing/genomic-data-sharing/). ### Dataset Documentation and Relevant Links -Need to add notes +More information about the NCBI Taxonomy database can be found [here](https://www.ncbi.nlm.nih.gov/books/NBK53758/). Additional information is contained in [Schoch et al. 2020](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7408187/). ## About the import @@ -90,4 +109,4 @@ To run tests: ```bash sh tests.sh -``` \ No newline at end of file +``` From 1259329c0d841df0987a6a45fd65b2939ba2ad95 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Tue, 25 Jun 2024 11:18:56 -0700 Subject: [PATCH 04/21] Update README.md add schema documentation on edges --- scripts/biomedical/NCBI_Taxonomy/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index 965bd253d7..1171545a80 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -8,6 +8,7 @@ 3. [Schema Overview](#schema-overview) 1. [dcid Generation](#dcid-generation) 2. [enum Generation](#enum-generation) + 3. [Edges](#edges) 4. [Notes and Caveats](#notes-and-caveats) 5. [License](#license) 6. [Dataset Documentation and Relevant Links](#dataset-documentation-and-relevant-links) @@ -50,6 +51,10 @@ The data for each entry in NCBI Taxonomy was stored as a Taxon entity. The dcid The schema for the BiologicalTaxonomicDivisionEnum, and BiologicalHostEnum, and BiologicalTaxonomicRankEnum are autogenerated by `format_ncbi_taxonomy.py`. +#### Edges + +The edges, or links, in this import are between Taxon nodes that are related in parent-child relationships within the taxonomic heirachry. The dcid of a parent Taxon node is stored in the property "parentTaxon". For example, a node of taxon rank of Species will be linked to the relevant Taxon node of rank Genus. + ### Notes and Caveats Need to add notes From d910e77d68a71ce1b295c04150ecc811aa63af11 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Wed, 3 Jul 2024 17:10:23 -0700 Subject: [PATCH 05/21] Update format_ncbi_taxonomy_test.py update script --- .../scripts/format_ncbi_taxonomy_test.py | 736 +++++++++++++++--- 1 file changed, 639 insertions(+), 97 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py index 07e7b655a2..2226958811 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py @@ -1,4 +1,4 @@ -# Copyright 2023 Google LLC +# Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,102 +14,644 @@ """ Author: Pradeep Kumar Krishnaswamy Date: 18-Apr-2024 +Edited By: Samantha Piekos +Last Edited Date: 03-Jul-2024 """ -import os +# import the required packages import copy -import tempfile -import unittest -from format_ncbi_taxonomy import * - -MODULE_DIR_PATH = str(Path(os.path.dirname(__file__)).parents[0]) - - -class TestNCBITaxonomy(unittest.TestCase): - - @classmethod - def setUpClass(self): - set_flages() - - def test_check_division_df_columns(self): - division_df = DivisionCls().create_dataframe() - division_col_lst = copy.deepcopy(DIVISION_COL) - division_col_lst.append('division_namePascalCase') - self.assertListEqual(division_col_lst, division_df.columns.to_list()) - - def test_check_names_df_columns(self): - names_df = NamesCls().create_dataframe() - self.assertListEqual(NAMES_COL, names_df.columns.to_list()) - - def test_check_host_df_columns(self): - host_df = HostCls().create_dataframe() - host_col_lst = copy.deepcopy(HOST_COL) - host_col_lst.append('DC_host_enum') - self.assertListEqual(host_col_lst, host_df.columns.to_list()) - - def test_check_nodes_df_columns(self): - nodes_df = NodesCls().create_dataframe() - nodes_col_lst = NODES_COL - nodes_col_lst.remove('embl_code') - self.assertListEqual(nodes_col_lst, nodes_df.columns.to_list()) - - def test_check_categories_df_columns(self): - categories_df = CategoriesCls().create_dataframe() - categories_col_lst = CATEGORIES_COL - categories_col_lst.remove('speciesTaxID') - self.assertListEqual(CATEGORIES_COL, categories_df.columns.to_list()) - - def test_check_mcf_entries_division(self): - expected_mcf_list = [] - current_mcf_list = [] - division_df = DivisionCls().create_dataframe() - with tempfile.TemporaryDirectory() as tmp_dir: - result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') - DivisionCls().append_mcf_data(division_df, result_mcf_file) - with open( - os.path.join(MODULE_DIR_PATH, - 'test_data/division_enum_expected.mcf'), - 'r') as mcf: - expected_mcf_list.extend(mcf.read().split('\n\n')) - with open(result_mcf_file, 'r') as mcf: - current_mcf_list.extend(mcf.read().split('\n\n')) - - self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) - - def test_check_mcf_entries_hosts(self): - expected_mcf_list = [] - current_mcf_list = [] - host_df = HostCls().create_dataframe() - with tempfile.TemporaryDirectory() as tmp_dir: - result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') - HostCls().append_mcf_data(host_df, result_mcf_file) - with open( - os.path.join(MODULE_DIR_PATH, - 'test_data/host_enum_expected.mcf'), - 'r') as mcf: - expected_mcf_list.extend(mcf.read().split('\n\n')) - with open(result_mcf_file, 'r') as mcf: - current_mcf_list.extend(mcf.read().split('\n\n')) - - self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) - - def test_check_mcf_entries_nodes(self): - expected_mcf_list = [] - current_mcf_list = [] - nodes_df = NodesCls().create_dataframe() - with tempfile.TemporaryDirectory() as tmp_dir: - result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') - NodesCls().append_mcf_data(nodes_df, result_mcf_file) - with open( - os.path.join(MODULE_DIR_PATH, - 'test_data/nodes_enum_expected.mcf'), - 'r') as mcf: - expected_mcf_list.extend(mcf.read().split('\n\n')) - with open(result_mcf_file, 'r') as mcf: - current_mcf_list.extend(mcf.read().split('\n\n')) - - self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) - - -if __name__ == '__main__': - unittest.main() +import re +import string +import sys +import os +from pathlib import Path +import pandas as pd +from absl import app +from absl import flags +from absl import logging + +SOURCE_FILE_PATH = 'input/' +OUTPUT_FILE_PATH = 'output/' +OUTPUT_MCF_FILE = 'ncbi_taxonomy_schema_enum.mcf' +OUTPUT_TAXID_DCID_MAPPING_FILE = 'tax_id_dcid_mapping.txt' +OUTPUT_NCBI_TAXONOMY_CSV = 'ncbi_taxonomy.csv' + +FIRST_MCF_ENTRY = """# This schema file is generated by format_ncbi_taxonomy.py +Node:dcid:BiologicalTaxonomicDivisionEnum +name: "BiologicalTaxonomicDivisionEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "These are broad biological divisions that are commonly used to divide living organisms" +\n""" + +DIVISION_DMP = 'division.dmp' +DIVISION_COL = [ + 'division_code', 'division_acronym', 'division_name', 'comments' +] +DIVISION_MCF = 'Node:dcid:BiologicalTaxonomicDivision{PascalCaseDivisionName}\nname: "{division_name}"\ntypeOf: dcs:BiologicalTaxonomicDivisionEnum\nabbreviation: "{division_acronym}"\ndescription: "{comments}"\n\n' # pylint: disable=line-too-long + +DIVISION_DICT = {} +NCBI_TAXONOMY_CSV_HEADER = [ + 'taxID', 'acronym (list)', 'citation', 'ncbiBlastName', 'commonName', + 'synonym (list)', 'genBankName', 'scientificName', 'dcid', 'host', + 'parentDcid', 'taxonRank', 'division', 'hasInheritedDivision', + 'taxonTopLevelCategory' +] +NAMES_DMP = 'names.dmp' +NAMES_COL = ['tax_id', 'name_txt', 'unique_name', 'name_class'] + +NAME_CLASS_MAPPING = { + "acronym": { + "property_value": "name_txt", + "property_type": "acronym", + "replace_text": False, + "is_list": True + }, + "authority": { + "property_value": "name_txt", + "property_type": "citation", + "replace_text": False, + "is_list": False + }, + "blast name": { + "property_value": "name_txt", + "property_type": "ncbiBlastName", + "replace_text": False, + "is_list": False + }, + "common name": { + "property_value": "name_txt", + "property_type": "commonName", + "replace_text": False, + "is_list": False + }, + "equivalent name": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + }, + "genbank acronym": { + "property_value": "name_txt", + "property_type": "acronym", + "replace_text": False, + "is_list": True + }, + "genbank common name": { + "property_value": "unique_name", + "property_type": "genBankName", + "replace_text": False, + "is_list": False + }, + "in-part": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + }, + "includes": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + }, + "scientific name": { + "property_value": "unique_name", + "property_type": "scientificName", + "replace_text": True, + "is_list": False + }, + "synonym": { + "property_value": "unique_name", + "property_type": "synonym", + "replace_text": False, + "is_list": True + } +} +NCBI_TAXONOMY_PROP = { + "acronym": [], + "citation": "", + "ncbiBlastName": "", + "commonName": "", + "synonym": set(), + "genBankName": "", + "scientificName": "", + "dcid": "", + "host": "", + "parentDcid": "", + "taxonRank": "", + "division": "", + "hasInheritedDivision": "", + "taxonTopLevelCategory": "" +} + +FINAL_NCBI_TAXONOMY = {} +TAX_ID_DCID_MAPPING = {} + +HOST_DMP = 'host.dmp' +HOST_COL = ['tax_id', 'host'] +HOST_ENUM_MCF = """Node:dcid:BiologicalHostEnum +name: "BiologicalHostEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." +\n""" +HOST_MCF = 'Node:dcid:BiologicalHost{biological_case_item}\nname: "{item}"\ntypeOf: dcs:BiologicalHostEnum\n\n' # pylint: disable=line-too-long +HOST_DICT = {} + +NODES_DMP = 'nodes.dmp' +NODES_COL = [ + 'tax_id', 'parent_tax_id', 'rank', 'embl_code', 'division_code', + 'inherited_division' +] +NODES_ENUM_MCF = """Node:dcid:BiologicalTaxonomicRankEnum +name: "BiologicalTaxonomicRankEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "In biology, taxonomic rank is the relative level of a group of organisms (a taxon) in an ancestral or hereditary hierarchy. A common system of biological classification (taxonomy) consists of species, genus, family, order, class, phylum, kingdom, and domain. However, todays taxonomic rankings have expanded beyond these seven basic classifications." +descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" +\n +""" +NODES_MCF = "Node:dcid:BiologicalTaxonomicRank{rank_case}\nname: {rank}\ntypeOf: dcs:BiologicalTaxonomicRankEnum\n\n" # pylint: disable=line-too-long +NODES_DICT = {} + +CATEGORIES_DMP = 'categories.dmp' +CATEGORIES_COL = ['taxonTopLevelCategory', 'speciesTaxID', 'tax_id'] +CATEGORIES_DICT = { + "A": "dcs:TaxonTopLevelCategoryArchaea", + "B": "dcs:TaxonTopLevelCategoryBacteria", + "E": "dcs:TaxonTopLevelCategoryEukaryota", + "V": "dcs:TaxonTopLevelCategoryVirusesAndViroids", + "O": "dcs:TaxonTopLevelCategoryOther", + "U": "dcs:TaxonTopLevelCategoryUnclassified" +} + +_FLAGS = flags.FLAGS + +flags.DEFINE_string('output_dir', 'output', + 'Output directory for generated files.') + +flags.DEFINE_string('input_dir', 'input', + 'Input directory where .dmp files downloaded.') + +MODULE_DIR = str(Path(os.path.dirname(__file__))) + + +class DataFrameGenerator: + """Common Class for DataFrame operation + """ + + def get_dataframe(self, path: str, filename: str) -> pd.DataFrame: + """Create DataFrame from the file name provided + + Args: + path (str): file path of the file + filename (str): file name + + Returns: + pd.DataFrame: clean DataFrame without "|" + """ + df = pd.DataFrame() + try: + df = pd.read_csv(path_join(path, filename), + sep=r'\t', + header=None, + engine='python') + # identify columns with "|" symbol and remove it + col_names = [] # list to store column names with data + for column in df: + if df[column][0] != "|": + col_names.append(column) + df = df[col_names] + + except Exception as e: + logging.error(f"Error in generating DataFrame - {e}") + return df + + def assign_dataframe_header(self, df: pd.DataFrame, + header: list) -> pd.DataFrame: + """Method to assign DataFrame header as per the supplied header (list) + it assigns colum header from zero index as per the list provided + + Args: + df (pd.DataFrame): To which header need to assign + header (list): list of header string + + Returns: + pd.DataFrame: DataFrame with header + """ + if len(header) > 0: + for index, column_name in enumerate(header): + df.rename(columns={df.columns[index]: column_name}, + inplace=True) + return df + + def make_pascal_case(self, df: pd.DataFrame, + colum_name: str) -> pd.DataFrame: + """Adds new column with PascalCase + + Args: + df (pd.DataFrame): DataFrame to make PascalCase column + colum_name (str): column name + + Returns: + pd.DataFrame: DataFrame with PascalCase column + """ + if colum_name in df.columns: + df[colum_name + 'PascalCase'] = df[colum_name].apply( + lambda x: string.capwords(x).replace(" ", "")) + return df + + +class DivisionCls: + """Class to process division.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Division DataFrame + + Returns: + pd.DataFrame: Division DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, DIVISION_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, DIVISION_COL) + df = DataFrameGenerator().make_pascal_case(df, 'division_name') + return df + + def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: + """Append BiologicalTaxonomicDivision MCF entries to file + and creates DIVISION dict + + Args: + df (pd.DataFrame): Division DataFrame + mcf_file_path (str): MCF file path + """ + with open(mcf_file_path, 'w') as file: + file.write(FIRST_MCF_ENTRY) + + global DIVISION_DICT + df.sort_values(by=['division_namePascalCase'], inplace=True) + with open(mcf_file_path, 'a') as file: + for _, row in df.iterrows(): + mcf_line = DIVISION_MCF.format( + PascalCaseDivisionName=row['division_namePascalCase'], + division_name=row['division_name'], + division_acronym=row['division_acronym'], + comments=row['comments']) + file.write(mcf_line) + DIVISION_DICT[row[ + 'division_code']] = 'dcs:BiologicalTaxonomicDivision' + row[ + 'division_namePascalCase'] + + +class NamesCls: + """Class to process names.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Names DataFrame + + Returns: + pd.DataFrame: Names DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NAMES_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, NAMES_COL) + return df + + def clean_names_dataframe(self, df: pd.DataFrame) -> None: + """Clean-up Names DataFrame and generates FINAL_NCBI_TAXONOMY, TAX_ID_DCID_MAPPING + + Args: + df (pd.DataFrame): Names DataFrame + """ + global FINAL_NCBI_TAXONOMY, TAX_ID_DCID_MAPPING + for _, row in df.iterrows(): + current_node = None + tax_id = row['tax_id'] + if tax_id in FINAL_NCBI_TAXONOMY: + current_node = FINAL_NCBI_TAXONOMY[tax_id] + else: + FINAL_NCBI_TAXONOMY[tax_id] = copy.deepcopy(NCBI_TAXONOMY_PROP) + current_node = FINAL_NCBI_TAXONOMY[tax_id] + + # get the mapping record to update details + try: + mapping_ncbi = NAME_CLASS_MAPPING[row['name_class']] + property_value = None + property_list = [] + scientific_name = None + if mapping_ncbi[ + "property_value"] == "unique_name" and not pd.isnull( + row[mapping_ncbi["property_value"]]): + property_value = char_replace(row["unique_name"]) + scientific_name = char_replace(row["unique_name"]) + property_list.append(char_replace(row['name_txt'])) + try: + property_list.append( + char_replace( + row['unique_name'].split('<')[1].split('>')[0])) + except: + logging.error(f"Error in split {property_value}") + else: + property_list.append(char_replace(row['name_txt'])) + property_value = char_replace(row['name_txt']) + scientific_name = char_replace(row["name_txt"]) + if mapping_ncbi['replace_text']: + dcid = property_value.replace('<', + "_ ").replace("(in:", "_ ") + dcid = re.sub('[^A-Za-z0-9_ ]+', '', dcid) + dcid = string.capwords(dcid) + dcid = dcid.replace(" ", "") + current_node['scientificName'] = scientific_name + dcid = 'bio/' + dcid + current_node['dcid'] = dcid + TAX_ID_DCID_MAPPING[tax_id] = 'dcid:' + dcid + else: + if mapping_ncbi['is_list']: + if mapping_ncbi['property_type'] == "acronym": + current_node[mapping_ncbi['property_type']].extend( + property_list) + else: + current_node[mapping_ncbi['property_type']].update( + property_list) + else: + current_node[mapping_ncbi[ + 'property_type']] = char_replace(property_value) + + except Exception as e: + logging.error( + f"Error resolving name_class - {row['name_class']}") + + def create_tax_id_dcid_mapping_file(self, path: str) -> None: + """Writes to tax_id_dcid_mapping file + + Args: + path (str): tax_id_dcid_mapping file path + """ + with open(path, 'w') as file: + file.write("tax_id,dcid\n") + for td_mapping in TAX_ID_DCID_MAPPING: + file.write("{},{}\n".format(td_mapping, + TAX_ID_DCID_MAPPING[td_mapping])) + + +class HostCls: + """Class to process host.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Host DataFrame + + Returns: + pd.DataFrame: Host DataFrame + """ + global HOST_DICT + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, HOST_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, HOST_COL) + df['DC_host_enum'] = df['host'].apply(lambda x: self.__hostdcsformat(x)) + return df + + def __hostdcsformat(self, host: str) -> str: + """Format BiologicalHost string + + Args: + host (str): host string from DataFrame + + Returns: + str: formatted BiologicalHost string + """ + host_lst = host.replace(',', ', ') + host_lst = string.capwords(host_lst) + host_lst = host_lst.replace(' ', '').split(',') + return ','.join(map('dcs:BiologicalHost{0}'.format, host_lst)) + + def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: + """Append BiologicalHost MCF entries to file + + Args: + df (pd.DataFrame): Host DataFrame + mcf_file_path (str): Enum MCF file path + """ + unique_host_lst = df.host.unique() + set_unique_host = set() + for uh in unique_host_lst: + unique_host = uh.split(',') + for u in unique_host: + set_unique_host.add(u) + + sorted_lst = sorted(set_unique_host) + with open(mcf_file_path, 'a') as file: + file.write(HOST_ENUM_MCF) + for uh in sorted_lst: + biological_case_item = string.capwords(uh).replace(" ", "") + mcf_line = HOST_MCF.format( + biological_case_item=biological_case_item, item=uh) + file.write(mcf_line) + + def update_host_enum(self, df: pd.DataFrame) -> None: + """Update Host Enum in FINAL_NCBI_TAXONOMY based on tax_id + + Args: + df (pd.DataFrame): Host DataFrame + """ + global FINAL_NCBI_TAXONOMY + for _, row in df.iterrows(): + try: + current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] + current_node['host'] = row['DC_host_enum'] + except: + logging.error( + f"Host tax_id - {row['tax_id']} is missing in FINAL_NCBI_TAXONOMY" + ) + + +class NodesCls: + """Class to process nodes.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Nodes DataFrame + + Returns: + pd.DataFrame: Nodes DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NODES_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, NODES_COL) + df = df.drop(['embl_code'], axis=1) + df = df.drop(df.columns[5:], axis=1) + return df + + def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: + """Append BiologicalTaxonomicRank MCF entries to file + + Args: + df (pd.DataFrame): Nodes DataFrame + mcf_file_path (str): Enum MCF file path + """ + unique_rank = sorted(df['rank'].unique()) + + with open(mcf_file_path, 'a') as file: + file.write(NODES_ENUM_MCF) + for ur in unique_rank: + rank_case = string.capwords(ur).replace(" ", "") + mcf_line = NODES_MCF.format(rank_case=rank_case, rank=ur) + file.write(mcf_line) + + def update_nodes_enum(self, df: pd.DataFrame) -> None: + """Update parentDcid, division & hasInheritedDivision in FINAL_NCBI_TAXONOMY + + Args: + df (pd.DataFrame): Nodes DataFrame + """ + global FINAL_NCBI_TAXONOMY + for index, row in df.iterrows(): + try: + current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] + current_node['parentDcid'] = TAX_ID_DCID_MAPPING[ + row["parent_tax_id"]] + rank_case = string.capwords(row["rank"]).replace(" ", "") + current_node['taxonRank'] = "dcs:BiologicalTaxonomicRank" + rank_case + current_node['division'] = DIVISION_DICT[row["division_code"]] + current_node['hasInheritedDivision'] = True if row[ + 'inherited_division'] == 1 else False + except: + logging.error( + f"Unable to get Nodes tax_id - {row['tax_id']} in FINAL_NCBI_TAXONOMY" + ) + + +class CategoriesCls: + """Class to process nodes.dmp file + """ + + def create_dataframe(self) -> pd.DataFrame: + """Creates Categories DataFrame + + Returns: + pd.DataFrame: Categories DataFrame + """ + df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, + CATEGORIES_DMP) + df = DataFrameGenerator().assign_dataframe_header(df, CATEGORIES_COL) + df = df.drop(['speciesTaxID'], axis=1) + df['taxonTopLevelCategory'] = df['taxonTopLevelCategory'].apply( + lambda x: CATEGORIES_DICT[x]) + return df + + def update_categories_enum(self, df: pd.DataFrame) -> None: + """Updated taxonTopLevelCategory in FINAL_NCBI_TAXONOMY + + Args: + df (pd.DataFrame): Categories DataFrame + """ + global FINAL_NCBI_TAXONOMY + for _, row in df.iterrows(): + try: + current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] + current_node['taxonTopLevelCategory'] = row[ + 'taxonTopLevelCategory'] + except: + # do nothing if Categories tax_id not available in FINAL_NCBI_TAXONOMY + pass + + +class FinalDataFrameCls: + """Class to generate final DataFrame and csv file + """ + + def createFinalDF(self) -> pd.DataFrame: + """Creates Final DataFrame from FINAL_NCBI_TAXONOMY dict + + Returns: + pd.DataFrame: Cleaned final DataFrame + """ + global FINAL_NCBI_TAXONOMY + for fnt in FINAL_NCBI_TAXONOMY: + acronym = "" + synonym = "" + if len(FINAL_NCBI_TAXONOMY[fnt]['acronym']) > 0: + acronym = '{}'.format(', '.join( + w for w in FINAL_NCBI_TAXONOMY[fnt]['acronym'])) + + if len(FINAL_NCBI_TAXONOMY[fnt]['synonym']) > 0: + synonym = '{}'.format(', '.join( + w for w in FINAL_NCBI_TAXONOMY[fnt]['synonym'])) + + FINAL_NCBI_TAXONOMY[fnt]['acronym'] = acronym + FINAL_NCBI_TAXONOMY[fnt]['synonym'] = synonym + + ncbi_taxonomy_df = pd.DataFrame.from_dict(FINAL_NCBI_TAXONOMY, + orient='index') + ncbi_taxonomy_df['taxID'] = ncbi_taxonomy_df.index + cols = ncbi_taxonomy_df.columns.tolist() + cols = cols[-1:] + cols[:-1] + ncbi_taxonomy_df = ncbi_taxonomy_df[cols] + + return ncbi_taxonomy_df + + def create_final_csv(self, df: pd.DataFrame, path: str) -> None: + """Creates ncbi_taxonomy.csv + + Args: + df (pd.DataFrame): Cleaned final DataFrame + path (str): ncbi_taxonomy.csv file path + """ + df.to_csv(path, index=False) + + +def char_replace(s: str) -> str: + return s.replace('[', "").replace(']', "").replace('"', "") + + +def set_flages() -> None: + global OUTPUT_FILE_PATH, SOURCE_FILE_PATH + _FLAGS(sys.argv) + OUTPUT_FILE_PATH = path_join(MODULE_DIR, _FLAGS.output_dir) + if not os.path.exists(os.path.join(MODULE_DIR, _FLAGS.output_dir)): + os.mkdir(OUTPUT_FILE_PATH) + SOURCE_FILE_PATH = path_join(MODULE_DIR, _FLAGS.input_dir) + + +def path_join(path: str, filename: str) -> str: + """path join + + Args: + path (str): path + filename (str): filename + + Returns: + str: full filename + """ + return os.path.join(path, filename) + + +def main(_): + """Main method + """ + global OUTPUT_FILE_PATH, SOURCE_FILE_PATH + set_flages() + division_df = DivisionCls().create_dataframe() + DivisionCls().append_mcf_data(division_df, + path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) + names_df = NamesCls().create_dataframe() + NamesCls().clean_names_dataframe(names_df) + NamesCls().create_tax_id_dcid_mapping_file( + path_join(OUTPUT_FILE_PATH, OUTPUT_TAXID_DCID_MAPPING_FILE)) + host_df = HostCls().create_dataframe() + HostCls().append_mcf_data(host_df, + path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) + HostCls().update_host_enum(host_df) + nodes_df = NodesCls().create_dataframe() + NodesCls().append_mcf_data(nodes_df, + path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) + NodesCls().update_nodes_enum(nodes_df) + categories_df = CategoriesCls().create_dataframe() + CategoriesCls().update_categories_enum(categories_df) + final_df = FinalDataFrameCls().createFinalDF() + FinalDataFrameCls().create_final_csv( + final_df, path_join(OUTPUT_FILE_PATH, OUTPUT_NCBI_TAXONOMY_CSV)) + + +if __name__ == "__main__": + app.run(main) + From 044c936ecb0456a2b883f52c114e494586135615 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Wed, 3 Jul 2024 17:12:08 -0700 Subject: [PATCH 06/21] Update tests.sh add json tool test --- scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh b/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh index d80520673c..e1e7bbba39 100755 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh @@ -14,8 +14,17 @@ # Author: Pradeep Kumar Krishnaswamy # Date: 18-Apr-2024 - -#!/bin/bash +# Edited By: Samantha Piekos +# Last Edited: 03-Jul-2024 # Command python3 format_ncbi_taxonomy_test.py + +# download data commons java test tool version 0.1-alpha.1k +mkdir -p tmp; cd tmp +wget https://github.com/datacommonsorg/import/releases/download/0.1-alpha.1k/datacommons-import-tool-0.1-alpha.1-jar-with-dependencies.jar +cd .. + +# run java test tool +java -jar tmp/datacommons-import-tool-0.1-alpha.1-jar-with-dependencies.jar lint tMCFs/ncbi_taxonomy.tmcf output/ncbi_taxonomy.csv output/*.mcf +mv dc_generated ncbi_taxonomy_report From 22df80242afddfa2753567be96553560a9203079 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Wed, 3 Jul 2024 17:21:21 -0700 Subject: [PATCH 07/21] Update README.md Add documentation around new schema added as part of this import --- scripts/biomedical/NCBI_Taxonomy/README.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index 1171545a80..cfd02ee027 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -6,9 +6,10 @@ 1. [Download URL](#download-url) 2. [Database Overview](#database-overview) 3. [Schema Overview](#schema-overview) - 1. [dcid Generation](#dcid-generation) - 2. [enum Generation](#enum-generation) - 3. [Edges](#edges) + 1. [New Schema](#new-schema) + 2. [dcid Generation](#dcid-generation) + 3. [enum Generation](#enum-generation) + 4. [Edges](#edges) 4. [Notes and Caveats](#notes-and-caveats) 5. [License](#license) 6. [Dataset Documentation and Relevant Links](#dataset-documentation-and-relevant-links) @@ -41,7 +42,18 @@ In this import we include information from the following files downloaded from t ### Schema Overview -Need to add notes +#### New Schema + +* Classes + * Taxon (Thing > BioChemEntity > BiomedicalEntity > BiologicalEntity > GenomeAnnotation > Taxon) +* Properties + * BiologicalEntity: ncbiBlastName + * Taxon: biologicalHost, commonName, genBankName, hasInheritedDivsion, ncbiTaxId, taxonDivision, taxonRank, taxonTopLevelCategory +* Enumerations + * TaxonTopLevelCategoryEnum +* Ennummeartions Generated By Script + * BiologicalTaxonomicDivisionEnum + * BiologicalTaxonomicRankEnum #### dcid Generation From 9c4232c50945dcad062346519b8229737ba4f07e Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Wed, 3 Jul 2024 17:22:58 -0700 Subject: [PATCH 08/21] Rename ncbi_taxonomy_schema.mcf to ncbi_taxonomy_schema.mcf Fix typo in subdirectory name --- .../{schema_mfc => schema_mcf}/ncbi_taxonomy_schema.mcf | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename scripts/biomedical/NCBI_Taxonomy/{schema_mfc => schema_mcf}/ncbi_taxonomy_schema.mcf (100%) diff --git a/scripts/biomedical/NCBI_Taxonomy/schema_mfc/ncbi_taxonomy_schema.mcf b/scripts/biomedical/NCBI_Taxonomy/schema_mcf/ncbi_taxonomy_schema.mcf similarity index 100% rename from scripts/biomedical/NCBI_Taxonomy/schema_mfc/ncbi_taxonomy_schema.mcf rename to scripts/biomedical/NCBI_Taxonomy/schema_mcf/ncbi_taxonomy_schema.mcf From 26f8251155f880d85f6ebabf13265ed99b0e44a0 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Wed, 3 Jul 2024 17:27:35 -0700 Subject: [PATCH 09/21] Update README.md add missing enumeration generated by script to the appropriate subsection of the New Schema section --- scripts/biomedical/NCBI_Taxonomy/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index cfd02ee027..7d98926c0f 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -51,9 +51,10 @@ In this import we include information from the following files downloaded from t * Taxon: biologicalHost, commonName, genBankName, hasInheritedDivsion, ncbiTaxId, taxonDivision, taxonRank, taxonTopLevelCategory * Enumerations * TaxonTopLevelCategoryEnum -* Ennummeartions Generated By Script +* Enumeartions Generated By Script * BiologicalTaxonomicDivisionEnum * BiologicalTaxonomicRankEnum + * BiologicalTaxonomicRankBiotype #### dcid Generation From 9a9fb700fd23af483cf38a722c6a901d5aad2075 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Wed, 3 Jul 2024 17:29:07 -0700 Subject: [PATCH 10/21] Update format_ncbi_taxonomy.py add quotes around name for generated enum --- .../scripts/format_ncbi_taxonomy.py | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py index 556371c151..63c2ead1e8 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py @@ -14,6 +14,8 @@ """ Author: Pradeep Kumar Krishnaswamy Date: 18-Apr-2024 +Edited By: Samantha Piekos +Last Edited: 03-Jul-2024 Name: format_ncbi_taxonomy Description: cleaning the NCBI Taxonomy data. @source data: Download Taxdump.tar.z from NCBI Taxonomy FTP Download page @@ -33,13 +35,14 @@ from absl import flags from absl import logging -SOURCE_FILE_PATH = None -OUTPUT_FILE_PATH = None +SOURCE_FILE_PATH = 'input/' +OUTPUT_FILE_PATH = 'output/' OUTPUT_MCF_FILE = 'ncbi_taxonomy_schema_enum.mcf' OUTPUT_TAXID_DCID_MAPPING_FILE = 'tax_id_dcid_mapping.txt' OUTPUT_NCBI_TAXONOMY_CSV = 'ncbi_taxonomy.csv' -FIRST_MCF_ENTRY = """Node:dcid:BiologicalTaxonomicDivisionEnum +FIRST_MCF_ENTRY = """# This schema file is generated by format_ncbi_taxonomy.py +Node:dcid:BiologicalTaxonomicDivisionEnum name: "BiologicalTaxonomicDivisionEnum" typeOf: schema:Class subClassOf: schema:Enumeration @@ -50,7 +53,7 @@ DIVISION_COL = [ 'division_code', 'division_acronym', 'division_name', 'comments' ] -DIVISION_MCF = "Node:dcid:BiologicalTaxonomicDivision{PascalCaseDivisionName}\nname: {division_name}\ntypeOf: dcs:BiologicalTaxonomicDivisionEnum\nacronym: {division_acronym}\ndescription: {comments}\n\n" # pylint: disable=line-too-long +DIVISION_MCF = 'Node:dcid:BiologicalTaxonomicDivision{PascalCaseDivisionName}\nname: "{division_name}"\ntypeOf: dcs:BiologicalTaxonomicDivisionEnum\nabbreviation: "{division_acronym}"\ndescription: "{comments}"\n\n' # pylint: disable=line-too-long DIVISION_DICT = {} NCBI_TAXONOMY_CSV_HEADER = [ @@ -158,7 +161,7 @@ subClassOf: schema:Enumeration description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." \n""" -HOST_MCF = "Node:dcid:BiologicalHost{biological_case_item}\nname: {item}\ntypeOf: dcs:BiologicalHostEnum\n\n" # pylint: disable=line-too-long +HOST_MCF = 'Node:dcid:BiologicalHost{biological_case_item}\nname: "{item}"\ntypeOf: dcs:BiologicalHostEnum\n\n' # pylint: disable=line-too-long HOST_DICT = {} NODES_DMP = 'nodes.dmp' @@ -174,7 +177,7 @@ descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" \n """ -NODES_MCF = "Node:dcid:BiologicalTaxonomicRank{rank_case}\nname: {rank}\ntypeOf: dcs:BiologicalTaxonomicRankEnum\n\n" # pylint: disable=line-too-long +NODES_MCF = 'Node:dcid:BiologicalTaxonomicRank{rank_case}\nname: "{rank}"\ntypeOf: dcs:BiologicalTaxonomicRankEnum\n\n' # pylint: disable=line-too-long NODES_DICT = {} CATEGORIES_DMP = 'categories.dmp' @@ -511,6 +514,8 @@ def update_nodes_enum(self, df: pd.DataFrame) -> None: current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] current_node['parentDcid'] = TAX_ID_DCID_MAPPING[ row["parent_tax_id"]] + rank_case = string.capwords(row["rank"]).replace(" ", "") + current_node['taxonRank'] = "dcs:BiologicalTaxonomicRank" + rank_case current_node['division'] = DIVISION_DICT[row["division_code"]] current_node['hasInheritedDivision'] = True if row[ 'inherited_division'] == 1 else False @@ -654,3 +659,4 @@ def main(_): if __name__ == "__main__": app.run(main) + From a30ff55f8a8c73a787d092302c2f5e96da7e13e2 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Wed, 3 Jul 2024 17:29:53 -0700 Subject: [PATCH 11/21] Update format_ncbi_taxonomy_test.py revert back to original test script --- .../scripts/format_ncbi_taxonomy_test.py | 734 +++--------------- 1 file changed, 96 insertions(+), 638 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py index 2226958811..424064bbcb 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py @@ -14,644 +14,102 @@ """ Author: Pradeep Kumar Krishnaswamy Date: 18-Apr-2024 -Edited By: Samantha Piekos -Last Edited Date: 03-Jul-2024 """ -# import the required packages -import copy -import re -import string -import sys import os -from pathlib import Path -import pandas as pd -from absl import app -from absl import flags -from absl import logging - -SOURCE_FILE_PATH = 'input/' -OUTPUT_FILE_PATH = 'output/' -OUTPUT_MCF_FILE = 'ncbi_taxonomy_schema_enum.mcf' -OUTPUT_TAXID_DCID_MAPPING_FILE = 'tax_id_dcid_mapping.txt' -OUTPUT_NCBI_TAXONOMY_CSV = 'ncbi_taxonomy.csv' - -FIRST_MCF_ENTRY = """# This schema file is generated by format_ncbi_taxonomy.py -Node:dcid:BiologicalTaxonomicDivisionEnum -name: "BiologicalTaxonomicDivisionEnum" -typeOf: schema:Class -subClassOf: schema:Enumeration -description: "These are broad biological divisions that are commonly used to divide living organisms" -\n""" - -DIVISION_DMP = 'division.dmp' -DIVISION_COL = [ - 'division_code', 'division_acronym', 'division_name', 'comments' -] -DIVISION_MCF = 'Node:dcid:BiologicalTaxonomicDivision{PascalCaseDivisionName}\nname: "{division_name}"\ntypeOf: dcs:BiologicalTaxonomicDivisionEnum\nabbreviation: "{division_acronym}"\ndescription: "{comments}"\n\n' # pylint: disable=line-too-long - -DIVISION_DICT = {} -NCBI_TAXONOMY_CSV_HEADER = [ - 'taxID', 'acronym (list)', 'citation', 'ncbiBlastName', 'commonName', - 'synonym (list)', 'genBankName', 'scientificName', 'dcid', 'host', - 'parentDcid', 'taxonRank', 'division', 'hasInheritedDivision', - 'taxonTopLevelCategory' -] -NAMES_DMP = 'names.dmp' -NAMES_COL = ['tax_id', 'name_txt', 'unique_name', 'name_class'] - -NAME_CLASS_MAPPING = { - "acronym": { - "property_value": "name_txt", - "property_type": "acronym", - "replace_text": False, - "is_list": True - }, - "authority": { - "property_value": "name_txt", - "property_type": "citation", - "replace_text": False, - "is_list": False - }, - "blast name": { - "property_value": "name_txt", - "property_type": "ncbiBlastName", - "replace_text": False, - "is_list": False - }, - "common name": { - "property_value": "name_txt", - "property_type": "commonName", - "replace_text": False, - "is_list": False - }, - "equivalent name": { - "property_value": "unique_name", - "property_type": "synonym", - "replace_text": False, - "is_list": True - }, - "genbank acronym": { - "property_value": "name_txt", - "property_type": "acronym", - "replace_text": False, - "is_list": True - }, - "genbank common name": { - "property_value": "unique_name", - "property_type": "genBankName", - "replace_text": False, - "is_list": False - }, - "in-part": { - "property_value": "unique_name", - "property_type": "synonym", - "replace_text": False, - "is_list": True - }, - "includes": { - "property_value": "unique_name", - "property_type": "synonym", - "replace_text": False, - "is_list": True - }, - "scientific name": { - "property_value": "unique_name", - "property_type": "scientificName", - "replace_text": True, - "is_list": False - }, - "synonym": { - "property_value": "unique_name", - "property_type": "synonym", - "replace_text": False, - "is_list": True - } -} -NCBI_TAXONOMY_PROP = { - "acronym": [], - "citation": "", - "ncbiBlastName": "", - "commonName": "", - "synonym": set(), - "genBankName": "", - "scientificName": "", - "dcid": "", - "host": "", - "parentDcid": "", - "taxonRank": "", - "division": "", - "hasInheritedDivision": "", - "taxonTopLevelCategory": "" -} - -FINAL_NCBI_TAXONOMY = {} -TAX_ID_DCID_MAPPING = {} - -HOST_DMP = 'host.dmp' -HOST_COL = ['tax_id', 'host'] -HOST_ENUM_MCF = """Node:dcid:BiologicalHostEnum -name: "BiologicalHostEnum" -typeOf: schema:Class -subClassOf: schema:Enumeration -description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." -\n""" -HOST_MCF = 'Node:dcid:BiologicalHost{biological_case_item}\nname: "{item}"\ntypeOf: dcs:BiologicalHostEnum\n\n' # pylint: disable=line-too-long -HOST_DICT = {} - -NODES_DMP = 'nodes.dmp' -NODES_COL = [ - 'tax_id', 'parent_tax_id', 'rank', 'embl_code', 'division_code', - 'inherited_division' -] -NODES_ENUM_MCF = """Node:dcid:BiologicalTaxonomicRankEnum -name: "BiologicalTaxonomicRankEnum" -typeOf: schema:Class -subClassOf: schema:Enumeration -description: "In biology, taxonomic rank is the relative level of a group of organisms (a taxon) in an ancestral or hereditary hierarchy. A common system of biological classification (taxonomy) consists of species, genus, family, order, class, phylum, kingdom, and domain. However, todays taxonomic rankings have expanded beyond these seven basic classifications." -descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" -\n -""" -NODES_MCF = "Node:dcid:BiologicalTaxonomicRank{rank_case}\nname: {rank}\ntypeOf: dcs:BiologicalTaxonomicRankEnum\n\n" # pylint: disable=line-too-long -NODES_DICT = {} - -CATEGORIES_DMP = 'categories.dmp' -CATEGORIES_COL = ['taxonTopLevelCategory', 'speciesTaxID', 'tax_id'] -CATEGORIES_DICT = { - "A": "dcs:TaxonTopLevelCategoryArchaea", - "B": "dcs:TaxonTopLevelCategoryBacteria", - "E": "dcs:TaxonTopLevelCategoryEukaryota", - "V": "dcs:TaxonTopLevelCategoryVirusesAndViroids", - "O": "dcs:TaxonTopLevelCategoryOther", - "U": "dcs:TaxonTopLevelCategoryUnclassified" -} - -_FLAGS = flags.FLAGS - -flags.DEFINE_string('output_dir', 'output', - 'Output directory for generated files.') - -flags.DEFINE_string('input_dir', 'input', - 'Input directory where .dmp files downloaded.') - -MODULE_DIR = str(Path(os.path.dirname(__file__))) - - -class DataFrameGenerator: - """Common Class for DataFrame operation - """ - - def get_dataframe(self, path: str, filename: str) -> pd.DataFrame: - """Create DataFrame from the file name provided - - Args: - path (str): file path of the file - filename (str): file name - - Returns: - pd.DataFrame: clean DataFrame without "|" - """ - df = pd.DataFrame() - try: - df = pd.read_csv(path_join(path, filename), - sep=r'\t', - header=None, - engine='python') - # identify columns with "|" symbol and remove it - col_names = [] # list to store column names with data - for column in df: - if df[column][0] != "|": - col_names.append(column) - df = df[col_names] - - except Exception as e: - logging.error(f"Error in generating DataFrame - {e}") - return df - - def assign_dataframe_header(self, df: pd.DataFrame, - header: list) -> pd.DataFrame: - """Method to assign DataFrame header as per the supplied header (list) - it assigns colum header from zero index as per the list provided - - Args: - df (pd.DataFrame): To which header need to assign - header (list): list of header string - - Returns: - pd.DataFrame: DataFrame with header - """ - if len(header) > 0: - for index, column_name in enumerate(header): - df.rename(columns={df.columns[index]: column_name}, - inplace=True) - return df - - def make_pascal_case(self, df: pd.DataFrame, - colum_name: str) -> pd.DataFrame: - """Adds new column with PascalCase - - Args: - df (pd.DataFrame): DataFrame to make PascalCase column - colum_name (str): column name - - Returns: - pd.DataFrame: DataFrame with PascalCase column - """ - if colum_name in df.columns: - df[colum_name + 'PascalCase'] = df[colum_name].apply( - lambda x: string.capwords(x).replace(" ", "")) - return df - - -class DivisionCls: - """Class to process division.dmp file - """ - - def create_dataframe(self) -> pd.DataFrame: - """Creates Division DataFrame - - Returns: - pd.DataFrame: Division DataFrame - """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, DIVISION_DMP) - df = DataFrameGenerator().assign_dataframe_header(df, DIVISION_COL) - df = DataFrameGenerator().make_pascal_case(df, 'division_name') - return df - - def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: - """Append BiologicalTaxonomicDivision MCF entries to file - and creates DIVISION dict - - Args: - df (pd.DataFrame): Division DataFrame - mcf_file_path (str): MCF file path - """ - with open(mcf_file_path, 'w') as file: - file.write(FIRST_MCF_ENTRY) - - global DIVISION_DICT - df.sort_values(by=['division_namePascalCase'], inplace=True) - with open(mcf_file_path, 'a') as file: - for _, row in df.iterrows(): - mcf_line = DIVISION_MCF.format( - PascalCaseDivisionName=row['division_namePascalCase'], - division_name=row['division_name'], - division_acronym=row['division_acronym'], - comments=row['comments']) - file.write(mcf_line) - DIVISION_DICT[row[ - 'division_code']] = 'dcs:BiologicalTaxonomicDivision' + row[ - 'division_namePascalCase'] - - -class NamesCls: - """Class to process names.dmp file - """ - - def create_dataframe(self) -> pd.DataFrame: - """Creates Names DataFrame - - Returns: - pd.DataFrame: Names DataFrame - """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NAMES_DMP) - df = DataFrameGenerator().assign_dataframe_header(df, NAMES_COL) - return df - - def clean_names_dataframe(self, df: pd.DataFrame) -> None: - """Clean-up Names DataFrame and generates FINAL_NCBI_TAXONOMY, TAX_ID_DCID_MAPPING - - Args: - df (pd.DataFrame): Names DataFrame - """ - global FINAL_NCBI_TAXONOMY, TAX_ID_DCID_MAPPING - for _, row in df.iterrows(): - current_node = None - tax_id = row['tax_id'] - if tax_id in FINAL_NCBI_TAXONOMY: - current_node = FINAL_NCBI_TAXONOMY[tax_id] - else: - FINAL_NCBI_TAXONOMY[tax_id] = copy.deepcopy(NCBI_TAXONOMY_PROP) - current_node = FINAL_NCBI_TAXONOMY[tax_id] - - # get the mapping record to update details - try: - mapping_ncbi = NAME_CLASS_MAPPING[row['name_class']] - property_value = None - property_list = [] - scientific_name = None - if mapping_ncbi[ - "property_value"] == "unique_name" and not pd.isnull( - row[mapping_ncbi["property_value"]]): - property_value = char_replace(row["unique_name"]) - scientific_name = char_replace(row["unique_name"]) - property_list.append(char_replace(row['name_txt'])) - try: - property_list.append( - char_replace( - row['unique_name'].split('<')[1].split('>')[0])) - except: - logging.error(f"Error in split {property_value}") - else: - property_list.append(char_replace(row['name_txt'])) - property_value = char_replace(row['name_txt']) - scientific_name = char_replace(row["name_txt"]) - if mapping_ncbi['replace_text']: - dcid = property_value.replace('<', - "_ ").replace("(in:", "_ ") - dcid = re.sub('[^A-Za-z0-9_ ]+', '', dcid) - dcid = string.capwords(dcid) - dcid = dcid.replace(" ", "") - current_node['scientificName'] = scientific_name - dcid = 'bio/' + dcid - current_node['dcid'] = dcid - TAX_ID_DCID_MAPPING[tax_id] = 'dcid:' + dcid - else: - if mapping_ncbi['is_list']: - if mapping_ncbi['property_type'] == "acronym": - current_node[mapping_ncbi['property_type']].extend( - property_list) - else: - current_node[mapping_ncbi['property_type']].update( - property_list) - else: - current_node[mapping_ncbi[ - 'property_type']] = char_replace(property_value) - - except Exception as e: - logging.error( - f"Error resolving name_class - {row['name_class']}") - - def create_tax_id_dcid_mapping_file(self, path: str) -> None: - """Writes to tax_id_dcid_mapping file - - Args: - path (str): tax_id_dcid_mapping file path - """ - with open(path, 'w') as file: - file.write("tax_id,dcid\n") - for td_mapping in TAX_ID_DCID_MAPPING: - file.write("{},{}\n".format(td_mapping, - TAX_ID_DCID_MAPPING[td_mapping])) - - -class HostCls: - """Class to process host.dmp file - """ - - def create_dataframe(self) -> pd.DataFrame: - """Creates Host DataFrame - - Returns: - pd.DataFrame: Host DataFrame - """ - global HOST_DICT - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, HOST_DMP) - df = DataFrameGenerator().assign_dataframe_header(df, HOST_COL) - df['DC_host_enum'] = df['host'].apply(lambda x: self.__hostdcsformat(x)) - return df - - def __hostdcsformat(self, host: str) -> str: - """Format BiologicalHost string - - Args: - host (str): host string from DataFrame - - Returns: - str: formatted BiologicalHost string - """ - host_lst = host.replace(',', ', ') - host_lst = string.capwords(host_lst) - host_lst = host_lst.replace(' ', '').split(',') - return ','.join(map('dcs:BiologicalHost{0}'.format, host_lst)) - - def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: - """Append BiologicalHost MCF entries to file - - Args: - df (pd.DataFrame): Host DataFrame - mcf_file_path (str): Enum MCF file path - """ - unique_host_lst = df.host.unique() - set_unique_host = set() - for uh in unique_host_lst: - unique_host = uh.split(',') - for u in unique_host: - set_unique_host.add(u) - - sorted_lst = sorted(set_unique_host) - with open(mcf_file_path, 'a') as file: - file.write(HOST_ENUM_MCF) - for uh in sorted_lst: - biological_case_item = string.capwords(uh).replace(" ", "") - mcf_line = HOST_MCF.format( - biological_case_item=biological_case_item, item=uh) - file.write(mcf_line) - - def update_host_enum(self, df: pd.DataFrame) -> None: - """Update Host Enum in FINAL_NCBI_TAXONOMY based on tax_id - - Args: - df (pd.DataFrame): Host DataFrame - """ - global FINAL_NCBI_TAXONOMY - for _, row in df.iterrows(): - try: - current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] - current_node['host'] = row['DC_host_enum'] - except: - logging.error( - f"Host tax_id - {row['tax_id']} is missing in FINAL_NCBI_TAXONOMY" - ) - - -class NodesCls: - """Class to process nodes.dmp file - """ - - def create_dataframe(self) -> pd.DataFrame: - """Creates Nodes DataFrame - - Returns: - pd.DataFrame: Nodes DataFrame - """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NODES_DMP) - df = DataFrameGenerator().assign_dataframe_header(df, NODES_COL) - df = df.drop(['embl_code'], axis=1) - df = df.drop(df.columns[5:], axis=1) - return df - - def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: - """Append BiologicalTaxonomicRank MCF entries to file - - Args: - df (pd.DataFrame): Nodes DataFrame - mcf_file_path (str): Enum MCF file path - """ - unique_rank = sorted(df['rank'].unique()) - - with open(mcf_file_path, 'a') as file: - file.write(NODES_ENUM_MCF) - for ur in unique_rank: - rank_case = string.capwords(ur).replace(" ", "") - mcf_line = NODES_MCF.format(rank_case=rank_case, rank=ur) - file.write(mcf_line) - - def update_nodes_enum(self, df: pd.DataFrame) -> None: - """Update parentDcid, division & hasInheritedDivision in FINAL_NCBI_TAXONOMY - - Args: - df (pd.DataFrame): Nodes DataFrame - """ - global FINAL_NCBI_TAXONOMY - for index, row in df.iterrows(): - try: - current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] - current_node['parentDcid'] = TAX_ID_DCID_MAPPING[ - row["parent_tax_id"]] - rank_case = string.capwords(row["rank"]).replace(" ", "") - current_node['taxonRank'] = "dcs:BiologicalTaxonomicRank" + rank_case - current_node['division'] = DIVISION_DICT[row["division_code"]] - current_node['hasInheritedDivision'] = True if row[ - 'inherited_division'] == 1 else False - except: - logging.error( - f"Unable to get Nodes tax_id - {row['tax_id']} in FINAL_NCBI_TAXONOMY" - ) - - -class CategoriesCls: - """Class to process nodes.dmp file - """ - - def create_dataframe(self) -> pd.DataFrame: - """Creates Categories DataFrame - - Returns: - pd.DataFrame: Categories DataFrame - """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, - CATEGORIES_DMP) - df = DataFrameGenerator().assign_dataframe_header(df, CATEGORIES_COL) - df = df.drop(['speciesTaxID'], axis=1) - df['taxonTopLevelCategory'] = df['taxonTopLevelCategory'].apply( - lambda x: CATEGORIES_DICT[x]) - return df - - def update_categories_enum(self, df: pd.DataFrame) -> None: - """Updated taxonTopLevelCategory in FINAL_NCBI_TAXONOMY - - Args: - df (pd.DataFrame): Categories DataFrame - """ - global FINAL_NCBI_TAXONOMY - for _, row in df.iterrows(): - try: - current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] - current_node['taxonTopLevelCategory'] = row[ - 'taxonTopLevelCategory'] - except: - # do nothing if Categories tax_id not available in FINAL_NCBI_TAXONOMY - pass - - -class FinalDataFrameCls: - """Class to generate final DataFrame and csv file - """ - - def createFinalDF(self) -> pd.DataFrame: - """Creates Final DataFrame from FINAL_NCBI_TAXONOMY dict - - Returns: - pd.DataFrame: Cleaned final DataFrame - """ - global FINAL_NCBI_TAXONOMY - for fnt in FINAL_NCBI_TAXONOMY: - acronym = "" - synonym = "" - if len(FINAL_NCBI_TAXONOMY[fnt]['acronym']) > 0: - acronym = '{}'.format(', '.join( - w for w in FINAL_NCBI_TAXONOMY[fnt]['acronym'])) - - if len(FINAL_NCBI_TAXONOMY[fnt]['synonym']) > 0: - synonym = '{}'.format(', '.join( - w for w in FINAL_NCBI_TAXONOMY[fnt]['synonym'])) - - FINAL_NCBI_TAXONOMY[fnt]['acronym'] = acronym - FINAL_NCBI_TAXONOMY[fnt]['synonym'] = synonym - - ncbi_taxonomy_df = pd.DataFrame.from_dict(FINAL_NCBI_TAXONOMY, - orient='index') - ncbi_taxonomy_df['taxID'] = ncbi_taxonomy_df.index - cols = ncbi_taxonomy_df.columns.tolist() - cols = cols[-1:] + cols[:-1] - ncbi_taxonomy_df = ncbi_taxonomy_df[cols] - - return ncbi_taxonomy_df - - def create_final_csv(self, df: pd.DataFrame, path: str) -> None: - """Creates ncbi_taxonomy.csv - - Args: - df (pd.DataFrame): Cleaned final DataFrame - path (str): ncbi_taxonomy.csv file path - """ - df.to_csv(path, index=False) - - -def char_replace(s: str) -> str: - return s.replace('[', "").replace(']', "").replace('"', "") - - -def set_flages() -> None: - global OUTPUT_FILE_PATH, SOURCE_FILE_PATH - _FLAGS(sys.argv) - OUTPUT_FILE_PATH = path_join(MODULE_DIR, _FLAGS.output_dir) - if not os.path.exists(os.path.join(MODULE_DIR, _FLAGS.output_dir)): - os.mkdir(OUTPUT_FILE_PATH) - SOURCE_FILE_PATH = path_join(MODULE_DIR, _FLAGS.input_dir) - - -def path_join(path: str, filename: str) -> str: - """path join - - Args: - path (str): path - filename (str): filename - - Returns: - str: full filename - """ - return os.path.join(path, filename) - - -def main(_): - """Main method - """ - global OUTPUT_FILE_PATH, SOURCE_FILE_PATH - set_flages() - division_df = DivisionCls().create_dataframe() - DivisionCls().append_mcf_data(division_df, - path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) - names_df = NamesCls().create_dataframe() - NamesCls().clean_names_dataframe(names_df) - NamesCls().create_tax_id_dcid_mapping_file( - path_join(OUTPUT_FILE_PATH, OUTPUT_TAXID_DCID_MAPPING_FILE)) - host_df = HostCls().create_dataframe() - HostCls().append_mcf_data(host_df, - path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) - HostCls().update_host_enum(host_df) - nodes_df = NodesCls().create_dataframe() - NodesCls().append_mcf_data(nodes_df, - path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) - NodesCls().update_nodes_enum(nodes_df) - categories_df = CategoriesCls().create_dataframe() - CategoriesCls().update_categories_enum(categories_df) - final_df = FinalDataFrameCls().createFinalDF() - FinalDataFrameCls().create_final_csv( - final_df, path_join(OUTPUT_FILE_PATH, OUTPUT_NCBI_TAXONOMY_CSV)) - - -if __name__ == "__main__": - app.run(main) - +import copy +import tempfile +import unittest +from format_ncbi_taxonomy import * + +MODULE_DIR_PATH = str(Path(os.path.dirname(__file__)).parents[0]) + + +class TestNCBITaxonomy(unittest.TestCase): + + @classmethod + def setUpClass(self): + set_flages() + + def test_check_division_df_columns(self): + division_df = DivisionCls().create_dataframe() + division_col_lst = copy.deepcopy(DIVISION_COL) + division_col_lst.append('division_namePascalCase') + self.assertListEqual(division_col_lst, division_df.columns.to_list()) + + def test_check_names_df_columns(self): + names_df = NamesCls().create_dataframe() + self.assertListEqual(NAMES_COL, names_df.columns.to_list()) + + def test_check_host_df_columns(self): + host_df = HostCls().create_dataframe() + host_col_lst = copy.deepcopy(HOST_COL) + host_col_lst.append('DC_host_enum') + self.assertListEqual(host_col_lst, host_df.columns.to_list()) + + def test_check_nodes_df_columns(self): + nodes_df = NodesCls().create_dataframe() + nodes_col_lst = NODES_COL + nodes_col_lst.remove('embl_code') + self.assertListEqual(nodes_col_lst, nodes_df.columns.to_list()) + + def test_check_categories_df_columns(self): + categories_df = CategoriesCls().create_dataframe() + categories_col_lst = CATEGORIES_COL + categories_col_lst.remove('speciesTaxID') + self.assertListEqual(CATEGORIES_COL, categories_df.columns.to_list()) + + def test_check_mcf_entries_division(self): + expected_mcf_list = [] + current_mcf_list = [] + division_df = DivisionCls().create_dataframe() + with tempfile.TemporaryDirectory() as tmp_dir: + result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') + DivisionCls().append_mcf_data(division_df, result_mcf_file) + with open( + os.path.join(MODULE_DIR_PATH, + 'ncbi_taxonomy/test_data/division_enum_expected.mcf'), + 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) + with open(result_mcf_file, 'r') as mcf: + current_mcf_list.extend(mcf.read().split('\n\n')) + + self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + + def test_check_mcf_entries_hosts(self): + expected_mcf_list = [] + current_mcf_list = [] + host_df = HostCls().create_dataframe() + with tempfile.TemporaryDirectory() as tmp_dir: + result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') + HostCls().append_mcf_data(host_df, result_mcf_file) + with open( + os.path.join(MODULE_DIR_PATH, + 'ncbi_taxonomy/test_data/host_enum_expected.mcf'), + 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) + with open(result_mcf_file, 'r') as mcf: + current_mcf_list.extend(mcf.read().split('\n\n')) + + self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + + def test_check_mcf_entries_nodes(self): + expected_mcf_list = [] + current_mcf_list = [] + nodes_df = NodesCls().create_dataframe() + with tempfile.TemporaryDirectory() as tmp_dir: + result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') + NodesCls().append_mcf_data(nodes_df, result_mcf_file) + with open( + os.path.join(MODULE_DIR_PATH, + 'ncbi_taxonomy/test_data/nodes_enum_expected.mcf'), + 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) + with open(result_mcf_file, 'r') as mcf: + current_mcf_list.extend(mcf.read().split('\n\n')) + + self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + + +if __name__ == '__main__': + unittest.main() From bf94a3c8e07ff3678f1255940e3c79f4c43b6ff4 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Fri, 5 Jul 2024 18:55:19 -0700 Subject: [PATCH 12/21] Update ncbi_taxonomy.tmcf --- scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf b/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf index 3677d02ff9..9bdc603825 100644 --- a/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf +++ b/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf @@ -2,7 +2,7 @@ Node: E:ncbi_taxonomy->E1 typeOf: dcs:Taxon dcid: C:ncbi_taxonomy->dcid name: C:ncbi_taxonomy->scientificName -abbreviaion: C:ncbi_taxonomy->acronym +abbreviation: C:ncbi_taxonomy->acronym biologicalHost: C:ncbi_taxonomy->host citation: C:ncbi_taxonomy->citation commonName: C:ncbi_taxonomy->commonName @@ -10,8 +10,8 @@ genBankName: C:ncbi_taxonomy->genBankName hasInheritedDivsion: C:ncbi_taxonomy->hasInheritedDivision ncbiBlastName: C:ncbi_taxonomy->ncbiBlastName ncbiTaxId: C:ncbi_taxonomy->taxID -parentTaxon: C:ncbi_taxonomy->parentDcid scientificName: C:ncbi_taxonomy->scientificName +specializationOf: C:ncbi_taxonomy->parentDcid synonym: C:ncbi_taxonomy->synonym taxonDivision: C:ncbi_taxonomy->division taxonRank: C:ncbi_taxonomy->taxonRank From 42823254be1c412590a7d6aa469b47799c7f7df4 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Mon, 22 Jul 2024 13:12:10 -0700 Subject: [PATCH 13/21] Update format_ncbi_taxonomy.py --- .../scripts/format_ncbi_taxonomy.py | 48 +++++++++++-------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py index 63c2ead1e8..4e2b22be14 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py @@ -15,7 +15,7 @@ Author: Pradeep Kumar Krishnaswamy Date: 18-Apr-2024 Edited By: Samantha Piekos -Last Edited: 03-Jul-2024 +Last Edited: 17-Jul-2024 Name: format_ncbi_taxonomy Description: cleaning the NCBI Taxonomy data. @source data: Download Taxdump.tar.z from NCBI Taxonomy FTP Download page @@ -42,18 +42,18 @@ OUTPUT_NCBI_TAXONOMY_CSV = 'ncbi_taxonomy.csv' FIRST_MCF_ENTRY = """# This schema file is generated by format_ncbi_taxonomy.py -Node:dcid:BiologicalTaxonomicDivisionEnum +Node: dcid:BiologicalTaxonomicDivisionEnum name: "BiologicalTaxonomicDivisionEnum" typeOf: schema:Class subClassOf: schema:Enumeration -description: "These are broad biological divisions that are commonly used to divide living organisms" +description: "These are broad biological divisions that are commonly used to divide living organisms." \n""" DIVISION_DMP = 'division.dmp' DIVISION_COL = [ 'division_code', 'division_acronym', 'division_name', 'comments' ] -DIVISION_MCF = 'Node:dcid:BiologicalTaxonomicDivision{PascalCaseDivisionName}\nname: "{division_name}"\ntypeOf: dcs:BiologicalTaxonomicDivisionEnum\nabbreviation: "{division_acronym}"\ndescription: "{comments}"\n\n' # pylint: disable=line-too-long +DIVISION_MCF = 'Node: dcid:BiologicalTaxonomicDivision{PascalCaseDivisionName}\nname: "{division_name}"\ntypeOf: dcs:BiologicalTaxonomicDivisionEnum\nabbreviation: "{division_acronym}"\n' # pylint: disable=line-too-long DIVISION_DICT = {} NCBI_TAXONOMY_CSV_HEADER = [ @@ -155,13 +155,13 @@ HOST_DMP = 'host.dmp' HOST_COL = ['tax_id', 'host'] -HOST_ENUM_MCF = """Node:dcid:BiologicalHostEnum +HOST_ENUM_MCF = """Node: dcid:BiologicalHostEnum name: "BiologicalHostEnum" typeOf: schema:Class subClassOf: schema:Enumeration description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." \n""" -HOST_MCF = 'Node:dcid:BiologicalHost{biological_case_item}\nname: "{item}"\ntypeOf: dcs:BiologicalHostEnum\n\n' # pylint: disable=line-too-long +HOST_MCF = 'Node: dcid:BiologicalHost{biological_case_item}\nname: "{item}"\ntypeOf: dcs:BiologicalHostEnum\n\n' # pylint: disable=line-too-long HOST_DICT = {} NODES_DMP = 'nodes.dmp' @@ -169,7 +169,7 @@ 'tax_id', 'parent_tax_id', 'rank', 'embl_code', 'division_code', 'inherited_division' ] -NODES_ENUM_MCF = """Node:dcid:BiologicalTaxonomicRankEnum +NODES_ENUM_MCF = """Node: dcid:BiologicalTaxonomicRankEnum name: "BiologicalTaxonomicRankEnum" typeOf: schema:Class subClassOf: schema:Enumeration @@ -177,7 +177,7 @@ descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" \n """ -NODES_MCF = 'Node:dcid:BiologicalTaxonomicRank{rank_case}\nname: "{rank}"\ntypeOf: dcs:BiologicalTaxonomicRankEnum\n\n' # pylint: disable=line-too-long +NODES_MCF = 'Node: dcid:BiologicalTaxonomicRank{rank_case}\nname: "{rank}"\ntypeOf: dcs:BiologicalTaxonomicRankEnum\n\n' # pylint: disable=line-too-long NODES_DICT = {} CATEGORIES_DMP = 'categories.dmp' @@ -268,6 +268,7 @@ def make_pascal_case(self, df: pd.DataFrame, return df + class DivisionCls: """Class to process division.dmp file """ @@ -283,16 +284,23 @@ def create_dataframe(self) -> pd.DataFrame: df = DataFrameGenerator().make_pascal_case(df, 'division_name') return df + def add_description_mcf_line(self, mcf_line, row): + # if there is a comment add it to the mcf_line as a description + if len(row['comments']) > 1: + mcf_line = mcf_line + 'description: "' + row['comments'] + '."\n\n' + else: + mcf_line = mcf_line + '\n' + return mcf_line + def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: - """Append BiologicalTaxonomicDivision MCF entries to file - and creates DIVISION dict + """Append BiologicalTaxonomicDivision MCF entries to file and creates DIVISION dict Args: df (pd.DataFrame): Division DataFrame - mcf_file_path (str): MCF file path + mcf_file_path (str): MCF file path """ with open(mcf_file_path, 'w') as file: - file.write(FIRST_MCF_ENTRY) + file.write(FIRST_MCF_ENTRY) # Assuming FIRST_MCF_ENTRY is defined elsewhere global DIVISION_DICT df.sort_values(by=['division_namePascalCase'], inplace=True) @@ -300,13 +308,12 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: for _, row in df.iterrows(): mcf_line = DIVISION_MCF.format( PascalCaseDivisionName=row['division_namePascalCase'], - division_name=row['division_name'], + division_name=row['division_name'].title(), division_acronym=row['division_acronym'], - comments=row['comments']) + ) + mcf_line = DivisionCls().add_description_mcf_line(mcf_line, row) file.write(mcf_line) - DIVISION_DICT[row[ - 'division_code']] = 'dcs:BiologicalTaxonomicDivision' + row[ - 'division_namePascalCase'] + DIVISION_DICT[row['division_code']] = 'dcs:BiologicalTaxonomicDivision' + row['division_namePascalCase'] class NamesCls: @@ -370,7 +377,7 @@ def clean_names_dataframe(self, df: pd.DataFrame) -> None: current_node['scientificName'] = scientific_name dcid = 'bio/' + dcid current_node['dcid'] = dcid - TAX_ID_DCID_MAPPING[tax_id] = 'dcid:' + dcid + TAX_ID_DCID_MAPPING[tax_id] = dcid else: if mapping_ncbi['is_list']: if mapping_ncbi['property_type'] == "acronym": @@ -450,7 +457,7 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: for uh in sorted_lst: biological_case_item = string.capwords(uh).replace(" ", "") mcf_line = HOST_MCF.format( - biological_case_item=biological_case_item, item=uh) + biological_case_item=biological_case_item, item=uh.title()) file.write(mcf_line) def update_host_enum(self, df: pd.DataFrame) -> None: @@ -499,7 +506,7 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: file.write(NODES_ENUM_MCF) for ur in unique_rank: rank_case = string.capwords(ur).replace(" ", "") - mcf_line = NODES_MCF.format(rank_case=rank_case, rank=ur) + mcf_line = NODES_MCF.format(rank_case=rank_case, rank=ur.title()) file.write(mcf_line) def update_nodes_enum(self, df: pd.DataFrame) -> None: @@ -659,4 +666,3 @@ def main(_): if __name__ == "__main__": app.run(main) - From b7aacf27019a5cc9109a24357266ffd72f44f60b Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Mon, 22 Jul 2024 13:13:01 -0700 Subject: [PATCH 14/21] Update ncbi_taxonomy.tmcf --- scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf b/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf index 9bdc603825..453072f9b9 100644 --- a/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf +++ b/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf @@ -1,5 +1,9 @@ Node: E:ncbi_taxonomy->E1 typeOf: dcs:Taxon +dcid: C:ncbi_taxonomy->parentDcid + +Node: E:ncbi_taxonomy->E2 +typeOf: dcs:Taxon dcid: C:ncbi_taxonomy->dcid name: C:ncbi_taxonomy->scientificName abbreviation: C:ncbi_taxonomy->acronym @@ -11,7 +15,7 @@ hasInheritedDivsion: C:ncbi_taxonomy->hasInheritedDivision ncbiBlastName: C:ncbi_taxonomy->ncbiBlastName ncbiTaxId: C:ncbi_taxonomy->taxID scientificName: C:ncbi_taxonomy->scientificName -specializationOf: C:ncbi_taxonomy->parentDcid +specializationOf: E:ncbi_taxonomy->E1 synonym: C:ncbi_taxonomy->synonym taxonDivision: C:ncbi_taxonomy->division taxonRank: C:ncbi_taxonomy->taxonRank From cf54a876177094f19de4e26b44eb8fafb1a03bf4 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Mon, 22 Jul 2024 13:17:26 -0700 Subject: [PATCH 15/21] Update README.md --- scripts/biomedical/NCBI_Taxonomy/README.md | 44 ++++++++++++++-------- 1 file changed, 28 insertions(+), 16 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index 7d98926c0f..edd795f182 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -44,17 +44,34 @@ In this import we include information from the following files downloaded from t #### New Schema -* Classes - * Taxon (Thing > BioChemEntity > BiomedicalEntity > BiologicalEntity > GenomeAnnotation > Taxon) -* Properties - * BiologicalEntity: ncbiBlastName - * Taxon: biologicalHost, commonName, genBankName, hasInheritedDivsion, ncbiTaxId, taxonDivision, taxonRank, taxonTopLevelCategory -* Enumerations - * TaxonTopLevelCategoryEnum -* Enumeartions Generated By Script - * BiologicalTaxonomicDivisionEnum - * BiologicalTaxonomicRankEnum - * BiologicalTaxonomicRankBiotype +##### Classes + +* Taxon + * Thing -> BioChemEntity -> BiomedicalEntity -> BiologicalEntity -> GenomeAnnotation -> Taxon + +##### Properties + +* BiologicalEntity + * ncbiBlastName +* Taxon + * biologicalHost + * commonName + * genBankName + * hasInheritedDivsion + * ncbiTaxId + * taxonDivision + * taxonRank + * taxonTopLevelCategory + +##### Enumerations + + * TaxonTopLevelCategoryEnum + * +##### Enumeartions Generated By Script + +* BiologicalTaxonomicDivisionEnum +* BiologicalTaxonomicRankEnum +* BiologicalTaxonomicRankBiotype #### dcid Generation @@ -101,11 +118,6 @@ More information about the NCBI Taxonomy database can be found [here](https://ww - [ncbi_taxonomy_schema.mcf](tMCFs/ncbi_taxonomy.tmcf) contains the tmcf mapping to the csv of taxonomy. -#### Schema MCF - -- [ncbi_taxonomy_schema.mcf](schema_mcf/ncbi_taxonomy_schema.mcf) contains the schema mcf. - - ### Import Procedure Download the most recent versions of NCBI Taxonomy data: From ea8fadbc61ce3fd9e921d9b4f7b8e17e56cff346 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Mon, 22 Jul 2024 13:17:45 -0700 Subject: [PATCH 16/21] Update README.md --- scripts/biomedical/NCBI_Taxonomy/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index edd795f182..77e4cfa5b2 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -66,7 +66,7 @@ In this import we include information from the following files downloaded from t ##### Enumerations * TaxonTopLevelCategoryEnum - * + ##### Enumeartions Generated By Script * BiologicalTaxonomicDivisionEnum From 888c11521c789b4063e927035fecc60ff9132b8a Mon Sep 17 00:00:00 2001 From: Pradeep Krishnaswamy Date: Tue, 3 Sep 2024 04:47:36 +0000 Subject: [PATCH 17/21] NCBI Taxonomy git comments fix --- scripts/biomedical/NCBI_Taxonomy/README.md | 30 +- scripts/biomedical/NCBI_Taxonomy/download.sh | 31 + .../NCBI_Taxonomy/{scripts => }/run.sh | 2 +- .../schema_mcf/ncbi_taxonomy_schema.mcf | 81 - .../NCBI_Taxonomy/scripts/download.sh | 14 - .../scripts/format_ncbi_taxonomy.py | 77 +- .../scripts/format_ncbi_taxonomy_test.py | 84 +- .../{tMCF => tMCFs}/ncbi_taxonomy.tmcf | 0 .../test_data/division_enum_expected.mcf | 78 - .../division_enum_expected.mcf | 69 + .../expected_mcf_files/host_enum_expected.mcf | 22 + .../nodes_enum_expected.mcf | 40 + .../expected_output/ncbi_taxonomy.csv | 4182 ++++ .../ncbi_taxonomy_schema_enum.mcf | 131 + .../expected_output/tax_id_dcid_mapping.txt | 4182 ++++ .../test_data/host_enum_expected.mcf | 58 - .../test_data/input/categories.dmp | 7636 ++++++ .../test_data/input/division.dmp | 12 + .../NCBI_Taxonomy/test_data/input/host.dmp | 24 + .../NCBI_Taxonomy/test_data/input/names.dmp | 20733 ++++++++++++++++ .../NCBI_Taxonomy/test_data/input/nodes.dmp | 2500 ++ .../test_data/nodes_enum_expected.mcf | 184 - .../NCBI_Taxonomy/{scripts => }/tests.sh | 9 +- 23 files changed, 39691 insertions(+), 488 deletions(-) create mode 100755 scripts/biomedical/NCBI_Taxonomy/download.sh rename scripts/biomedical/NCBI_Taxonomy/{scripts => }/run.sh (94%) delete mode 100644 scripts/biomedical/NCBI_Taxonomy/schema_mcf/ncbi_taxonomy_schema.mcf delete mode 100755 scripts/biomedical/NCBI_Taxonomy/scripts/download.sh rename scripts/biomedical/NCBI_Taxonomy/{tMCF => tMCFs}/ncbi_taxonomy.tmcf (100%) delete mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/division_enum_expected.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/host_enum_expected.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/nodes_enum_expected.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy.csv create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy_schema_enum.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/tax_id_dcid_mapping.txt delete mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/input/categories.dmp create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/input/division.dmp create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/input/host.dmp create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/input/names.dmp create mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/input/nodes.dmp delete mode 100644 scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf rename scripts/biomedical/NCBI_Taxonomy/{scripts => }/tests.sh (93%) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index 77e4cfa5b2..ca9e2efbb7 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -42,8 +42,6 @@ In this import we include information from the following files downloaded from t ### Schema Overview -#### New Schema - ##### Classes * Taxon @@ -81,13 +79,19 @@ The data for each entry in NCBI Taxonomy was stored as a Taxon entity. The dcid The schema for the BiologicalTaxonomicDivisionEnum, and BiologicalHostEnum, and BiologicalTaxonomicRankEnum are autogenerated by `format_ncbi_taxonomy.py`. +A sample auto generated schema file saves at [ncbi_taxonomy_schema_enum.mcf](/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy_schema_enum.mcf) for reference + #### Edges The edges, or links, in this import are between Taxon nodes that are related in parent-child relationships within the taxonomic heirachry. The dcid of a parent Taxon node is stored in the property "parentTaxon". For example, a node of taxon rank of Species will be linked to the relevant Taxon node of rank Genus. ### Notes and Caveats -Need to add notes +* Data Consistency and Quality: + + Rank Changes: Taxonomic classifications are subject to change, necessitating regular data refreshes. + + Parent-Child Relationships: Verify the accuracy of parent-child relationships between Taxon. ### License @@ -105,9 +109,9 @@ More information about the NCBI Taxonomy database can be found [here](https://ww ##### Bash Scripts -- [download.sh](scripts/download.sh) downloads the most recent release of the NCBI Taxonomy data. -- [run.sh](scripts/run.sh) creates new taxonomy enum mfc and converts data into formatted CSV for import of data using categories.dmp, division.dmp, host.dmp, names.dmp & nodes.dmp files from download location -- [tests.sh](scripts/tests.sh) runs standard tests to check for proper formatting of taxonomy enum mfc file. +- [download.sh](download.sh) downloads the most recent release of the NCBI Taxonomy data. +- [run.sh](run.sh) creates new taxonomy enum mfc and converts data into formatted CSV for import of data using categories.dmp, division.dmp, host.dmp, names.dmp & nodes.dmp files from download location +- [tests.sh](tests.sh) runs standard tests on CSV + tMCF pairs to check for proper formatting. ##### Python Scripts @@ -132,11 +136,23 @@ Generate the enum schema MCF & formatted CSV: sh run.sh ``` +### Tests -### Test +The first step of `tests.sh` is to downloads Data Commons's java -jar import tool, storing it in a `tmp` directory. This assumes that the user has Java Runtime Environment (JRE) installed. This tool is described in Data Commons documentation of the [import pipeline](https://github.com/datacommonsorg/import/). The relases of the tool can be viewed [here](https://github.com/datacommonsorg/import/releases/). Here we download version `0.1-alpha.1k` and apply it to check our csv + tmcf import. It evaluates if all schema used in the import is present in the graph, all referenced nodes are present in the graph, along with other checks that issue fatal errors, errors, or warnings upon failing checks. Please note that empty tokens for some columns are expected as this reflects the original data. The imports create the Virus nodes that are then refrenced within this import. This resolves any concern about missing reference warnings concerning these node types by the test. To run tests: ```bash sh tests.sh ``` + +This will generate an output file for the results of the tests on each csv + tmcf pair + +### Sample Data + +This sample [dataset](/scripts/biomedical/NCBI_Taxonomy/test_data) is a representative subset of the larger dataset. It was selected using stratified sampling to ensure that it covers most of the of scenarios in the data cleaning functionality This can be used for testing purpose. + +The sample input and output data are located at the following links: + +Input data: [input_link](test_data/input) +Output data: [output_link](test_data/expected_output) \ No newline at end of file diff --git a/scripts/biomedical/NCBI_Taxonomy/download.sh b/scripts/biomedical/NCBI_Taxonomy/download.sh new file mode 100755 index 0000000000..22fee8489d --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/download.sh @@ -0,0 +1,31 @@ +# Copyright 2024 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Author: Pradeep Kumar Krishnaswamy +# Date: 18-Apr-2024 + +#!/bin/bash + +mkdir -p input; cd input + +# download the newest ncbi taxdump file and uncompress it +curl -o ncbi_taxdump.tar.Z https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/new_taxdump/new_taxdump.tar.Z +uncompress ncbi_taxdump.tar.Z +tar -xvf ncbi_taxdump.tar +rm ncbi_taxdump.tar + +# download the newest ncbi taxcat file and uncompress it +curl -o ncbi_taxcat.tar.gz https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/taxcat.tar.gz +tar -xvzf ncbi_taxcat.tar.gz +rm ncbi_taxcat.tar.gz diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/run.sh b/scripts/biomedical/NCBI_Taxonomy/run.sh similarity index 94% rename from scripts/biomedical/NCBI_Taxonomy/scripts/run.sh rename to scripts/biomedical/NCBI_Taxonomy/run.sh index 9f23b2f3a1..b36a989399 100755 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/run.sh +++ b/scripts/biomedical/NCBI_Taxonomy/run.sh @@ -22,4 +22,4 @@ mkdir -p output # Command -python3 format_ncbi_taxonomy.py +python3 scripts/format_ncbi_taxonomy.py diff --git a/scripts/biomedical/NCBI_Taxonomy/schema_mcf/ncbi_taxonomy_schema.mcf b/scripts/biomedical/NCBI_Taxonomy/schema_mcf/ncbi_taxonomy_schema.mcf deleted file mode 100644 index 65ffd7dd97..0000000000 --- a/scripts/biomedical/NCBI_Taxonomy/schema_mcf/ncbi_taxonomy_schema.mcf +++ /dev/null @@ -1,81 +0,0 @@ -Node: dcid:Taxon -name: "Taxon" -typeOf: schema:Class -subClassOf: dcs:BiologicalEntity -description: "A set of organisms asserted to represent a natural cohesive biological unit." - -Node: dcid:biologicalHost -name: "biologicalHost" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: dcs:BiologicalHostEnum -description: "The type of larger biological organism that harbors this group of organisms." - -Node: dcid:genBankName -name: "genBankName" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: schema:Text -description: "The name by which GenBank refers to this taxon." - -Node: dcid:hasInheritedDivision -name: "hasInheritedDivision" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: schema:Boolean -description: "Division is inherited by the parent Taxon." - -Node: dcid:ncbiBlastName -name: "ncbiBlastName" -typeOf: schema:Property -domainIncludes: dcs:BiologicalEntity -rangeIncludes: schema:Text -description: "The name by which NCBI Basic Local Alignment Search Tool (Blast) refers to this taxon." - -Node: dcid:ncbiTaxId -name: "ncbiTaxId" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: schema:Number -description: "Node id in ncbi GenBank taxonomy database." - -Node: dcid:parentTaxon -name: "parentTaxon" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: dcs:Taxon -description:"Closest parent taxon of the taxon in question." - -Node: dcid:taxonDivision -name: "taxonDivision" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: dcs:BiologicalTaxonomicDivisionEnum -description:"The broad biological division to which the group of organisms belongs." - -Node: dcid:taxonRank -name: "taxonRank" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: dcs:BiologicalTaxonomicRankEnum -description: "The relative level of the group of organisms (a taxon) is in an ancestral or hereditary hierarchy." - -Node: dcid:taxonTopLevelCategory -name: "taxonTopLevelCategory" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes: dcs:TaxonTopLevelCategoryEnum -description: "The top level category to which a group of organisms (a taxon) belongs. This can be Archaea, Bacteria, Eukaryota, Viruses and Viroids, Other, and Unclassified." - -Node: dcid:abbreviaion -name: "abbreviaion" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes:schema:Text - -Node: dcid:acronym -name: "acronym" -typeOf: schema:Property -domainIncludes: dcs:Taxon -rangeIncludes:schema:Text - diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/download.sh b/scripts/biomedical/NCBI_Taxonomy/scripts/download.sh deleted file mode 100755 index 09e0344be5..0000000000 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/download.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -mkdir -p input; cd input - -# download the newest ncbi taxdump file and uncompress it -curl -o ncbi_taxdump.tar.Z https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/new_taxdump/new_taxdump.tar.Z -uncompress ncbi_taxdump.tar.Z -tar -xvf ncbi_taxdump.tar -rm ncbi_taxdump.tar - -# download the newest ncbi taxcat file and uncompress it -curl -o ncbi_taxcat.tar.gz https://ftp.ncbi.nlm.nih.gov/pub/taxonomy/taxcat.tar.gz -tar -xvzf ncbi_taxcat.tar.gz -rm ncbi_taxcat.tar.gz diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py index 4e2b22be14..d32b5869d9 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py @@ -14,8 +14,8 @@ """ Author: Pradeep Kumar Krishnaswamy Date: 18-Apr-2024 -Edited By: Samantha Piekos -Last Edited: 17-Jul-2024 +Edited By: Pradeep Kumar Krishnaswamy +Last Edited: 03-Sep-2024 Name: format_ncbi_taxonomy Description: cleaning the NCBI Taxonomy data. @source data: Download Taxdump.tar.z from NCBI Taxonomy FTP Download page @@ -29,7 +29,7 @@ import string import sys import os -from pathlib import Path +from os.path import dirname, abspath, join import pandas as pd from absl import app from absl import flags @@ -199,7 +199,7 @@ flags.DEFINE_string('input_dir', 'input', 'Input directory where .dmp files downloaded.') -MODULE_DIR = str(Path(os.path.dirname(__file__))) +MODULE_DIR = dirname(dirname(abspath(__file__))) class DataFrameGenerator: @@ -268,18 +268,17 @@ def make_pascal_case(self, df: pd.DataFrame, return df - class DivisionCls: """Class to process division.dmp file """ - def create_dataframe(self) -> pd.DataFrame: + def create_dataframe(self, file_path: str) -> pd.DataFrame: """Creates Division DataFrame Returns: pd.DataFrame: Division DataFrame """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, DIVISION_DMP) + df = DataFrameGenerator().get_dataframe(file_path, DIVISION_DMP) df = DataFrameGenerator().assign_dataframe_header(df, DIVISION_COL) df = DataFrameGenerator().make_pascal_case(df, 'division_name') return df @@ -300,7 +299,8 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: mcf_file_path (str): MCF file path """ with open(mcf_file_path, 'w') as file: - file.write(FIRST_MCF_ENTRY) # Assuming FIRST_MCF_ENTRY is defined elsewhere + file.write(FIRST_MCF_ENTRY + ) # Assuming FIRST_MCF_ENTRY is defined elsewhere global DIVISION_DICT df.sort_values(by=['division_namePascalCase'], inplace=True) @@ -311,22 +311,25 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: division_name=row['division_name'].title(), division_acronym=row['division_acronym'], ) - mcf_line = DivisionCls().add_description_mcf_line(mcf_line, row) + mcf_line = DivisionCls().add_description_mcf_line( + mcf_line, row) file.write(mcf_line) - DIVISION_DICT[row['division_code']] = 'dcs:BiologicalTaxonomicDivision' + row['division_namePascalCase'] + DIVISION_DICT[row[ + 'division_code']] = 'dcs:BiologicalTaxonomicDivision' + row[ + 'division_namePascalCase'] class NamesCls: """Class to process names.dmp file """ - def create_dataframe(self) -> pd.DataFrame: + def create_dataframe(self, file_path: str) -> pd.DataFrame: """Creates Names DataFrame Returns: pd.DataFrame: Names DataFrame """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NAMES_DMP) + df = DataFrameGenerator().get_dataframe(file_path, NAMES_DMP) df = DataFrameGenerator().assign_dataframe_header(df, NAMES_COL) return df @@ -360,8 +363,8 @@ def clean_names_dataframe(self, df: pd.DataFrame) -> None: property_list.append(char_replace(row['name_txt'])) try: property_list.append( - char_replace( - row['unique_name'].split('<')[1].split('>')[0])) + char_replace(row['unique_name'].split('<') + [1].split('>')[0])) except: logging.error(f"Error in split {property_value}") else: @@ -411,16 +414,17 @@ class HostCls: """Class to process host.dmp file """ - def create_dataframe(self) -> pd.DataFrame: + def create_dataframe(self, file_path: str) -> pd.DataFrame: """Creates Host DataFrame Returns: pd.DataFrame: Host DataFrame """ global HOST_DICT - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, HOST_DMP) + df = DataFrameGenerator().get_dataframe(file_path, HOST_DMP) df = DataFrameGenerator().assign_dataframe_header(df, HOST_COL) - df['DC_host_enum'] = df['host'].apply(lambda x: self.__hostdcsformat(x)) + df['DC_host_enum'] = df['host'].apply( + lambda x: self.__hostdcsformat(x)) return df def __hostdcsformat(self, host: str) -> str: @@ -481,13 +485,13 @@ class NodesCls: """Class to process nodes.dmp file """ - def create_dataframe(self) -> pd.DataFrame: + def create_dataframe(self, file_path: str) -> pd.DataFrame: """Creates Nodes DataFrame Returns: pd.DataFrame: Nodes DataFrame """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, NODES_DMP) + df = DataFrameGenerator().get_dataframe(file_path, NODES_DMP) df = DataFrameGenerator().assign_dataframe_header(df, NODES_COL) df = df.drop(['embl_code'], axis=1) df = df.drop(df.columns[5:], axis=1) @@ -506,7 +510,8 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: file.write(NODES_ENUM_MCF) for ur in unique_rank: rank_case = string.capwords(ur).replace(" ", "") - mcf_line = NODES_MCF.format(rank_case=rank_case, rank=ur.title()) + mcf_line = NODES_MCF.format(rank_case=rank_case, + rank=ur.title()) file.write(mcf_line) def update_nodes_enum(self, df: pd.DataFrame) -> None: @@ -516,13 +521,14 @@ def update_nodes_enum(self, df: pd.DataFrame) -> None: df (pd.DataFrame): Nodes DataFrame """ global FINAL_NCBI_TAXONOMY - for index, row in df.iterrows(): + for _, row in df.iterrows(): try: current_node = FINAL_NCBI_TAXONOMY[row['tax_id']] current_node['parentDcid'] = TAX_ID_DCID_MAPPING[ row["parent_tax_id"]] rank_case = string.capwords(row["rank"]).replace(" ", "") - current_node['taxonRank'] = "dcs:BiologicalTaxonomicRank" + rank_case + current_node[ + 'taxonRank'] = "dcs:BiologicalTaxonomicRank" + rank_case current_node['division'] = DIVISION_DICT[row["division_code"]] current_node['hasInheritedDivision'] = True if row[ 'inherited_division'] == 1 else False @@ -536,14 +542,13 @@ class CategoriesCls: """Class to process nodes.dmp file """ - def create_dataframe(self) -> pd.DataFrame: + def create_dataframe(self, file_path: str) -> pd.DataFrame: """Creates Categories DataFrame Returns: pd.DataFrame: Categories DataFrame """ - df = DataFrameGenerator().get_dataframe(SOURCE_FILE_PATH, - CATEGORIES_DMP) + df = DataFrameGenerator().get_dataframe(file_path, CATEGORIES_DMP) df = DataFrameGenerator().assign_dataframe_header(df, CATEGORIES_COL) df = df.drop(['speciesTaxID'], axis=1) df['taxonTopLevelCategory'] = df['taxonTopLevelCategory'].apply( @@ -619,7 +624,7 @@ def set_flages() -> None: global OUTPUT_FILE_PATH, SOURCE_FILE_PATH _FLAGS(sys.argv) OUTPUT_FILE_PATH = path_join(MODULE_DIR, _FLAGS.output_dir) - if not os.path.exists(os.path.join(MODULE_DIR, _FLAGS.output_dir)): + if not os.path.exists(join(MODULE_DIR, _FLAGS.output_dir)): os.mkdir(OUTPUT_FILE_PATH) SOURCE_FILE_PATH = path_join(MODULE_DIR, _FLAGS.input_dir) @@ -634,34 +639,42 @@ def path_join(path: str, filename: str) -> str: Returns: str: full filename """ - return os.path.join(path, filename) + return join(path, filename) def main(_): """Main method """ global OUTPUT_FILE_PATH, SOURCE_FILE_PATH + logging.info("Start format NCBI Taxonomy") set_flages() - division_df = DivisionCls().create_dataframe() + logging.info("Processing Division dataframe") + division_df = DivisionCls().create_dataframe(SOURCE_FILE_PATH) DivisionCls().append_mcf_data(division_df, path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) - names_df = NamesCls().create_dataframe() + names_df = NamesCls().create_dataframe(SOURCE_FILE_PATH) + logging.info("Processing Names dataframe") NamesCls().clean_names_dataframe(names_df) NamesCls().create_tax_id_dcid_mapping_file( path_join(OUTPUT_FILE_PATH, OUTPUT_TAXID_DCID_MAPPING_FILE)) - host_df = HostCls().create_dataframe() + logging.info("Processing Host dataframe") + host_df = HostCls().create_dataframe(SOURCE_FILE_PATH) HostCls().append_mcf_data(host_df, path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) HostCls().update_host_enum(host_df) - nodes_df = NodesCls().create_dataframe() + logging.info("Processing Nodes dataframe") + nodes_df = NodesCls().create_dataframe(SOURCE_FILE_PATH) NodesCls().append_mcf_data(nodes_df, path_join(OUTPUT_FILE_PATH, OUTPUT_MCF_FILE)) NodesCls().update_nodes_enum(nodes_df) - categories_df = CategoriesCls().create_dataframe() + logging.info("Processing Categories dataframe") + categories_df = CategoriesCls().create_dataframe(SOURCE_FILE_PATH) CategoriesCls().update_categories_enum(categories_df) + logging.info("Processing Final dataframe") final_df = FinalDataFrameCls().createFinalDF() FinalDataFrameCls().create_final_csv( final_df, path_join(OUTPUT_FILE_PATH, OUTPUT_NCBI_TAXONOMY_CSV)) + logging.info("NCBI Taxonomy processing completed") if __name__ == "__main__": diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py index 424064bbcb..97e074c572 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py @@ -14,101 +14,127 @@ """ Author: Pradeep Kumar Krishnaswamy Date: 18-Apr-2024 +Last Edited: 03-Sep-2024 """ import os import copy import tempfile import unittest +from deepdiff.diff import DeepDiff from format_ncbi_taxonomy import * -MODULE_DIR_PATH = str(Path(os.path.dirname(__file__)).parents[0]) +MODULE_DIR_PATH = dirname(dirname(abspath(__file__))) +SOURCE_FILE_PATH = dirname(dirname(abspath(__file__))) + '/test_data/input' +OUTPUT_FILE_PATH = dirname(dirname(abspath(__file__))) + '/test_data/output/' class TestNCBITaxonomy(unittest.TestCase): - @classmethod - def setUpClass(self): - set_flages() + # @classmethod + # def setUpClass(self): + # global SOURCE_FILE_PATH, OUTPUT_FILE_PATH, MODULE_DIR_PATH + # SOURCE_FILE_PATH = os.path.join(MODULE_DIR_PATH, SOURCE_FILE_PATH) + # OUTPUT_FILE_PATH = os.path.join(MODULE_DIR_PATH, OUTPUT_FILE_PATH) def test_check_division_df_columns(self): - division_df = DivisionCls().create_dataframe() + """ Check for the column header for Division dmp file + """ + global SOURCE_FILE_PATH + division_df = DivisionCls().create_dataframe(SOURCE_FILE_PATH) division_col_lst = copy.deepcopy(DIVISION_COL) division_col_lst.append('division_namePascalCase') self.assertListEqual(division_col_lst, division_df.columns.to_list()) def test_check_names_df_columns(self): - names_df = NamesCls().create_dataframe() + """ Check for the column header for Names dmp file + """ + names_df = NamesCls().create_dataframe(SOURCE_FILE_PATH) self.assertListEqual(NAMES_COL, names_df.columns.to_list()) def test_check_host_df_columns(self): - host_df = HostCls().create_dataframe() + """ Check for the column header for Hosts dmp file + """ + host_df = HostCls().create_dataframe(SOURCE_FILE_PATH) host_col_lst = copy.deepcopy(HOST_COL) host_col_lst.append('DC_host_enum') self.assertListEqual(host_col_lst, host_df.columns.to_list()) def test_check_nodes_df_columns(self): - nodes_df = NodesCls().create_dataframe() + """ Check for the column header for Nodes dmp file + """ + nodes_df = NodesCls().create_dataframe(SOURCE_FILE_PATH) nodes_col_lst = NODES_COL nodes_col_lst.remove('embl_code') self.assertListEqual(nodes_col_lst, nodes_df.columns.to_list()) def test_check_categories_df_columns(self): - categories_df = CategoriesCls().create_dataframe() + """ Check for the column header for Categories dmp file + """ + categories_df = CategoriesCls().create_dataframe(SOURCE_FILE_PATH) categories_col_lst = CATEGORIES_COL categories_col_lst.remove('speciesTaxID') self.assertListEqual(CATEGORIES_COL, categories_df.columns.to_list()) def test_check_mcf_entries_division(self): + """ check the generated enum mcf file for Division dum file + """ expected_mcf_list = [] current_mcf_list = [] - division_df = DivisionCls().create_dataframe() + division_df = DivisionCls().create_dataframe(SOURCE_FILE_PATH) with tempfile.TemporaryDirectory() as tmp_dir: result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') DivisionCls().append_mcf_data(division_df, result_mcf_file) - with open( - os.path.join(MODULE_DIR_PATH, - 'ncbi_taxonomy/test_data/division_enum_expected.mcf'), - 'r') as mcf: - expected_mcf_list.extend(mcf.read().split('\n\n')) with open(result_mcf_file, 'r') as mcf: current_mcf_list.extend(mcf.read().split('\n\n')) + with open( + os.path.join( + MODULE_DIR_PATH, + 'test_data/expected_mcf_files/division_enum_expected.mcf' + ), 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) - self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + assert DeepDiff(expected_mcf_list, current_mcf_list) == {} def test_check_mcf_entries_hosts(self): + """ check the generated enum mcf file for Hosts dum file + """ expected_mcf_list = [] current_mcf_list = [] - host_df = HostCls().create_dataframe() + host_df = HostCls().create_dataframe(SOURCE_FILE_PATH) with tempfile.TemporaryDirectory() as tmp_dir: result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') HostCls().append_mcf_data(host_df, result_mcf_file) + with open(result_mcf_file, 'r') as mcf: + current_mcf_list.extend(mcf.read().split('\n\n')) with open( - os.path.join(MODULE_DIR_PATH, - 'ncbi_taxonomy/test_data/host_enum_expected.mcf'), + os.path.join( + MODULE_DIR_PATH, + 'test_data/expected_mcf_files/host_enum_expected.mcf'), 'r') as mcf: expected_mcf_list.extend(mcf.read().split('\n\n')) - with open(result_mcf_file, 'r') as mcf: - current_mcf_list.extend(mcf.read().split('\n\n')) - self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + assert DeepDiff(expected_mcf_list, current_mcf_list) == {} def test_check_mcf_entries_nodes(self): + """ check the generated enum mcf file for Nodes dum file + """ expected_mcf_list = [] current_mcf_list = [] - nodes_df = NodesCls().create_dataframe() + nodes_df = NodesCls().create_dataframe(SOURCE_FILE_PATH) with tempfile.TemporaryDirectory() as tmp_dir: result_mcf_file = os.path.join(tmp_dir, 'test_mcf.mcf') NodesCls().append_mcf_data(nodes_df, result_mcf_file) - with open( - os.path.join(MODULE_DIR_PATH, - 'ncbi_taxonomy/test_data/nodes_enum_expected.mcf'), - 'r') as mcf: - expected_mcf_list.extend(mcf.read().split('\n\n')) with open(result_mcf_file, 'r') as mcf: current_mcf_list.extend(mcf.read().split('\n\n')) + with open( + os.path.join( + MODULE_DIR_PATH, + 'test_data/expected_mcf_files/nodes_enum_expected.mcf' + ), 'r') as mcf: + expected_mcf_list.extend(mcf.read().split('\n\n')) - self.assertTrue(set(expected_mcf_list).issubset(set(current_mcf_list))) + assert DeepDiff(expected_mcf_list, current_mcf_list) == {} if __name__ == '__main__': diff --git a/scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf b/scripts/biomedical/NCBI_Taxonomy/tMCFs/ncbi_taxonomy.tmcf similarity index 100% rename from scripts/biomedical/NCBI_Taxonomy/tMCF/ncbi_taxonomy.tmcf rename to scripts/biomedical/NCBI_Taxonomy/tMCFs/ncbi_taxonomy.tmcf diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf deleted file mode 100644 index e57e72f512..0000000000 --- a/scripts/biomedical/NCBI_Taxonomy/test_data/division_enum_expected.mcf +++ /dev/null @@ -1,78 +0,0 @@ -Node:dcid:BiologicalTaxonomicDivisionEnum -name: "BiologicalTaxonomicDivisionEnum" -typeOf: schema:Class -subClassOf: schema:Enumeration -description: "These are broad biological divisions that are commonly used to divide living organisms" - -Node:dcid:BiologicalTaxonomicDivisionBacteria -name: Bacteria -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: BCT -description: - -Node:dcid:BiologicalTaxonomicDivisionEnvironmentalSamples -name: Environmental samples -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: ENV -description: Anonymous sequences cloned directly from the environment - -Node:dcid:BiologicalTaxonomicDivisionInvertebrates -name: Invertebrates -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: INV -description: - -Node:dcid:BiologicalTaxonomicDivisionMammals -name: Mammals -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: MAM -description: - -Node:dcid:BiologicalTaxonomicDivisionPhages -name: Phages -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: PHG -description: - -Node:dcid:BiologicalTaxonomicDivisionPlantsAndFungi -name: Plants and Fungi -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: PLN -description: - -Node:dcid:BiologicalTaxonomicDivisionPrimates -name: Primates -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: PRI -description: - -Node:dcid:BiologicalTaxonomicDivisionRodents -name: Rodents -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: ROD -description: - -Node:dcid:BiologicalTaxonomicDivisionSyntheticAndChimeric -name: Synthetic and Chimeric -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: SYN -description: - -Node:dcid:BiologicalTaxonomicDivisionUnassigned -name: Unassigned -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: UNA -description: No species nodes should inherit this division assignment - -Node:dcid:BiologicalTaxonomicDivisionVertebrates -name: Vertebrates -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: VRT -description: - -Node:dcid:BiologicalTaxonomicDivisionViruses -name: Viruses -typeOf: dcs:BiologicalTaxonomicDivisionEnum -acronym: VRL -description: - diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/division_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/division_enum_expected.mcf new file mode 100644 index 0000000000..d9f2d780ee --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/division_enum_expected.mcf @@ -0,0 +1,69 @@ +# This schema file is generated by format_ncbi_taxonomy.py +Node: dcid:BiologicalTaxonomicDivisionEnum +name: "BiologicalTaxonomicDivisionEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "These are broad biological divisions that are commonly used to divide living organisms." + +Node: dcid:BiologicalTaxonomicDivisionBacteria +name: "Bacteria" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "BCT" + +Node: dcid:BiologicalTaxonomicDivisionEnvironmentalSamples +name: "Environmental Samples" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "ENV" +description: "Anonymous sequences cloned directly from the environment." + +Node: dcid:BiologicalTaxonomicDivisionInvertebrates +name: "Invertebrates" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "INV" + +Node: dcid:BiologicalTaxonomicDivisionMammals +name: "Mammals" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "MAM" + +Node: dcid:BiologicalTaxonomicDivisionPhages +name: "Phages" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "PHG" + +Node: dcid:BiologicalTaxonomicDivisionPlantsAndFungi +name: "Plants And Fungi" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "PLN" + +Node: dcid:BiologicalTaxonomicDivisionPrimates +name: "Primates" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "PRI" + +Node: dcid:BiologicalTaxonomicDivisionRodents +name: "Rodents" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "ROD" + +Node: dcid:BiologicalTaxonomicDivisionSyntheticAndChimeric +name: "Synthetic And Chimeric" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "SYN" + +Node: dcid:BiologicalTaxonomicDivisionUnassigned +name: "Unassigned" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "UNA" +description: "No species nodes should inherit this division assignment." + +Node: dcid:BiologicalTaxonomicDivisionVertebrates +name: "Vertebrates" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "VRT" + +Node: dcid:BiologicalTaxonomicDivisionViruses +name: "Viruses" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "VRL" + diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/host_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/host_enum_expected.mcf new file mode 100644 index 0000000000..338a73d779 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/host_enum_expected.mcf @@ -0,0 +1,22 @@ +Node: dcid:BiologicalHostEnum +name: "BiologicalHostEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." + +Node: dcid:BiologicalHostBacteria +name: "Bacteria" +typeOf: dcs:BiologicalHostEnum + +Node: dcid:BiologicalHostHuman +name: "Human" +typeOf: dcs:BiologicalHostEnum + +Node: dcid:BiologicalHostLandPlants +name: "Land Plants" +typeOf: dcs:BiologicalHostEnum + +Node: dcid:BiologicalHostVertebrates +name: "Vertebrates" +typeOf: dcs:BiologicalHostEnum + diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/nodes_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/nodes_enum_expected.mcf new file mode 100644 index 0000000000..9ed21dcaa3 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_mcf_files/nodes_enum_expected.mcf @@ -0,0 +1,40 @@ +Node: dcid:BiologicalTaxonomicRankEnum +name: "BiologicalTaxonomicRankEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "In biology, taxonomic rank is the relative level of a group of organisms (a taxon) in an ancestral or hereditary hierarchy. A common system of biological classification (taxonomy) consists of species, genus, family, order, class, phylum, kingdom, and domain. However, todays taxonomic rankings have expanded beyond these seven basic classifications." +descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" + + +Node: dcid:BiologicalTaxonomicRankClade +name: "Clade" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankClass +name: "Class" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankNoRank +name: "No Rank" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankOrder +name: "Order" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankPhylum +name: "Phylum" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankSpecies +name: "Species" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankSubspecies +name: "Subspecies" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankVarietas +name: "Varietas" +typeOf: dcs:BiologicalTaxonomicRankEnum + diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy.csv b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy.csv new file mode 100644 index 0000000000..188eebe4b7 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy.csv @@ -0,0 +1,4182 @@ +taxID,acronym,citation,ncbiBlastName,commonName,synonym,genBankName,scientificName,dcid,host,parentDcid,taxonRank,division,hasInheritedDivision,taxonTopLevelCategory +561,,Escherichia Castellani and Chalmers 1919,,,,,Escherichia,bio/Escherichia,,,,,, +562,,Escherichia coli (Migula 1895) Castellani and Chalmers 1919 (Approved Lists 1980),,E. coli,"bacterium E3, Bacterium coli, Achromobacter sp. ATCC 35328, bacterium 10a, Escherichia sp. 3_2_53FAA, Enterococcus coli, Bacillus coli, Escherichia sp. MAR, Bacterium coli commune, Escherichia/Shigella coli",,Escherichia coli,bio/EscherichiaColi,"dcs:BiologicalHostBacteria,dcs:BiologicalHostVertebrates",bio/Escherichia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionBacteria,True,dcs:TaxonTopLevelCategoryBacteria +786,,Rickettsia akari Huebner et al. 1946,,rickettsialpox,"Dermacentroxenus murinus, Gamasoxenus muris",agent of rickettsialpox,Rickettsia akari,bio/RickettsiaAkari,,bio/SpottedFeverGroup,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionBacteria,True,dcs:TaxonTopLevelCategoryBacteria +950,,Neorickettsia risticii (Holland et al. 1985) Dumler et al. 2001,,equine monocytic ehrlichiosis agent,Ehrlichia risticii,Potomac horse fever agent,Neorickettsia risticii,bio/NeorickettsiaRisticii,,bio/Neorickettsia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionBacteria,True,dcs:TaxonTopLevelCategoryBacteria +1117,,Cyanobacteriota Oren et al. 2022,cyanobacteria,cyanophytes,"Oxyphotobacteria, Oxygenic photosynthetic bacteria, Cyanophycota, Cyanophyta, Cyanobacteria",blue-green algae,Cyanobacteriota,bio/Cyanobacteriota,,bio/CyanobacteriotamelainabacteriaGroup,dcs:BiologicalTaxonomicRankPhylum,dcs:BiologicalTaxonomicDivisionBacteria,True, +2706,,Microcitrus Swingle,,,"Fortunella, Microcitrus, Eremocitrus",,Citrus,bio/Citrus,,,,,, +2711,,"Citrus sinensis (L.) Osbeck, 1765",,Valencia orange,Citrus x sinensis,sweet orange,Citrus sinensis,bio/CitrusSinensis,,bio/Citrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +2830,,"Haptophyta Hibberd, 1976",haptophytes,coccolithophorids,"Chromophyta, algae, haptophytes, Prymnesiophyta, Haptophyceae",haptophytes ,Haptophyta,bio/Haptophyta,,bio/Haptista,dcs:BiologicalTaxonomicRankPhylum,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,False, +2864,,"Dinophyceae Fritsch, 1927",dinoflagellates,dinophytes,"Chromophyta, Dinoflagellata, Pyrrhophyta, algae, Dinophycidae, dinoflagellates, Pyrrophyta, Dinophyta",dinoflagellates ,Dinophyceae,bio/Dinophyceae,,bio/Alveolata,dcs:BiologicalTaxonomicRankClass,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,False, +3035,,Euglenida Buetschli 1884,euglenoids,euglenophytes,"euglenoids, Euglenoida, algae, Euglenophyta",euglenids,Euglenida,bio/Euglenida,,bio/Euglenozoa,dcs:BiologicalTaxonomicRankClass,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,False, +3193,,,land plants,plants,,,Embryophyta,bio/Embryophyta,,,,,, +3195,,"Marchantiophyta Stotler & Crand.-Stotl., 2000",liverworts,liverwort,"liverworts, Hepaticopsida, bryophytes, Hepaticae",liverworts ,Marchantiophyta,bio/Marchantiophyta,,bio/Embryophyta,dcs:BiologicalTaxonomicRankClade,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3310,,Ginkgo L.,,,,,Ginkgo,bio/Ginkgo,,,,,, +3311,,"Ginkgo biloba L., 1771",,ginkgo,"Ginkgo biloba var. epiphylla, Ginkgo biloba f. epiphylla",maidenhair tree,Ginkgo biloba,bio/GinkgoBiloba,,bio/Ginkgo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3350,,"Pinus thunbergii Parl., 1868",,green pine,Pinus thunbergiana,Japanese black pine,Pinus thunbergii,bio/PinusThunbergii,,bio/PinusSubgenPinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3445,,"Ranunculus L., 1753",,,,buttercups,Ranunculus,bio/Ranunculus,,,,,, +3447,,"Ranunculus acris L., 1753",,cmmon buttercup,Ranunculus acer,tall buttercup,Ranunculus acris,bio/RanunculusAcris,,bio/Ranunculus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3464,,Corydalis sempervirens (L.) Pers.,,rock harlequin,"Corydalis sempervirens, Corydalis glauca",pink corydalis,Capnoides sempervirens,bio/CapnoidesSempervirens,,bio/Capnoides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3484,,"Humulus L., 1753",,,,,Humulus,bio/Humulus,,,,,, +3485,,"Humulus japonicus Siebold & Zucc., 1846",,kana-mugura,Humulus scandens auct.,Japanese hop,Humulus japonicus,bio/HumulusJaponicus,,bio/Humulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3504,,"Betula L., 1753",,birches,,,Betula,bio/Betula,,,,,, +3505,,Betula verrucosa Ehrh.,,white birch,Betula verrucosa,European white birch,Betula pendula,bio/BetulaPendula,,bio/Betula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3511,,Quercus L.,,,,,Quercus,bio/Quercus,,,,,, +3512,,"Quercus rubra L., 1753",,red oak,Quercus borealis,northern red oak,Quercus rubra,bio/QuercusRubra,,bio/Quercus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3526,,"Phytolacca L., 1753",,,,,Phytolacca,bio/Phytolacca,,,,,, +3527,,Phytolacca decandra L.,,Virginia poke,Phytolacca decandra,American pokeweed,Phytolacca americana,bio/PhytolaccaAmericana,,bio/Phytolacca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3528,,Phytolacca esculenta Van Houtte,,shang lu,Phytolacca esculenta,food pokeweed,Phytolacca acinosa,bio/PhytolaccaAcinosa,,bio/Phytolacca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3560,,"Oxybasis rubra (L.) S.Fuentes, Uotila & Borsch, 2012",,pigweed,Chenopodium rubrum,red goosefoot,Oxybasis rubra,bio/OxybasisRubra,,bio/Oxybasis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3564,,"Amaranthus L., 1753",,,,,Amaranthus,bio/Amaranthus,,,,,, +3616,,Parapteropyrum A.J.Li,,,Parapteropyrum,,Fagopyrum,bio/Fagopyrum,,,,,, +3620,,"Rheum L., 1753",,,,,Rheum,bio/Rheum,,,,,, +3621,,"Rheum x hybridum Murray, 1775",,rhubarb,"Rheum x rhabarbarum, Rheum x hybridum, Rheum x cultorum",garden rhubarb,Rheum rhabarbarum,bio/RheumRhabarbarum,,bio/Rheum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3630,,"Abutilon Mill., 1754",,,,,Abutilon,bio/Abutilon,,,,,, +3631,,Sida tiliifolia Fisch.,,velvetleaf,"Sida tiliifolia, Abutilon avicennae",China jute,Abutilon theophrasti,bio/AbutilonTheophrasti,,bio/Abutilon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3633,,"Gossypium L., 1753",,,,,Gossypium,bio/Gossypium,,,,,, +3635,,Gossypium purpurascens Poir.,,American upland cotton,"Gossypium purpurascens, Gossypium hirsutum subsp. mexicanum, Gossypium lanceolatum",cotton,Gossypium hirsutum,bio/GossypiumHirsutum,,bio/Gossypium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3653,,"Citrullus Schrad., 1836",,,,,Citrullus,bio/Citrullus,,,,,, +3654,,"Momordica lanata Thunb., 1959",,wild melon,"Momordica lanata, Citrullus battich, Citrullus vulgaris, Citrullus lanatus var. lanatus, Citrullus lanatus subsp. vulgaris",watermelon,Citrullus lanatus,bio/CitrullusLanatus,,bio/Citrullus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3657,,"Cucumis melo var. conomon (Thunb.) Makino, 1902",,snake cucumber,"Cucumis melo Conomon Group, Cucumis melo subsp. agrestis var. conomon, Cucumis melo var. utilissimus, Cucumis melo subsp. melo var. conomon",oriental pickling melon,Cucumis melo var. conomon,bio/CucumisMeloVarConomon,,bio/CucumisMeloSubspAgrestis,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3658,,"Cucumis melo var. reticulatus Naudin, 1859",,Persian melo,"Cucumis melo Cantalupensis Group, Cucumis melo subsp. melo var. reticulatus, Cucumis melo var. reticulatus, Cucumis melo subsp. melo var. cantalupo, Cucumis melo subsp. melo var. cantaloupensis, Cucumis melo subsp. melo var. cantalupensis, Cucumis melo var. cantalupensis",cantaloupe,Cucumis melo var. cantalupo,bio/CucumisMeloVarCantalupo,,bio/CucumisMeloSubspMelo,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3667,,"Lagenaria Ser., 1825",,,,,Lagenaria,bio/Lagenaria,,,,,, +3668,,Lagenaria vulgaris Ser.,,calabash,"Lagenaria leucantha, Cucurbita lagenaria, Cucurbita siceraria, Lagenaria vulgaris",white-flowered gourd,Lagenaria siceraria,bio/LagenariaSiceraria,,bio/Lagenaria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3669,,"Luffa Mill., 1754",,,,,Luffa,bio/Luffa,,,,,, +3670,,"Luffa aegyptiaca Mill., 1768",,vegetable sponge,"Luffa cylindrica M.Roem., 1768",smooth loofah,Luffa aegyptiaca,bio/LuffaAegyptiaca,,bio/Luffa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3689,,"Populus L., 1753",,poplar trees,,poplars,Populus,bio/Populus,,,,,, +3694,,"Populus trichocarpa Torr. & A.Gray ex Hook., 1852",,western balsam poplar,Populus balsamifera subsp. trichocarpa,black cottonwood,Populus trichocarpa,bio/PopulusTrichocarpa,,bio/Populus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3701,,Cardaminopsis Hayek,,,Cardaminopsis,,Arabidopsis,bio/Arabidopsis,,,,,, +3702,,"Arabis thaliana L., 1753",,thale-cress,Arabis thaliana,thale cress,Arabidopsis thaliana,bio/ArabidopsisThaliana,,bio/Arabidopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3711,,"Brassica rapa L., 1753",,,,field mustard,Brassica rapa,bio/BrassicaRapa,,,,,, +3712,,"Brassica oleracea L., 1753",,,,wild cabbage,Brassica oleracea,bio/BrassicaOleracea,,,,,, +3713,,"Brassica oleracea var. viridis L., 1753",,fodder kale,"Brassica oleracea var. acephala, Brassica oleracea subsp. acephala",kale,Brassica oleracea var. viridis,bio/BrassicaOleraceaVarViridis,,bio/BrassicaOleracea,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3714,,"Brassica oleracea var. alboglabra (L.H.Bailey) Musil, 1948",,Chinese broccoli,Brassica alboglabra,Chinese kale,Brassica oleracea var. alboglabra,bio/BrassicaOleraceaVarAlboglabra,,bio/BrassicaOleracea,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3726,,"Raphanus sativus L., 1753",,,,radish,Raphanus sativus,bio/RaphanusSativus,,,,,, +3727,,Sinapis L.,,,,,Sinapis,bio/Sinapis,,,,,, +3728,,"Sinapis alba L., 1753",,yellow mustard,Brassica hirta,white mustard,Sinapis alba,bio/SinapisAlba,,bio/Sinapis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3734,,"Moringa Adans., 1763",,,,,Moringa,bio/Moringa,,,,,, +3735,,Moringa pterygosperma Gaertn.,,maranga,Moringa pterygosperma,horseradish tree,Moringa oleifera,bio/MoringaOleifera,,bio/Moringa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3749,,"Malus Mill., 1754",,,,,Malus,bio/Malus,,,,,, +3750,,"Pyrus malus var. domestica Suckow, 1786",,cultivated apple,"Malus communis, Pyrus malus, Malus sylvestris var. domestica, Malus pumila auct., Pyrus malus var. domestica, Malus x domestica, Malus pumila var. domestica",apple,Malus domestica,bio/MalusDomestica,,bio/Malus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3754,,Prunus subg. Armeniaca (Scop.) Nakai,,,"Armeniaca, Maddenia, Cerasus, Amygdalus, Prunus subg. Armeniaca, Prunus subg. Amygdalus",,Prunus,bio/Prunus,,,,,, +3755,,"Prunus dulcis (Mill.) D.A.Webb, 1967",,sweet almond,"Amygdalus dulcis, Prunus communis, Prunus dulcis var. sativa, Amygdalus communis, Prunus amygdalus",almond,Prunus dulcis,bio/PrunusDulcis,,bio/Prunus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3766,,"Pyrus L., 1753",,,,pears,Pyrus,bio/Pyrus,,,,,, +3815,,"Abrus Adans., 1763",,,,,Abrus ,bio/Abrus_Eudicots,,,,,, +3816,,"Abrus precatorius L., 1767",,rosary pea,Abrus cyaneus,Indian licorice,Abrus precatorius,bio/AbrusPrecatorius,,bio/Abrus_Eudicots,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3847,,"Phaseolus max L., 1753",,soybeans,Phaseolus max,soybean,Glycine max,bio/GlycineMax,,bio/GlycineSubgenSoja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3865,,Leucaena Benth.,,,,,Leucaena,bio/Leucaena,,,,,, +3866,,"Leucaena leucocephala de Wit, 1961",,jump-and-go,Leucaena glauca,white popinac,Leucaena leucocephala,bio/LeucaenaLeucocephala,,bio/Leucaena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3869,,"Lupinus L., 1753",,,,,Lupinus,bio/Lupinus,,,,,, +3878,,"Medicago sativa subsp. falcata (L.) Arcang., 1882",,yellow lucerne,"Medicago falcata subsp. falcata, Medicago falcata",sickle medic,Medicago sativa subsp. falcata,bio/MedicagoSativaSubspFalcata,,bio/MedicagoSativa,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3879,,"Medicago sativa L., 1753",,lucerne,Medicago sativa subsp. sativa,,Medicago sativa,bio/MedicagoSativa,,,,,, +3893,,"Pueraria montana var. lobata (Willd.) Maesen & S.M.Almeida ex Sanjappa & Predeep, 1992",,kudzu,"Pueraria lobata, Pueraria lobata subsp. lobata, Pueraria lobata var. chinensis, Dolichos lobatus Willd., 1802",kudzu vine,Pueraria montana var. lobata,bio/PuerariaMontanaVarLobata,,bio/PuerariaMontana,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3901,,"Ulex L., 1753",,,,,Ulex,bio/Ulex,,,,,, +3902,,"Ulex europaeus L., 1753",,gorse,Ulex europeus,furze,Ulex europaeus,bio/UlexEuropaeus,,bio/Ulex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3913,,Vigna Savi,,,,,Vigna,bio/Vigna,,,,,, +3914,,"Vigna angularis Ohwi & H.Ohashi, 1969",,azuki bean,Phaseolus angularis,adzuki bean,Vigna angularis,bio/VignaAngularis,,bio/Vigna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3915,,"Vigna mungo Hepper, 1956",,urd-bean,Phaseolus mungo,black gram,Vigna mungo,bio/VignaMungo,,bio/Vigna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3916,,Vigna radiata var. radiata Roxb.,,green gram,"Phaseolus radiatus, Phaseolus aureus",mung bean ,Vigna radiata var. radiata,bio/VignaRadiataVarRadiata,,bio/VignaRadiata,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +3982,,Manihot Mill.,,,,,Manihot,bio/Manihot,,,,,, +3983,,"Manihot esculenta Crantz, 1766",,yuca,Manihot utilissima,cassava,Manihot esculenta,bio/ManihotEsculenta,,bio/Manihot,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +3984,,"Mercurialis L., 1753",,,,,Mercurialis,bio/Mercurialis,,,,,, +3986,,"Mercurialis annua L., 1753",,herb mercury,Mercurialis ambigua,annual mercury,Mercurialis annua,bio/MercurialisAnnua,,bio/Mercurialis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4057,,"Catharanthus G.Don, 1837",,,,,Catharanthus,bio/Catharanthus,,,,,, +4058,,Vinca rosea L.,,rosy periwinkle,Vinca rosea,Madagascar periwinkle,Catharanthus roseus,bio/CatharanthusRoseus,,bio/Catharanthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4059,,"Rauvolfia L., 1753",,,,,Rauvolfia,bio/Rauvolfia,,,,,, +4060,,"Rauvolfia serpentina (L.) Benth. ex Kurz, 1877",,devilpepper,Rauwolfia serpentina,serpentwood,Rauvolfia serpentina,bio/RauvolfiaSerpentina,,bio/Rauvolfia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4074,,"Datura L., 1753",,,,,Datura,bio/Datura,,,,,, +4075,,Datura meteloides Dunal,,downy thornapple,"Datura innoxia, Datura meteloides",sacred datura,Datura inoxia,bio/DaturaInoxia,,bio/Datura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4107,,Solanum L.,,,Cyphomandra,,Solanum,bio/Solanum,,,,,, +4113,,"Solanum tuberosum L., 1753",,potatoes,"Solanum tuberosum subsp. tuberosum, Solanum aracc-papa",potato,Solanum tuberosum,bio/SolanumTuberosum,,bio/Solanum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4119,,Pharbitis Choisy,,,Pharbitis,,Ipomoea,bio/Ipomoea,,,,,, +4120,,"Ipomoea batatas (L.) Lam., 1793",,batate,"Ipomoea tiliacea auct. non (Willd.) Choisy, Ipomoea batatas var. edulis",sweet potato,Ipomoea batatas,bio/IpomoeaBatatas,,bio/Ipomoea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4150,,Antirrhinum L.,,,,snapdragons,Antirrhinum,bio/Antirrhinum,,,,,, +4151,,"Antirrhinum majus L., 1753",,garden snapdragon,Antirrhinum sp. 'Floral Carpet Mix',snapdragon,Antirrhinum majus,bio/AntirrhinumMajus,,bio/Antirrhinum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4155,,Mimulus guttatus Fisch. ex DC.,,yellow monkey flower,"Mimulus guttatus subsp. guttatus, Mimulus guttatus",spotted monkey flower,Erythranthe guttata,bio/ErythrantheGuttata,,bio/Erythranthe,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4181,,Sesamum L.,,,,,Sesamum,bio/Sesamum,,,,,, +4182,,Sesamum orientale L.,,koba,Sesamum orientale,sesame,Sesamum indicum,bio/SesamumIndicum,,bio/Sesamum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4211,,"Ambrosia L., 1753",,ragweeds,,,Ambrosia,bio/Ambrosia,,,,,, +4212,,"Ambrosia paniculata Michx., 1803",,short ragweed,Ambrosia paniculata,common ragweed,Ambrosia artemisiifolia,bio/AmbrosiaArtemisiifolia,,bio/Ambrosia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4229,,Guizotia Cass.,,,,,Guizotia,bio/Guizotia,,,,,, +4230,,"Polymnia abyssinica L.f., 1782",,werinnua,Polymnia abyssinica,Niger seed,Guizotia abyssinica,bio/GuizotiaAbyssinica,,bio/Guizotia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4398,,"Liquidambar L., 1753",,,,sweet gum trees,Liquidambar,bio/Liquidambar,,,,,, +4400,,"Liquidambar styraciflua L., 1753",,American sweet gum,Liquidambar macrophylla,sweet gum,Liquidambar styraciflua,bio/LiquidambarStyraciflua,,bio/Liquidambar,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4415,,"Nuphar Sm., 1809",,,,,Nuphar,bio/Nuphar,,,,,, +4455,,Alocasia (Schott) G.Don,,,,,Alocasia,bio/Alocasia,,,,,, +4456,,"Alocasia macrorrhizos (L.) G.Don, 1839",,malanga,Alocasia macrorrhiza,giant taro,Alocasia macrorrhizos,bio/AlocasiaMacrorrhizos,,bio/Alocasia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4459,,,,,,,Colocasia ,bio/Colocasia_Monocots,,,,,, +4460,,"Colocasia esculenta (L.) Schott, 1832",,malanga,Colocasia esculenta var. esculenta,taro,Colocasia esculenta,bio/ColocasiaEsculenta,,bio/Colocasia_Monocots,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4501,,"Bromus L., 1753",,,Anisantha,,Bromus,bio/Bromus,,,,,, +4513,,"Hordeum vulgare L., 1753",,barley,,,Hordeum vulgare,bio/HordeumVulgare,,,,,, +4530,,"Oryza sativa L., 1753",,rice,,Asian cultivated rice,Oryza sativa,bio/OryzaSativa,,,,,, +4557,,"Sorghum Moench, 1794",,,Hemisorghum,,Sorghum,bio/Sorghum,,,,,, +4558,,Sorghum vulgare Pers.,,milo,"Sorghum bicolor subsp. bicolor, Sorghum vulgare, Sorghum saccharatum, Sorghum nervosum, Andropogon sorghum",sorghum,Sorghum bicolor,bio/SorghumBicolor,,bio/Sorghum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4564,,"Triticum L., 1753",,,,,Triticum,bio/Triticum,,,,,, +4565,,"Triticum vulgare Vill., 1787",,wheat,"Triticum vulgare, Triticum aestivum subsp. aestivum",bread wheat,Triticum aestivum,bio/TriticumAestivum,,bio/Triticum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4577,,"Zea mays L., 1753",,maize,Zea mays var. japonica,,Zea mays,bio/ZeaMays,,,,,, +4583,,Cenchrus L.,,,,,Cenchrus,bio/Cenchrus,,,,,, +4640,,,,,,,Musa,bio/Musa,,,,,, +4641,,"Musa acuminata Colla, 1820",,sweet banana,"Musa nana, Musa sp. 'Pisang lilin', Musa AA Group, Musa acuminata AA Group",dwarf banana,Musa acuminata,bio/MusaAcuminata,,bio/Musa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4701,,Scilla L.,,,Fortunatia,,Scilla,bio/Scilla,,,,,, +4783,,"Phytophthora de Bary, 1876",,,Peronophythora,,Phytophthora,bio/Phytophthora,,,,,, +4787,,"Phytophthora infestans (Mont.) de Bary, 1876",,potato late blight fungus,Botrytis infestans,potato late blight agent,Phytophthora infestans,bio/PhytophthoraInfestans,,bio/Phytophthora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4792,,"Phytophthora parasitica var. piperina Dastur, 1935",,sesame blight agent,"Phytophthora parasitica var. nicotianae, Phytophthora parasitica var. piperina, Phytophthora nicotianae var. parasitica, Phytophthora parasitica",black shank of tobacco agent,Phytophthora nicotianae,bio/PhytophthoraNicotianae,,bio/Phytophthora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +4930,,,,,Pachytichospora,,Saccharomyces,bio/Saccharomyces,,,,,, +4932,,"Saccharomyces diastaticus J. Andrews & R.B. Gilliland ex Van der Walt, 1965",,baker's yeast,"Saccharomyces diastaticus, Saccharomyces uvarum var. melibiosus, Saccharomyces oviformis, Saccharomyces capensis, Saccharomyces cerevisiae 'var. diastaticus', Saccharomyces italicus, Saccharomyces sp. Af145-1-1, Candida robusta, Mycoderma cerevisiae",brewer's yeast,Saccharomyces cerevisiae,bio/SaccharomycesCerevisiae,,bio/Saccharomyces,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +5022,,"Sphaeria lingam Tode, 1791",,blackleg of crucifers fungus,"Phoma lingam, Leptosphaeria sp. JW-2011m, Sphaeria lingam, Leptosphaeria maculans, Plenodomus rabenhorstii",blackleg of rapeseed fungus,Plenodomus lingam,bio/PlenodomusLingam,,bio/PlenodomusLingamleptosphaeriaMaculansSpeciesComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +5100,,"Amorphotheca Parbery, 1969",,,,,Amorphotheca,bio/Amorphotheca,,,,,, +5101,,Cladosporium avellaneum G.A. de Vries 1952,,kerosene fungus,"Hormoconis resinae, Cladosporium resinae f. avellaneum, Cladosporium avellaneum, Hormodendrum resinae, Cladosporium resina, Cladosporium sp. KUC3009",creosote fungus,Amorphotheca resinae,bio/AmorphothecaResinae,,bio/Amorphotheca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +5230,,"Auricularia Bull., 1780",,,,,Auricularia,bio/Auricularia,,,,,, +5320,,"Pleurotus (Fr.) P. Kumm., 1871",,,,,Pleurotus,bio/Pleurotus,,,,,, +5322,,"Pleurotus ostreatus (Jacq.) P. Kumm., 1871",,shimeji,Agaricus ostreatus,oyster mushroom,Pleurotus ostreatus,bio/PleurotusOstreatus,,bio/Pleurotus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +6115,,,,,,,Metridium,bio/Metridium,,,,,, +6116,,"Priapus senilis Linnaeus, 1761",,frilled sea anemone,"Metridium sp. USNM IZ 1503343, Priapus senilis",brown sea anemone,Metridium senile,bio/MetridiumSenile,,bio/Metridium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6202,,,,,,,Taenia,bio/Taenia,,,,,, +6204,,"Taenia solium Linnaeus, 1758",,pig tapeworm,Cysticercus cellulosae,pork tapeworm,Taenia solium,bio/TaeniaSolium,,bio/Taenia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6220,,,,,,,Cerebratulus,bio/Cerebratulus,,,,,, +6221,,"Meckelia lactea Leidy, 1851",,milky ribbon worm,"Meckelia lactea, Micrura lactea",milky ribbon-worm,Cerebratulus lacteus,bio/CerebratulusLacteus,,bio/Cerebratulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6264,,,,,,,Toxocara,bio/Toxocara,,,,,, +6266,,"Toxocara mystax (Zeder, 1800)",,feline roundworm,Toxocara mystax,cat roundworm,Toxocara cati,bio/ToxocaraCati,,bio/Toxocara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6270,,,,,,,Pseudoterranova,bio/Pseudoterranova,,,,,, +6271,,"Pseudoterranova decipiens (Krabbe, 1878)",,sealworm,Phocanema decipiens,codworm,Pseudoterranova decipiens,bio/PseudoterranovaDecipiens,,bio/Pseudoterranova,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6286,,,,,,,Dirofilaria,bio/Dirofilaria,,,,,, +6287,,"Dirofilaria immitis (Leidy, 1856)",,canine heartworm nematode,Dirofilaria (Dirofilaria) immitis,dog heartworm nematode,Dirofilaria immitis,bio/DirofilariaImmitis,,bio/Dirofilaria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6324,,,,,,pine wood nematodes,Bursaphelenchus,bio/Bursaphelenchus,,,,,, +6326,,"Bursaphelenchus xylophilus (Steiner & Buhrer, 1934) Nickle, 1970",,pinewood nematode,Aphelenchoides xylophilus,pine wood nematode,Bursaphelenchus xylophilus,bio/BursaphelenchusXylophilus,,bio/Bursaphelenchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6343,,,,,,,Arenicola,bio/Arenicola,,,,,, +6344,,"Lumbricus marinus Linnaeus, 1758",,rock worm,Lumbricus marinus,lugworm,Arenicola marina,bio/ArenicolaMarina,,bio/Arenicola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6393,,,,,,,Eisenia ,bio/Eisenia_SegmentedWorms,,,,,, +6396,,"Eisenia fetida (Savigny, 1826)",,tiger worm,"Eiseniella fetida, Eisenia foetida",common brandling worm,Eisenia fetida,bio/EiseniaFetida,,bio/Eisenia_SegmentedWorms,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6452,,,,,,,Haliotis,bio/Haliotis,,,,,, +6454,,"Haliotis rufescens Swainson, 1822",,California red abalone,Haliotis rufenscens,red abalone,Haliotis rufescens,bio/HaliotisRufescens,,bio/Haliotis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6467,,"Tegula Lesson, 1835",,,Chlorostoma,,Tegula,bio/Tegula,,,,,, +6573,,"Pecten yessoensis Jay, 1857",,ezo giant scallop,"Patinopecten yessoensis, Pecten yessoensis, Patiopecten yessoensis",Yesso scallop,Mizuhopecten yessoensis,bio/MizuhopectenYessoensis,,bio/Mizuhopecten,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6582,,,,,,,Spisula,bio/Spisula,,,,,, +6584,,"Mactra solidissima Dillwyn, 1817",,Atlantic surf-clam,Mactra solidissima,Atlantic surf clam,Spisula solidissima,bio/SpisulaSolidissima,,bio/Spisula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6586,,,,,,,Ensis,bio/Ensis,,,,,, +6587,,"Ensis siliqua minor Chenu, 1843",,razor shell,Ensis siliqua minor,minor jackknife clam,Ensis minor,bio/EnsisMinor,,bio/Ensis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6593,,,,,,,Macrocallista,bio/Macrocallista,,,,,, +6594,,"Venus nimbosa Lightfoot, 1786",,sun-ray clam,Venus nimbosa,sunray clam,Macrocallista nimbosa,bio/MacrocallistaNimbosa,,bio/Macrocallista,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6630,,,,,,,Nototodarus,bio/Nototodarus,,,,,, +6687,,"Penaeus monodon Fabricius, 1798",,tiger prawn,"Penaeus bubulus, Penaeus (Penaeus) monodon, Penaeus carinatus, Penaeus durbani",black tiger shrimp,Penaeus monodon,bio/PenaeusMonodon,,bio/Penaeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6689,,"Penaeus vannamei Boone, 1931",,white shrimp,"Penaeus (Litopenaeus) vannamei, Litopenaeus vannamei, Penaeus sp. AT-2008",Pacific white shrimp,Penaeus vannamei,bio/PenaeusVannamei,,bio/Penaeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6714,,,,,,,Astacus,bio/Astacus,,,,,, +6717,,"Astacus leptodactylus Eschscholtz, 1823",,narrow-fingered crayfish,"Pontastacus leptodactylus, Astacus (Pontastacus) leptodactylus, Potamobius leptodactylus",narrow-clawed crayfish,Astacus leptodactylus,bio/AstacusLeptodactylus,,bio/Astacus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6734,,,,,,,Panulirus,bio/Panulirus,,,,,, +6740,,,,,,,Paralithodes,bio/Paralithodes,,,,,, +6741,,"Paralithodes camtschaticus (Tilesius, 1815)",,Kamchatka crab,Maja camtschatica,red king crab,Paralithodes camtschaticus,bio/ParalithodesCamtschaticus,,bio/Paralithodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6758,,,,,,,Carcinus,bio/Carcinus,,,,,, +6759,,"Carcinus maenas (Linnaeus, 1758)",,common shore crab,Cancer maenas,green crab,Carcinus maenas,bio/CarcinusMaenas,,bio/Carcinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6847,,,,,,,Carcinoscorpius,bio/Carcinoscorpius,,,,,, +6848,,"Limulus rotundicauda Latreille, 1802",,mangrove horseshoe crab,"Carcinoscorpius rotundicaudus, Limulus rotundicauda",Southeast Asian horseshoe crab ,Carcinoscorpius rotundicauda,bio/CarcinoscorpiusRotundicauda,,bio/Carcinoscorpius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6851,,,,,,,Tachypleus,bio/Tachypleus,,,,,, +6852,,"Tachypleus gigas (Muller, 1785)",,Chinese horseshoe crab,Limulus gigas,Southeast Asian horseshoe crab ,Tachypleus gigas,bio/TachypleusGigas,,bio/Tachypleus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6923,,,,,,black widows,Latrodectus,bio/Latrodectus,,,,,, +6924,,"Latrodectus mactans Fabricius, 1775",,southern black widow,Lactrodectus schuchii,"black widow ",Latrodectus mactans,bio/LatrodectusMactans,,bio/Latrodectus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6940,,,,,"Rhipicephalus (Boophilus), Fhipicephalus (Boophilus)",,Boophilus,bio/Boophilus,,,,,, +6941,,"Rhipicephalus microplus (Canestrini, 1888)",,cattle tick,"Boophilus microplus, Rhipicephalus (Boophilus) microplus",southern cattle tick,Rhipicephalus microplus,bio/RhipicephalusMicroplus,,bio/Boophilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6944,,,,,,,Ixodes,bio/Ixodes,,,,,, +6945,,"Ixodes scapularis Say, 1821",,shoulder tick,"Ixodes sp. DNAS-303-249710, Ixodes dammini",black-legged tick,Ixodes scapularis,bio/IxodesScapularis,,bio/Ixodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +6968,,,,,,,Sympetrum,bio/Sympetrum,,,,,, +7006,,"Romalea Serville, 1831",,,,,Romalea,bio/Romalea,,,,,, +7007,,"Romalea microptera (Beauvois, 1817)",,southeastern lubber grasshopper,"Romalea reticulatus, Gryllus guttatus Stoll, 1813, Romalea guttata, Romalea micropterum, Acridium micropterum, Dictyophorus guttatus",eastern lubber grasshopper,Romalea microptera,bio/RomaleaMicroptera,,bio/Romalea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7008,,,,,,,Schistocerca,bio/Schistocerca,,,,,, +7011,,"Schistocerca nitens (Thunberg, 1815)",,gray bird locust,Schistocerca vaga,vagrant locust,Schistocerca nitens,bio/SchistocercaNitens,,bio/Schistocerca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7045,,,,,,,Sitophilus,bio/Sitophilus,,,,,, +7051,,"Nipponoluciola cruciata (Motschulsky, 1854)",,genji firefly,Luciola cruciata,Japanese firefly ,Nipponoluciola cruciata,bio/NipponoluciolaCruciata,,bio/Nipponoluciola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7090,,,,,,,Bombyx,bio/Bombyx,,,,,, +7091,,"Phalaena mori Linnaeus, 1758",,silkworm,Phalaena mori,domestic silkworm,Bombyx mori,bio/BombyxMori,,bio/Bombyx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7097,,,,,,tent caterpillars,Malacosoma,bio/Malacosoma,,,,,, +7098,,"Phalaena neustria Linnaeus, 1758",,common lackey,Phalaena neustria,lackey moth,Malacosoma neustria,bio/MalacosomaNeustria,,bio/Malacosoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7112,,,,,,,Helicoverpa,bio/Helicoverpa,,,,,, +7113,,"Phalaena zea Boddie, 1850",,tomato fruitworm,"Heliothis zea, Phalaena zea",corn earworm,Helicoverpa zea,bio/HelicoverpaZea,,bio/Helicoverpa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7115,,,,,"Sinopieris, Artogeia",,Pieris ,bio/Pieris_Butterflies,,,,,, +7116,,"Pieris brassicae (Linnaeus, 1758)",,white butterfly,Papilio brassicae,large cabbage white,Pieris brassicae,bio/PierisBrassicae,,bio/Pieris_Butterflies,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7118,,,,,,,Antheraea,bio/Antheraea,,,,,, +7119,,"Bombyx pernyi Guenerin-Meneville, 1855",,oak silkmoth,Bombyx pernyi,Chinese oak silkmoth,Antheraea pernyi,bio/AntheraeaPernyi,,bio/Antheraea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7126,,,,,Philosamia,,Samia,bio/Samia,,,,,, +7127,,"Samia cynthia (Drury, 1773)",,cynthia moth,"Philosamia cynthia, Phalaena cynthia",ailanthus silkmoth,Samia cynthia,bio/SamiaCynthia,,bio/Samia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7129,,"Manduca Hubner, 1807",,,,,Manduca,bio/Manduca,,,,,, +7130,,"Sphinx sexta Linnaeus, 1763",,tomato hornworm,Sphinx sexta,tobacco hornworm,Manduca sexta,bio/ManducaSexta,,bio/Manduca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7140,,"Choristoneura Lederer, 1859",,,Hoshinoa,,Choristoneura,bio/Choristoneura,,,,,, +7141,,"Tortrix fumiferana Clemens, 1865",,spruce budworm,Tortrix fumiferana,eastern spruce budworm,Choristoneura fumiferana,bio/ChoristoneuraFumiferana,,bio/Choristoneura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7145,,,,,,,Papilio,bio/Papilio,,,,,, +7160,,"Aedes albopictus (Skuse, 1894)",,forest day mosquito,Stegomyia albopicta,Asian tiger mosquito,Aedes albopictus,bio/AedesAlbopictus,,bio/Stegomyia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7175,,"Culex pipiens Linnaeus, 1758",,common house mosquito,"Culex thoracicus, Culex doliorum, Culex agilis, Culex torridus, Culex azoriensis, Culex comitatus, Culex varioannulatus, Culex disjunctus, Culex melanorhinus, Culex pallipes, Culex meridionalis, Culex calloti, Culex calcitrans, Culex rufus, Culex sternopunctatus, Culex fasciatus, Culex marginalis, Culex dipseticus, Culex domesticus, Culex unistriatus, Culex longefurcatus, Culex bifurcatus, Culex consobrinus, Culex luteus, Culex osakaensis, Culex autogenicus, Culex erectus, Culex bicolor, Culex phytophagus, Culex quasimodestus, Culex rufinus, Culex trifurcatus, Culex haematophagus",northern house mosquito ,Culex pipiens,bio/CulexPipiens,,bio/CulexPipiensComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7374,,,,,"Bufolucilia, Phaenicia",,Lucilia ,bio/Lucilia_Flies,,,,,, +7443,,,,,,,Vespa,bio/Vespa,,,,,, +7448,,"Vespa simillima xanthoptera Cameron, 1903",,Japanese hornet,Vespa xanthoptera,Japanese yellow hornet,Vespa simillima xanthoptera,bio/VespaSimillimaXanthoptera,,bio/VespaSimillima,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True, +7459,,,,,,,Apis,bio/Apis,,,,,, +7460,,"Apis mellifera Linnaeus, 1758",,Western honey bee,Apis mellifica,honey bee,Apis mellifera,bio/ApisMellifera,,bio/Apis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7461,,"Apis cerana Fabricius, 1793",,oriental honeybee,Apis mellifera cerana,Asiatic honeybee,Apis cerana,bio/ApisCerana,,bio/Apis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7462,,"Apis dorsata Fabricius, 1793",,rock honeybee,Apis mellifera dorsata,giant honeybee,Apis dorsata,bio/ApisDorsata,,bio/Apis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7463,,"Apis florea Fabricius, 1787",,dwarf honeybee,Apis mellifera florea,little honeybee,Apis florea,bio/ApisFlorea,,bio/Apis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7506,,,,,,,Mantis,bio/Mantis,,,,,, +7507,,"Gryllus religiosus Linnaeus, 1758",,European mantid,Gryllus religiosus,praying mantis,Mantis religiosa,bio/MantisReligiosa,,bio/Mantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7610,,,,,,,Pisaster,bio/Pisaster,,,,,, +7612,,"Pisaster ochraceus (Brandt, 1835)",,ochre sea star,Asterias ochracea,purple sea star,Pisaster ochraceus,bio/PisasterOchraceus,,bio/Pisaster,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7659,,,,,,,Psammechinus,bio/Psammechinus,,,,,, +7660,,"Psammechinus miliaris (Muller, 1771)",,sand sea urchin,Echinus miliaris,sand urchin,Psammechinus miliaris,bio/PsammechinusMiliaris,,bio/Psammechinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7691,,,,,,,Stichopus,bio/Stichopus,,,,,, +7718,,,,,,,Ciona,bio/Ciona,,,,,, +7719,,"Ciona intestinalis (Linnaeus, 1767)",,yellow sea squirt,Ascidia intestinalis,vase tunicate,Ciona intestinalis,bio/CionaIntestinalis,,bio/Ciona,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7754,,,,,,,Mordacia,bio/Mordacia,,,,,, +7755,,"Petromyzon mordax Richardson, 1846",,southern hemisphere lamprey,Petromyzon mordax,southern lamprey,Mordacia mordax,bio/MordaciaMordax,,bio/Mordacia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7763,,,,,Paramyxine,,Eptatretus,bio/Eptatretus,,,,,, +7765,,"Eptatretus stoutii (Lockington, 1878)",,California hagfish,"Bdellostoma stoutii, Eptatretus stouti",Pacific hagfish,Eptatretus stoutii,bio/EptatretusStoutii,,bio/Eptatretus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7786,,,,,,,Torpedo,bio/Torpedo,,,,,, +7806,,,,,,gray sharks,Carcharhinus,bio/Carcharhinus,,,,,, +7822,,,,,,hammerheads,Sphyrna,bio/Sphyrna,,,,,, +7827,,,,,,,Poroderma,bio/Poroderma,,,,,, +7833,,,,,,,Echinorhinus,bio/Echinorhinus,,,,,, +7851,,,,,,,Alopias,bio/Alopias,,,,,, +7852,,"Squalus vulpinus Bonnaterre, 1788",,whip-tail shark,Squalus vulpinus,thresher shark,Alopias vulpinus,bio/AlopiasVulpinus,,bio/Alopias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7856,,,,,Notorhynchus,,Notorynchus,bio/Notorynchus,,,,,, +7857,,"Notorynchus maculatus Ayres, 1855",,bluntnose sevengill shark,"Squalus cepedianus, Notorynchus maculatus, Heptranchias cepedianus, Notorhynchus maculatus, Notorhynchus cepedianus",broadnose sevengill shark,Notorynchus cepedianus,bio/NotorynchusCepedianus,,bio/Notorynchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7861,,,,,,,Rhinobatos,bio/Rhinobatos,,,,,, +7872,,,,,,,Hydrolagus,bio/Hydrolagus,,,,,, +7873,,"Hydrolagus colliei (Lay & Bennett, 1839)",,Pacific ratfish,Chimaera colliei,spotted ratfish,Hydrolagus colliei,bio/HydrolagusColliei,,bio/Hydrolagus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7901,,,,,,,Acipenser,bio/Acipenser,,,,,, +7902,,"Acipenser gueldenstaedtii Brandt & Ratzeburg, 1833",,osietra,"Acipenser guldenstadti, Acipenser gueldenstaedti",Russian sturgeon,Acipenser gueldenstaedtii,bio/AcipenserGueldenstaedtii,,bio/Acipenser,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7912,,,,,,,Polyodon,bio/Polyodon,,,,,, +7913,,"Squalus spathula Walbaum, 1792",,North American paddlefish,Squalus spathula,Mississippi paddlefish,Polyodon spathula,bio/PolyodonSpathula,,bio/Polyodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7916,,,,,,,Lepisosteus,bio/Lepisosteus,,,,,, +7935,,,,,,,Anguilla,bio/Anguilla,,,,,, +7936,,"Muraena anguilla Linnaeus, 1758",,European freshwater eel,"Anguilla anguilla anguilla, Muraena anguilla, Angill angill",European eel,Anguilla anguilla,bio/AnguillaAnguilla,,bio/Anguilla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7942,,,,,,,Conger,bio/Conger,,,,,, +7943,,"Conger myriaster (Brevoort, 1856)",,conger eel,"Astroconger myriaster, Anguilla myriaster",whitespotted conger,Conger myriaster,bio/CongerMyriaster,,bio/Conger,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7945,,,,,,,Muraenesox,bio/Muraenesox,,,,,, +7946,,"Muraena cinerea Forsskal, 1775",,pike eel,Muraena cinerea,daggertooth pike conger,Muraenesox cinereus,bio/MuraenesoxCinereus,,bio/Muraenesox,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7954,,,,,"Brachydanio, Celestichthys",,Danio,bio/Danio,,,,,, +7955,,"Danio rerio (Hamilton, 1822)",,zebra fish,"Brachydanio rerio frankei, Brachydanio rerio, Cyprinus rerio, Danio frankei, Danio rerio frankei",zebrafish,Danio rerio,bio/DanioRerio,,bio/Danio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7956,,,,,,,Carassius,bio/Carassius,,,,,, +7963,,,,,Aristichthys,,Hypophthalmichthys,bio/Hypophthalmichthys,,,,,, +7965,,"Leuciscus nobilis Richardson, 1845",,silver carp,"Leuciscus nobilis, Aristichthys nobilis",bighead carp,Hypophthalmichthys nobilis,bio/HypophthalmichthysNobilis,,bio/Hypophthalmichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7972,,,,,,,Ictiobus,bio/Ictiobus,,,,,, +7973,,"Ictiobus bubalus (Rafinesque, 1818)",,smallmouth buffalo fish,Catostomus bubalus,smallmouth buffalo,Ictiobus bubalus,bio/IctiobusBubalus,,bio/Ictiobus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +7983,,,,,,,Misgurnus,bio/Misgurnus,,,,,, +7993,,,,,,,Astyanax,bio/Astyanax,,,,,, +7994,,"Tetragonopterus mexicanus De Filippi, 1853",,blind cave fish,Tetragonopterus mexicanus,Mexican tetra,Astyanax mexicanus,bio/AstyanaxMexicanus,,bio/Astyanax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8000,,,,,,,Pangasius,bio/Pangasius,,,,,, +8001,,"Pimelodus pangasius Hamilton, 1822",,Pangas catfish,Pimelodus pangasius,yellowtail catfish,Pangasius pangasius,bio/PangasiusPangasius,,bio/Pangasius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8004,,,,,,,Electrophorus,bio/Electrophorus,,,,,, +8005,,"Gymnotus electricus Linnaeus, 1766",,electric knifefish,Gymnotus electricus,electric eel,Electrophorus electricus,bio/ElectrophorusElectricus,,bio/Electrophorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8016,,,,,Parasalmo,,Oncorhynchus,bio/Oncorhynchus,,,,,, +8017,,"Salmo gorbuscha Walbaum, 1792",,humpback salmon,Salmo gorbuscha,pink salmon,Oncorhynchus gorbuscha,bio/OncorhynchusGorbuscha,,bio/Oncorhynchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8020,,"Salmo masou Brevoort, 1856",,salmon trout,Salmo masou,cherry salmon ,Oncorhynchus masou,bio/OncorhynchusMasou,,bio/Oncorhynchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8028,,,,,"Salmothymus, Acantholingua",,Salmo,bio/Salmo,,,,,, +8033,,,,,,,Salvelinus,bio/Salvelinus,,,,,, +8034,,"Salvelinus leucomaenis (Pallas, 1814)",,amemasu char,Salmo leucomaenis,whitespotted char,Salvelinus leucomaenis,bio/SalvelinusLeucomaenis,,bio/Salvelinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8048,,,,,Theragra,,Gadus,bio/Gadus,,,,,, +8059,,,,,,,Pollachius,bio/Pollachius,,,,,, +8060,,"Pollachius virens (Linnaeus, 1758)",,pollock,"Gadus virens, Merlangus virens",saithe,Pollachius virens,bio/PollachiusVirens,,bio/Pollachius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8062,,,,,,,Merluccius,bio/Merluccius,,,,,, +8063,,"Merluccius merluccius (Linnaeus, 1758)",,seapike,Gadus merluccius,European hake ,Merluccius merluccius,bio/MerlucciusMerluccius,,bio/Merluccius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8077,,,,,,,Fundulus,bio/Fundulus,,,,,, +8078,,"Fundulus heteroclitus (Linnaeus, 1766)",,killifish,Cobitis heteroclita,mummichog,Fundulus heteroclitus,bio/FundulusHeteroclitus,,bio/Fundulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8089,,,,,Xenopoecilus,,Oryzias,bio/Oryzias,,,,,, +8090,,"Poecilia latipes Temminck & Schlegel, 1846",,medaka,Poecilia latipes,Japanese medaka,Oryzias latipes,bio/OryziasLatipes,,bio/Oryzias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8095,,"Myoxocephalus Tilesius, 1811",,,Triglopsis,,Myoxocephalus,bio/Myoxocephalus,,,,,, +8096,,"Myoxocephalus aenaeus (Mitchill, 1814)",,grubby,Cottus aenaeus,grubby sculpin,Myoxocephalus aenaeus,bio/MyoxocephalusAenaeus,,bio/Myoxocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8097,,"Myoxocephalus scorpius (Linnaeus, 1758)",,short spined sea scorpion,Cottus scorpius,shorthorn sculpin,Myoxocephalus scorpius,bio/MyoxocephalusScorpius,,bio/Myoxocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8127,,"Oreochromis mossambicus (Peters, 1852)",,Mozambique cichlid,"Chromis (Tilapia) mossambicus, Tilapia mossambica, Sarotherodon mossambicus, Chromis mossambicus",Mozambique tilapia,Oreochromis mossambicus,bio/OreochromisMossambicus,,bio/Oreochromis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8139,,,,,Nyasalapia,,Oreochromis,bio/Oreochromis,,,,,, +8158,,,,,,,Caranx,bio/Caranx,,,,,, +8172,,,,,"Chrysophrys, Pagrosomus",,Pagrus,bio/Pagrus,,,,,, +8173,,"Sparus pagrus Linnaeus, 1758",,red porgy,"Sparus pagrus, Pagrus vulgaris",common seabream,Pagrus pagrus,bio/PagrusPagrus,,bio/Pagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8174,,"Sparus Linnaeus, 1758",,,Aurata,,Sparus,bio/Sparus,,,,,, +8175,,"Sparus auratus Houttuyn, 1782",,silver seabream,"Sparus auratus, Aurata aurata",gilthead seabream,Sparus aurata,bio/SparusAurata,,bio/Sparus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8176,,,,,,,Acanthopagrus,bio/Acanthopagrus,,,,,, +8186,,,,,,,Lates,bio/Lates,,,,,, +8187,,"Lates calcarifer (Bloch, 1790)",,barramundi,Holocentrus calcarifer,barramundi perch,Lates calcarifer,bio/LatesCalcarifer,,bio/Lates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8190,,,,,,,Mugil,bio/Mugil,,,,,, +8196,,,,,,,Lycodes,bio/Lycodes,,,,,, +8197,,"Lycodes polaris (Sabine, 1824)",,Canadian eel pout,Blennius polaris,Canadian eelpout,Lycodes polaris,bio/LycodesPolaris,,bio/Lycodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8199,,"Zoarces americanus (Bloch & Schneider, 1801)",,poodler,"Blennius americanus, Macrozoarces americanus",ocean pout,Zoarces americanus,bio/ZoarcesAmericanus,,bio/Zoarces,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8203,,,,,,,Anarhichas,bio/Anarhichas,,,,,, +8204,,"Anarhichas lupus Linnaeus, 1758",,wolf-fish,Anarhichas orientalis lupus,Atlantic wolffish,Anarhichas lupus,bio/AnarhichasLupus,,bio/Anarhichas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8207,,,,,,,Notothenia,bio/Notothenia,,,,,, +8225,,,,,,,Euthynnus,bio/Euthynnus,,,,,, +8226,,"Scomber pelamis Linnaeus, 1758",,bonito,"Scomber pelamis, Euthynnus pelamis",skipjack tuna,Katsuwonus pelamis,bio/KatsuwonusPelamis,,bio/Katsuwonus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8227,,"Thynnus affinis Cantor, 1849",,kawakawa,Thynnus affinis,eastern little tuna,Euthynnus affinis,bio/EuthynnusAffinis,,bio/Euthynnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8234,,,,,,,Thunnus,bio/Thunnus,,,,,, +8237,,"Thunnus thynnus (Linnaeus, 1758)",,northern bluefin tuna,Scomber thynnus,Atlantic bluefin tuna,Thunnus thynnus,bio/ThunnusThynnus,,bio/Thunnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8238,,"Thynnus orientalis Temminck & Schlegel, 1844",,North Pacific bluefin tuna,"Thunnus orientalis orientalis, Thynnus orientalis, Thunnus thynnus orientalis",Pacific bluefin tuna,Thunnus orientalis,bio/ThunnusOrientalis,,bio/Thunnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8254,,,,,,,Paralichthys,bio/Paralichthys,,,,,, +8255,,"Paralichthys olivaceus (Temminck & Schlegel, 1846)",,olive flounder,"Paralichthyidae sp. KYJ-2011, Hippoglossus olivaceus",Japanese flounder,Paralichthys olivaceus,bio/ParalichthysOlivaceus,,bio/Paralichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8257,,,,,,,Limanda,bio/Limanda,,,,,, +8283,,,,,Aspius,,Leuciscus,bio/Leuciscus,,,,,, +8284,,"Leuciscus cephalus (Linnaeus, 1758)",,chub,"Cyprinus cephalus, Leuciscus cephalus",European chub,Squalius cephalus,bio/SqualiusCephalus,,bio/Squalius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8285,,,,,,,Pardachirus,bio/Pardachirus,,,,,, +8286,,"Pardachirus pavoninus (Lacepede, 1802)",,peacock sole,Achirus pavoninus,Pacific sole,Pardachirus pavoninus,bio/PardachirusPavoninus,,bio/Pardachirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8295,,,,big salamanders,,mole salamanders ,Ambystoma,bio/Ambystoma,,,,,, +8305,,"Salamandra tigrina Green, 1825",,Eastern tiger salamander,"Salamandra tigrina, Ambystoma tigrinum tigrinum",tiger salamander,Ambystoma tigrinum,bio/AmbystomaTigrinum,,bio/Ambystoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8311,,,,,,,Amphiuma,bio/Amphiuma,,,,,, +8313,,"Amphiuma tridactylum Cuvier, 1827",,three-toed amphiuma,"Muraenopsis tridactyla, Amphiuma means tridactylum",three-toed salamander,Amphiuma tridactylum,bio/AmphiumaTridactylum,,bio/Amphiuma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8315,,,,,,,Notophthalmus,bio/Notophthalmus,,,,,, +8316,,"Triturus viridescens Rafinesque, 1820",,red-spotted newt,Triturus viridescens,eastern newt,Notophthalmus viridescens,bio/NotophthalmusViridescens,,bio/Notophthalmus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8317,,,,,,,Pleurodeles,bio/Pleurodeles,,,,,, +8319,,"Pleurodeles waltl Michahelles, 1830",,Spanish ribbed newt,Pleurodeles waltlii,Iberian ribbed newt,Pleurodeles waltl,bio/PleurodelesWaltl,,bio/Pleurodeles,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8320,,,,roughskin newts,,Pacific newts,Taricha,bio/Taricha,,,,,, +8321,,"Salamandra granulosa Skilton, 1849",,roughskin newt,Salamandra granulosa,rough-skinned newt,Taricha granulosa,bio/TarichaGranulosa,,bio/Taricha,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8322,,,,,,,Triturus,bio/Triturus,,,,,, +8323,,"Triton cristatus Laurenti, 1768",,great crested newt,Triton cristatus,warty newt,Triturus cristatus,bio/TriturusCristatus,,bio/Triturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8324,,"Lissotriton vulgaris (Linnaeus, 1758)",,smooth newt,"Triturus vulgaris, Lacerta vulgaris",common newt,Lissotriton vulgaris,bio/LissotritonVulgaris,,bio/Lissotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8325,,"Triturus karelinii (Strauch, 1870)",,southern crested newt,"Triton karelinii, Triturus karelini",Balkan newt,Triturus karelinii,bio/TriturusKarelinii,,bio/Triturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8326,,"Triton carnifex Laurenti, 1768",,Italian newt,Triton carnifex,Italian crested newt,Triturus carnifex,bio/TriturusCarnifex,,bio/Triturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8329,,,,,,firebelly newts,Cynops,bio/Cynops,,,,,, +8330,,"Molge pyrrhogaster Boie, 1826",,Japanese common newt,"Molge pyrrhogaster, Triturus pyrrhogaster",Japanese firebelly newt,Cynops pyrrhogaster,bio/CynopsPyrrhogaster,,bio/Cynops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8335,,,,slimy salamanders,,woodland salamanders,Plethodon,bio/Plethodon,,,,,, +8341,,"Siren intermedia Barnes, 1826",,dwarf siren,,lesser siren,Siren intermedia,bio/SirenIntermedia,,,,,, +8344,,,,firebelly toads,,firebellied toads,Bombina,bio/Bombina,,,,,, +8350,,,,,,,Discoglossus,bio/Discoglossus,,,,,, +8354,,"Xenopus borealis Parker, 1936",,Marasbit clawed frog,Xenopus laevis borealis,Kenyan clawed frog,Xenopus borealis,bio/XenopusBorealis,,bio/Xenopus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8355,,"Xenopus laevis (Daudin, 1802)",,platanna,Bufo laevis,African clawed frog,Xenopus laevis,bio/XenopusLaevis,,bio/Xenopus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8361,,,,,,,Hymenochirus,bio/Hymenochirus,,,,,, +8363,,,,,Xenopus tropicalis group,,Silurana,bio/Silurana,,,,,, +8364,,"Xenopus tropicalis (Gray, 1864)",,western clawed frog,"Xenopus (Silurana) tropicalis, Silurana tropicalis, Xenopus laevis tropicalis",tropical clawed frog,Xenopus tropicalis,bio/XenopusTropicalis,,bio/Silurana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8366,,,,,,,Uperoleia,bio/Uperoleia,,,,,, +8368,,"Uperoleia rugosa (Andersson, 1916)",,red-groined toadlet,"Pseudophryne rugosa, Prohartia rugosa, Uperoleia marmorata rugosa",wrinkled toadlet,Uperoleia rugosa,bio/UperoleiaRugosa,,bio/Uperoleia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8370,,,,,,,Litoria,bio/Litoria,,,,,, +8371,,"Ranoidea aurea (Lesson, 1829)",,Australian frog,Rana aurea,green and golden bell frog,Ranoidea aurea,bio/RanoideaAurea,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8373,,,,,,,Crinia,bio/Crinia,,,,,, +8377,,,,,,dwarf frogs,Physalaemus,bio/Physalaemus,,,,,, +8383,,,,,Torrentophryne,,Bufo,bio/Bufo,,,,,, +8384,,"Rana bufo Linnaeus, 1758",,European toad,Rana bufo,common toad,Bufo bufo,bio/BufoBufo,,bio/Bufo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8386,,"Rhinella marina (Linnaeus, 1758)",,giant toad,"Bufo marinus, Rana marina, Chaunus marinus",marine toad,Rhinella marina,bio/RhinellaMarina,,bio/Rhinella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8387,,"Bufo japonicus Temminck & Schlegel, 1838",,Japanese common toad,"Bufo bufo japonicus, Bufo japonica, Bufo bufo japonica",Japanese toad,Bufo japonicus,bio/BufoJaponicus,,bio/Bufo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8388,,"Incilius valliceps (Wiegmann, 1833)",,Southern Gulf Coast frog,"Bufo valliceps, Ollotis valliceps, Cranopsis valliceps",Gulf coast toad,Incilius valliceps,bio/InciliusValliceps,,bio/Incilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8392,,,,,,leaf frogs ,Phyllomedusa,bio/Phyllomedusa,,,,,, +8395,,"Phyllomedusa sauvagii Boulenger, 1882",,Sauvage's leaf frog,"Phyllomedusa sauvagei, Phyllomedusa sp. PMP-2003",painted-belly leaf frog,Phyllomedusa sauvagii,bio/PhyllomedusaSauvagii,,bio/Phyllomedusa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8400,,"Rana catesbiana (Shaw, 1802)",,bullfrogs,"Lithobates catesbeianus, Rana catesbeiana",American bullfrog,Aquarana catesbeiana,bio/AquaranaCatesbeiana,,bio/Aquarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8403,,"Rana perezi Lopez-Seoane, 1885",,Western Mediterranian green frog,Rana perezi,Iberian green frog,Pelophylax perezi,bio/PelophylaxPerezi,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8406,,"Rana ridibundus Pallas, 1771",,laughing frog,"Rana ridibunda, Hylarana ridibunda, Rana ridibundus",marsh frog ,Pelophylax ridibundus,bio/PelophylaxRidibundus,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8409,,"Rana nigromaculata Hallowell, 1861",,three-striped pond frog,"Rana nigromaculata, Rana (Pelophylax) nigromaculata, Hylarana nigromaculata",dark-spotted frog,Pelophylax nigromaculatus,bio/PelophylaxNigromaculatus,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8410,,"Rugosa rugosa (Temminck & Schlegel, 1838)",,wrinkled frog,"Rugosa rugosa, Rana rugosa",Japanese wrinkled frog,Glandirana rugosa,bio/GlandiranaRugosa,,bio/Glandirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8419,,,,,,marsupial frogs,Gastrotheca,bio/Gastrotheca,,,,,, +8420,,"Hyla riobambae Fowler, 1913",,Riobamba pouched frog,Hyla riobambae,Riobamba marsupial frog,Gastrotheca riobambae,bio/GastrothecaRiobambae,,bio/Gastrotheca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8421,,,,true tree toads,,common treefrogs,Hyla,bio/Hyla,,,,,, +8425,,"Sooglossus thomasseti (Boulenger, 1909)",,Thomasset's frog,Nesomantis thomasseti,Thomasset's Seychelles frog,Sooglossus thomasseti,bio/SooglossusThomasseti,,bio/Sooglossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8428,,,,,,,Gastrophryne,bio/Gastrophryne,,,,,, +8438,,,,,,,Ascaphus,bio/Ascaphus,,,,,, +8439,,"Ascaphus truei Stejneger, 1899",,American bell toad,"Ascaphus truei truei, Ascaphus truei californicus",tailed frog,Ascaphus truei,bio/AscaphusTruei,,bio/Ascaphus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8442,,,,,,,Alytes,bio/Alytes,,,,,, +8443,,"Bufo obstetricans Laurenti, 1768",,olive midwife toad,Bufo obstetricans,midwife toad,Alytes obstetricans,bio/AlytesObstetricans,,bio/Alytes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8459,,Testudines Batsch 1788,turtles,anapsid reptiles,"reptiles, turtles, Reptilia, Anapsida",turtles ,Testudines,bio/Testudines,,bio/Testudinata,dcs:BiologicalTaxonomicRankOrder,dcs:BiologicalTaxonomicDivisionVertebrates,True, +8466,,"Caretta Rafinesque, 1814",,,,,Caretta,bio/Caretta,,,,,, +8467,,"Testudo caretta Linnaeus, 1758",,red sea turtle,Testudo caretta,Loggerhead turtle,Caretta caretta,bio/CarettaCaretta,,bio/Caretta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8468,,,,,,,Chelonia,bio/Chelonia,,,,,, +8469,,"Testudo mydas Linnaeus, 1758",,green seaturtle,"Testudo mydas, Chelonia mydas caranigra, Chelonia midas",Green sea turtle,Chelonia mydas,bio/CheloniaMydas,,bio/Chelonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8471,,,,,,,Lepidochelys,bio/Lepidochelys,,,,,, +8472,,"Thalassochelys kempii Garman, 1880",,Kemp's ridley sea turtle,"Lepidochelys kempi, Thalassochelys kempii",Atlantic ridley,Lepidochelys kempii,bio/LepidochelysKempii,,bio/Lepidochelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8474,,Chelydra Schweigger 1812,,,,,Chelydra,bio/Chelydra,,,,,, +8475,,"Testudo serpentina Linnaeus, 1758",,snapping turtle,"Testudo serpentina, Chelydra serpentina serpentina",Common snapping turtle,Chelydra serpentina,bio/ChelydraSerpentina,,bio/Chelydra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8484,,"Malaclemys Gray, 1844",,,,,Malaclemys,bio/Malaclemys,,,,,, +8485,,"Testudo terrapin Schoepff, 1793",,terrapin,Testudo terrapin,diamondback terrapin,Malaclemys terrapin,bio/MalaclemysTerrapin,,bio/Malaclemys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8497,,,,,,,Caiman,bio/Caiman,,,,,, +8499,,"Lacerta crocodilus Linnaeus, 1758",,common caiman,"Lacerta crocodilus, Caiman sclerops",spectacled caiman,Caiman crocodilus,bio/CaimanCrocodilus,,bio/Caiman,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8500,,,,,,,Crocodylus,bio/Crocodylus,,,,,, +8507,,,,,,,Sphenodon,bio/Sphenodon,,,,,, +8508,,"Sphenodon punctatus (Gray, 1842)",,hatteria,Hatteria punctata,tuatara,Sphenodon punctatus,bio/SphenodonPunctatus,,bio/Sphenodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8516,,,,,,,Iguana,bio/Iguana,,,,,, +8517,,"Lacerta igvana Linnaeus, 1758",,common iguana,"Iguana rhinolopha, Iguana rhinolophus, Lacerta igvana",Common green iguana,Iguana iguana,bio/IguanaIguana,,bio/Iguana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8518,,,,,,,Sceloporus,bio/Sceloporus,,,,,, +8523,,,,,,,Lacerta,bio/Lacerta,,,,,, +8556,,,,,,,Varanus,bio/Varanus,,,,,, +8558,,"Varanus exanthematicus albigularis Schmidt, 1919",,cape monitor,Varanus exanthematicus albigularis,White-throated monitor,Varanus albigularis,bio/VaranusAlbigularis,,bio/Varanus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8568,,"Tarentola Gray, 1825",,,,,Tarentola,bio/Tarentola,,,,,, +8569,,"Tarentola mauritanica Linnaeus, 1748",,common wall gecko,"Lacerta mauritanica, Platydactylus mauritanicus",Moorish gecko,Tarentola mauritanica,bio/TarentolaMauritanica,,bio/Tarentola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8579,,,,,,,Elaphe,bio/Elaphe,,,,,, +8583,,,,,,,Natrix,bio/Natrix,,,,,, +8584,,"Natrix tessellata (Laurenti, 1768)",,dice snake,"Coronella tessellata, Tropidonotus tessellatus",checkered water snake,Natrix tessellata,bio/NatrixTessellata,,bio/Natrix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8604,,,,,,,Acanthophis,bio/Acanthophis,,,,,, +8605,,"Boa antarctica Shaw & Nodder, 1802",,common death adder,Boa antarctica,death adder,Acanthophis antarcticus,bio/AcanthophisAntarcticus,,bio/Acanthophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8627,,,,,,,Laticauda,bio/Laticauda,,,,,, +8630,,"Coluber laticaudatus Linnaeus, 1758",,black-banded sea krait,Coluber laticaudatus,blue-ringed sea krait,Laticauda laticaudata,bio/LaticaudaLaticaudata,,bio/Laticauda,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8631,,"Platurus semifasciatus Reinwardt, 1837",,Erabu sea snake,Platurus semifasciatus,broad-banded blue sea krait,Laticauda semifasciata,bio/LaticaudaSemifasciata,,bio/Laticauda,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8633,,"Elaps bivirgatus Boie, 1827",,long-glanded coral snake,"Elaps bivirgatus, Bioliophis bivirgatus, Maticora bivirgata",Blue Malaysian coral snake,Calliophis bivirgatus,bio/CalliophisBivirgatus,,bio/Calliophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8634,,,,,,coral snakes,Micrurus,bio/Micrurus,,,,,, +8635,,"Elaps nigrocinctus Girard, 1854",,gargantilla,Elaps nigrocinctus,black-banded coral snake,Micrurus nigrocinctus,bio/MicrurusNigrocinctus,,bio/Micrurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8637,,"Coluber fulvius Linnaeus, 1766",,harlequin coralsnake,"Micrurus fulvius fulvius, Elaps fulvius, Coluber fulvius",eastern coral snake,Micrurus fulvius,bio/MicrurusFulvius,,bio/Micrurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8638,,,,,,,Naja,bio/Naja,,,,,, +8656,,"Naja atra Cantor, 1842",,Taiwan cobra,"Naja naja atra, Naja atra atra",Chinese cobra,Naja atra,bio/NajaAtra,,bio/Naja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8657,,"Tomyris oxiana Eichwald, 1831",,Oxus cobra,"Naja naja oxiana, Tomyris oxiana",Central Asian cobra,Naja oxiana,bio/NajaOxiana,,bio/Naja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8661,,,,,,,Notechis,bio/Notechis,,,,,, +8663,,"Notechis scutatus (Peters, 1861)",,common tiger snake,Naja scutata,mainland tiger snake,Notechis scutatus,bio/NotechisScutatus,,bio/Notechis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8669,,,,,,,Pseudechis,bio/Pseudechis,,,,,, +8670,,"Naja australis Gray, 1842",,king brown snake,Naja australis,mulga snake,Pseudechis australis,bio/PseudechisAustralis,,bio/Pseudechis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8682,,"Hydrophis schistosus Daudin, 1803",,common sea snake,"Enhydrina schistosa, Hydrophis schistosa",beaked sea snake,Hydrophis schistosus,bio/HydrophisSchistosus,,bio/Hydrophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8683,,"Hydrophis Latreille, 1801",,,"Lapemis, Disteira, Leioselasma, Polyodontognathus, Praescutata, Enhydrina, Kerilia, Chitulia",,Hydrophis,bio/Hydrophis,,,,,, +8688,,"Anguis platura Linnaeus, 1766",,yellow-bellied sea snake,"Anguis platura, Pelamis platura, Pelamis platurus",pelagic sea snake,Hydrophis platurus,bio/HydrophisPlaturus,,bio/Hydrophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8691,,,,,,,Bitis,bio/Bitis,,,,,, +8693,,"Vipera caudalis Smith, 1839",,horned adder,Vipera caudalis,horned viper,Bitis caudalis,bio/BitisCaudalis,,bio/Bitis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8695,,"Coluber nasicornis Shaw & Nodder, 1792",,rhinoceros adder,Coluber nasicornis,rhinoceros viper,Bitis nasicornis,bio/BitisNasicornis,,bio/Bitis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8703,,,,,,,Vipera,bio/Vipera,,,,,, +8714,,"Gloydius halys (Pallas, 1776)",,Siberian pit viper,"Agkistrodon sp., Gloydius halys pallas, Agkistrodon halys, Coluber halys, Agkistrodon halys pallas",Halys viper,Gloydius halys,bio/GloydiusHalys,,bio/Gloydius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8721,,,,,Bothriopsis,,Bothrops,bio/Bothrops,,,,,, +8723,,"Lachesis insularis Amaral, 1921",,Queimada jararaca,Lachesis insularis,golden lancehead,Bothrops insularis,bio/BothropsInsularis,,bio/Bothrops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8725,,"Coluber atrox Linnaeus, 1758",,fer-de-lance,"Bothrops colombiensis, Coluber atrox, Trimeresurus atrox",barba amarilla,Bothrops atrox,bio/BothropsAtrox,,bio/Bothrops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8731,,"Crotalus durissus Linnaeus, 1758",,cascabel,,tropical rattlesnake ,Crotalus durissus,bio/CrotalusDurissus,,,,,, +8732,,"Crotalus durissus terrificus (Laurenti, 1768)",,South American rattlesnake,"Crotalus terrificus, Caudisona terrifica",tropical rattlesnake ,Crotalus durissus terrificus,bio/CrotalusDurissusTerrificus,,bio/CrotalusDurissus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +8764,,Sinovipera Guo & Wang 2011,,,"Sinovipera, Viridovipera, Cryptelytrops",,Trimeresurus,bio/Trimeresurus,,,,,, +8765,,"Trimeresurus albolabris Gray, 1842",,white-lipped pit viper,Cryptelytrops albolabris,white-lipped tree viper,Trimeresurus albolabris,bio/TrimeresurusAlbolabris,,bio/Trimeresurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8767,,"Trimeresurus gramineus (Shaw, 1802)",,green habu snake,"Trimeresurus gramineus, Coluber graminaeus",Indian green tree viper,Craspedocephalus gramineus,bio/CraspedocephalusGramineus,,bio/Craspedocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8769,,"Trimeresurus okinavensis Boulenger, 1892",,hime-habu,Trimeresurus okinavensis,himehabu,Ovophis okinavensis,bio/OvophisOkinavensis,,bio/Ovophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8786,,"Casuarius Brisson, 1760",,,,,Casuarius,bio/Casuarius,,,,,, +8787,,"Struthio casuarius Linnaeus, 1758",,double-wattled cassowary,Struthio casuarius,southern cassowary,Casuarius casuarius,bio/CasuariusCasuarius,,bio/Casuarius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8796,,,,,,,Rhea,bio/Rhea,,,,,, +8797,,"Struthio americanus Linnaeus, 1758",,common rhea,Struthio americanus,greater rhea,Rhea americana,bio/RheaAmericana,,bio/Rhea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8800,,,,,,,Struthio,bio/Struthio,,,,,, +8801,,"Struthio camelus Linnaeus, 1758",,ostrich,Struthio camelus domesticus,African ostrich,Struthio camelus,bio/StruthioCamelus,,bio/Struthio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8812,,,,,,,Megalapteryx,bio/Megalapteryx,,,,,, +8813,,"Dinornis didinus Owen, 1883",,tokoweka,Dinornis didinus,upland moa,Megalapteryx didinus,bio/MegalapteryxDidinus,,bio/Megalapteryx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8835,,,,,,ducks,Anas,bio/Anas,,,,,, +8838,,"Anas penelope Linnaeus, 1758",,widgeon,Anas penelope,Eurasian wigeon,Mareca penelope,bio/MarecaPenelope,,bio/Mareca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8839,,"Anas platyrhynchos Linnaeus, 1758",,mallard ducks,"Peking duck, Anas boschas, Pekin duck, Anas domesticus, Anas platyrhynchos f. domestica, domestic duck, Beijing ducks",mallard,Anas platyrhynchos,bio/AnasPlatyrhynchos,,bio/Anas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8842,,,,,Chen,geese,Anser,bio/Anser,,,,,, +8843,,"Anser anser (Linnaeus, 1758)",,greylag goose,"Anas anser, Anser anser domesticus",Domestic goose,Anser anser,bio/AnserAnser,,bio/Anser,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8845,,"Anser cygnoides (Linnaeus, 1758)",,white Chinese goose,"Anas cygnoid, Anser cygnoides domesticus",Swan goose,Anser cygnoides,bio/AnserCygnoides,,bio/Anser,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8854,,,,,,,Cairina,bio/Cairina,,,,,, +8855,,"Cairina moschata (Linnaeus, 1758)",,musky duck,"Cairina moschata domestica, Cairina moschata var. domestica, Cairina moschata domesticus, Anas moschata",Muscovy duck,Cairina moschata,bio/CairinaMoschata,,bio/Cairina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8859,,,,,,,Chloephaga,bio/Chloephaga,,,,,, +8861,,"Anas picta Gmelin, 1789",,Magellan goose,Anas picta,upland goose,Chloephaga picta,bio/ChloephagaPicta,,bio/Chloephaga,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8867,,,,,,swans,Cygnus,bio/Cygnus,,,,,, +8870,,,,,,,Dendrocygna,bio/Dendrocygna,,,,,, +8871,,"Anas arborea Linnaeus, 1758",,West Indian tree duck,Anas arborea,black-billed whistling-duck,Dendrocygna arborea,bio/DendrocygnaArborea,,bio/Dendrocygna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8872,,"Anas arcuata Horsfield, 1824",,wandering whistling tree duck,Anas arcuata,wandering whistling-duck,Dendrocygna arcuata,bio/DendrocygnaArcuata,,bio/Dendrocygna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8873,,"Anas autumnalis Linnaeus, 1758",,red-billed whistling-duck,Anas autumnalis,black-bellied whistling-duck,Dendrocygna autumnalis,bio/DendrocygnaAutumnalis,,bio/Dendrocygna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8874,,"Dendrocygna bicolor (Vieillot, 1816)",,fulvous tree duck,Anas bicolor,fulvous whistling-duck,Dendrocygna bicolor,bio/DendrocygnaBicolor,,bio/Dendrocygna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8875,,"Leptotarsis eytoni Eyton, 1838",,plumed whistling duck,Leptotarsis eytoni,plumed whistling-duck,Dendrocygna eytoni,bio/DendrocygnaEytoni,,bio/Dendrocygna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8876,,"Dendrocygna viduata (Linnaeus, 1766)",,white-faced tree duck,"Dendrocygna viduata viduata, Anas viduata",white-faced whistling-duck,Dendrocygna viduata,bio/DendrocygnaViduata,,bio/Dendrocygna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8883,,,,,,,Oxyura,bio/Oxyura,,,,,, +8885,,"Erismatura vittata Philippi, 1860",,lake duck,Erismatura vittata,lack duck,Oxyura vittata,bio/OxyuraVittata,,bio/Oxyura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8894,,,,,,,Apus,bio/Apus,,,,,, +8895,,"Hirundo apus Linnaeus, 1758",,swift,Hirundo apus,common swift,Apus apus,bio/ApusApus,,bio/Apus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8909,,"Vanellus spinosus (Linnaeus, 1758)",,spur-winged lapwing,Hoplopterus spinosus,spur-winged plover,Vanellus spinosus,bio/VanellusSpinosus,,bio/Vanellus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8911,,,,,,,Larus,bio/Larus,,,,,, +8918,,"Calidris Merrem, 1804",,,,,Calidris,bio/Calidris,,,,,, +8931,,,,,,,Columba,bio/Columba,,,,,, +8932,,"Columba livia Gmelin, JF, 1789",,rock dove,"Columba livia domestica, Columba domestica",rock pigeon,Columba livia,bio/ColumbaLivia,,bio/Columba,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8944,,,,,,,Eudynamys,bio/Eudynamys,,,,,, +8945,,"Eudynamys scolopaceus (Linnaeus, 1758)",,common koel,"Cuculus scolopaceus, Eudynamys scolopacea",Asian koel,Eudynamys scolopaceus,bio/EudynamysScolopaceus,,bio/Eudynamys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8956,,,,,,,Accipiter,bio/Accipiter,,,,,, +8957,,"Falco gentilis Linnaeus, 1758",,Habicht,"Accipiter gentillis, Falco gentilis",Northern goshawk,Accipiter gentilis,bio/AccipiterGentilis,,bio/Accipiter,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8958,,,,,,,Aegypius,bio/Aegypius,,,,,, +8959,,"Vultur monachus Linnaeus, 1766",,black vulture,Vultur monachus,Cinereous vulture,Aegypius monachus,bio/AegypiusMonachus,,bio/Aegypius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8963,,,,,,harriers,Circus,bio/Circus,,,,,, +8964,,"Falco aeruginosus Linnaeus, 1758",,marsh harrier,Falco aeruginosus,western marsh harrier,Circus aeruginosus,bio/CircusAeruginosus,,bio/Circus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +8965,,,,,,,Gyps,bio/Gyps,,,,,, +8972,,,,,,,Polyboroides,bio/Polyboroides,,,,,, +8973,,"Vultur radiatus Scopoli, 1786",,African harrier-hawk,Vultur radiatus,Madagascar harrier-hawk,Polyboroides radiatus,bio/PolyboroidesRadiatus,,bio/Polyboroides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9001,,,,,,,Centrocercus,bio/Centrocercus,,,,,, +9002,,"Tetrao urophasianus Bonaparte, 1827",,sage grouse,"Tetrao urophasianus, Centrocerus urophasianus",Greater sage-grouse,Centrocercus urophasianus,bio/CentrocercusUrophasianus,,bio/Centrocercus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9013,,Colinus Goldfuss 1820,,,,,Colinus,bio/Colinus,,,,,, +9014,,"Tetrao virginianus Linnaeus, 1758",,common bobwhite,Tetrao virginianus,northern bobwhite,Colinus virginianus,bio/ColinusVirginianus,,bio/Colinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9016,,,,,,,Cyrtonyx,bio/Cyrtonyx,,,,,, +9017,,"Ortyx montezumae Vigors, 1830",,Mearns's quail,Ortyx montezumae,Montezuma quail,Cyrtonyx montezumae,bio/CyrtonyxMontezumae,,bio/Cyrtonyx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9018,,Francolinus Stephens 1819,,,,,Francolinus,bio/Francolinus,,,,,, +9019,,"Tetrao pondicerianus Gmelin, 1789",,Indian grey partridge,"Tetrao pondicerianus, Ortygornis pondicerianus",gray francolin,Francolinus pondicerianus,bio/FrancolinusPondicerianus,,bio/Francolinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9020,,"Pternistis afer (Muller, 1776) Looss, 1899",,bare-throated francolin,"Francolinus afer (Muller, 1776) Looss, 1899",Red-necked spurfowl,Pternistis afer,bio/PternistisAfer,,bio/Pternistis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9030,,,,,,,Gallus,bio/Gallus,,,,,, +9031,,"Phasianus gallus Linnaeus, 1758",,chickens,"Gallus gallus domesticus, Phasianus gallus, Gallus domesticus, red junglefowl, dwarf Leghorn chickens",chicken,Gallus gallus,bio/GallusGallus,,bio/Gallus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9041,,,,,,,Lophura,bio/Lophura,,,,,, +9043,,"Gennaeus edwardsi Oustalet, 1896",,Edward's pheasant,Gennaeus edwardsi,Edwards's pheasant,Lophura edwardsi,bio/LophuraEdwardsi,,bio/Lophura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9051,,,,,,,Perdix,bio/Perdix,,,,,, +9052,,"Tetrao perdix Linnaeus, 1758",,Rebhuhn,Tetrao perdix,grey partridge,Perdix perdix,bio/PerdixPerdix,,bio/Perdix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9058,,,,,,,Polyplectron,bio/Polyplectron,,,,,, +9059,,"Pavo bicalcaratus Linnaeus, 1758",,peacock-pheasant,Pavo bicalcaratus,gray peacock-pheasant,Polyplectron bicalcaratum,bio/PolyplectronBicalcaratum,,bio/Polyplectron,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9062,,,,,,,Syrmaticus,bio/Syrmaticus,,,,,, +9067,,"Syrmaticus soemmerringii (Temminck, 1830)",,copper pheasants,Phasianus soemmerringii,copper pheasant,Syrmaticus soemmerringii,bio/SyrmaticusSoemmerringii,,bio/Syrmaticus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9077,,,,,,,Alectoris,bio/Alectoris,,,,,, +9095,,,,,,,Crossoptilon,bio/Crossoptilon,,,,,, +9104,,,,,,,Arborophila,bio/Arborophila,,,,,, +9105,,"Perdix torqueola Valenciennes, 1825",,common hill-partridge,Perdix torqueola,hill partridge,Arborophila torqueola,bio/ArborophilaTorqueola,,bio/Arborophila,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9114,,,,,Tetrapteryx,,Grus,bio/Grus,,,,,, +9124,,,,,,,Gallirallus,bio/Gallirallus,,,,,, +9134,,,,canaries,,,Serinus,bio/Serinus,,,,,, +9135,,"Serinus canaria (Linnaeus, 1758)",,canary,"Fringilla canaria Linnaeus, 1758, Canario raza, Serinus canarius",Common canary,Serinus canaria,bio/SerinusCanaria,,bio/Serinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9151,,"Epimachus albertisi (Sclater, 1873)",,buff-tailed sicklebill,Epimachus albertisi,black-billed sicklebill,Drepanornis albertisi,bio/DrepanornisAlbertisi,,bio/Drepanornis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9159,,,,,,,Passer,bio/Passer,,,,,, +9160,,"Fringilla montana Linnaeus, 1758",,tree sparrow,Fringilla montana,Eurasian tree sparrow,Passer montanus,bio/PasserMontanus,,bio/Passer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9181,,,,,Abrornis,,Phylloscopus,bio/Phylloscopus,,,,,, +9186,,,,,,,Turdus,bio/Turdus,,,,,, +9207,,"Phalacrocorax Brisson, 1760",,,Stictocarbo,,Phalacrocorax,bio/Phalacrocorax,,,,,, +9209,,"Phalacrocorax carbo (Linnaeus, 1758)",,cormorant,Pelecanus carbo,great cormorant,Phalacrocorax carbo,bio/PhalacrocoraxCarbo,,bio/Phalacrocorax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9210,,"Phalacrocorax sulcirostris (Brandt, 1837)",,black shag,"Hypoleucos sulcirostris, Carbo sulcirostris",little black cormorant,Phalacrocorax sulcirostris,bio/PhalacrocoraxSulcirostris,,bio/Phalacrocorax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9216,,,,,,,Phoenicopterus,bio/Phoenicopterus,,,,,, +9225,,,,,,,Ara,bio/Ara,,,,,, +9226,,"Psittacus ararauna Linnaeus, 1758",,blue and gold macaw,Psittacus ararauna,blue-and-yellow macaw,Ara ararauna,bio/AraArarauna,,bio/Ara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9227,,,,,,,Psittacula,bio/Psittacula,,,,,, +9228,,"Psittacus krameri Scopoli, 1769",,Ring-necked Parakeet,Psittacus krameri,Rose-ringed parakeet,Psittacula krameri,bio/PsittaculaKrameri,,bio/Psittacula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9235,,,,,,,Eudyptes,bio/Eudyptes,,,,,, +9247,,,,,,,Turnix,bio/Turnix,,,,,, +9248,,"Turnix sylvaticus (Desfontaines, 1789)",,small buttonquail,"Turnix sylvatica, Tetrao sylvaticus",Andalusian buttonquail,Turnix sylvaticus,bio/TurnixSylvaticus,,bio/Turnix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +9257,,,,,,,Ornithorhynchus,bio/Ornithorhynchus,,,,,, +9258,,"Platypus anatinus Shaw, 1799",,duckbill platypus,Platypus anatinus,platypus,Ornithorhynchus anatinus,bio/OrnithorhynchusAnatinus,,bio/Ornithorhynchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9260,,,,,,short-nosed echidnas,Tachyglossus,bio/Tachyglossus,,,,,, +9261,,"Tachyglossus aculeatus (Shaw, 1792)",,short-beaked echidna,Myrmecophaga aculeata,Australian echidna,Tachyglossus aculeatus,bio/TachyglossusAculeatus,,bio/Tachyglossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9266,,,,,,,Didelphis,bio/Didelphis,,,,,, +9267,,"Didelphis virginiana Kerr, 1792",,Virginia opossum,Didelphis marsupialis virginiana,North American opossum,Didelphis virginiana,bio/DidelphisVirginiana,,bio/Didelphis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9274,,,,,,,Thylacinus,bio/Thylacinus,,,,,, +9275,,"Didelphis cynocephala Harris, 1808",,thylacine,Didelphis cynocephala,Tasmanian wolf,Thylacinus cynocephalus,bio/ThylacinusCynocephalus,,bio/Thylacinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9288,,,,,"Murexechinus, Micromurexia, Paramurexia, Phascomurexia",short-haired marsupial mice,Murexia,bio/Murexia,,,,,, +9298,,,,,,,Pseudantechinus,bio/Pseudantechinus,,,,,, +9300,,,,,,,Sminthopsis,bio/Sminthopsis,,,,,, +9302,,"Podabrus macrourus Gould, 1845",,Australian stripe-faced dunnart,Podabrus macrourus,stripe-faced dunnart,Sminthopsis macroura,bio/SminthopsisMacroura,,bio/Sminthopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9309,,,,,,,Potorous,bio/Potorous,,,,,, +9310,,"Didelphis tridactyla Kerr, 1792",,potoroo,Didelphis tridactyla,long-nosed potoroo,Potorous tridactylus,bio/PotorousTridactylus,,bio/Potorous,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9314,,"Osphranter Antilopinus Gould, 1842",,antilopine wallaroo,"Macropus antilopinus, Osphranter Antilopinus",antelopine kangaroo,Osphranter antilopinus,bio/OsphranterAntilopinus,,bio/Osphranter,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9319,,"Macropus robustus Gould, 1840",,hill wallaroo,Macropus robustus,common wallaroo,Osphranter robustus,bio/OsphranterRobustus,,bio/Osphranter,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9324,,"Petrogale Gray, 1837",,,,rock wallabies,Petrogale,bio/Petrogale,,,,,, +9332,,,,,,,Pseudocheirus,bio/Pseudocheirus,,,,,, +9333,,"Didelphis peregrinus Boddaert, 1785",,Queensland ringtail,Didelphis peregrinus,common ring-tailed possum,Pseudocheirus peregrinus,bio/PseudocheirusPeregrinus,,bio/Pseudocheirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9336,,,,,,brush-tailed possums,Trichosurus,bio/Trichosurus,,,,,, +9337,,"Trichosurus vulpecula (Kerr, 1792)",,silver-gray brushtail possum,Didelphis vulpecula,common brushtail,Trichosurus vulpecula,bio/TrichosurusVulpecula,,bio/Trichosurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9353,,,,three-toed sloth,,three-toed sloths,Bradypus,bio/Bradypus,,,,,, +9355,,"Bradypus variegatus Schinz, 1825",,brown-throated three-toed sloth,Bradypus griseus,Brown-throated sloth,Bradypus variegatus,bio/BradypusVariegatus,,bio/Bradypus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9367,,,,,Aethechinus,,Atelerix,bio/Atelerix,,,,,, +9368,,"Erinaceus albiventris Wagner, 1841",,four-toed hedgehog,Erinaceus albiventris,middle-African hedgehog,Atelerix albiventris,bio/AtelerixAlbiventris,,bio/Atelerix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9370,,"Echinops Martin, 1838",,,,,Echinops ,bio/Echinops_Placentals,,,,,, +9371,,"Echinops telfairi Martin, 1838",,lesser hedgehog tenrec,Echinops telfairii,small Madagascar hedgehog,Echinops telfairi,bio/EchinopsTelfairi,,bio/Echinops_Placentals,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9377,,"Suncus Ehrenberg, 1832",,,,musk shrews,Suncus,bio/Suncus,,,,,, +9378,,"Suncus murinus (Linnaeus, 1766)",,Asian house shrew,Sorex murinus,house shrew,Suncus murinus,bio/SuncusMurinus,,bio/Suncus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9386,,,,,,,Blarina,bio/Blarina,,,,,, +9387,,"Sorex brevicaudus Say, 1823",,northern short-tailed shrew,Sorex brevicaudus,short-tailed shrew,Blarina brevicauda,bio/BlarinaBrevicauda,,bio/Blarina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9394,,"Tupaia Raffles, 1821",,,,,Tupaia,bio/Tupaia,,,,,, +9395,,"Sorex glis Diard, 1820",,tree shrew,Sorex glis,common tree shrew ,Tupaia glis,bio/TupaiaGlis,,bio/Tupaia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9399,,,,,,,Cynopterus,bio/Cynopterus,,,,,, +9400,,"Vespertilio sphinx Vahl, 1797",,greater short-nosed fruit bat,Vespertilio sphinx,Indian short-nosed fruit bat,Cynopterus sphinx,bio/CynopterusSphinx,,bio/Cynopterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9410,,,,,,,Macroderma,bio/Macroderma,,,,,, +9411,,"Megaderma gigas Dobson, 1880",,Australian giant false vampire,Megaderma gigas,Australian ghost bat,Macroderma gigas,bio/MacrodermaGigas,,bio/Macroderma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9416,,,,,,neotropical fruit bats,Artibeus,bio/Artibeus,,,,,, +9425,,,,,,,Tonatia,bio/Tonatia,,,,,, +9426,,"Vampyrus bidens Spix, 1823",,greater round-eared bat,Vampyrus bidens,Spix's round-eared bat,Tonatia bidens,bio/TonatiaBidens,,bio/Tonatia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9429,,,,,,,Desmodus,bio/Desmodus,,,,,, +9430,,"Phyllostoma rotundum Geoffroy, 1810",,vampire bat,Phyllostoma rotundum,common vampire bat,Desmodus rotundus,bio/DesmodusRotundus,,bio/Desmodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9432,,,,,,,Miniopterus,bio/Miniopterus,,,,,, +9433,,"Miniopterus schreibersii Kuhl, 1817",,Schreibers's long-fingered bat,Miniopterus schreibersi,Schreibers' long-fingered bat,Miniopterus schreibersii,bio/MiniopterusSchreibersii,,bio/Miniopterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9434,,,,,,,Myotis,bio/Myotis,,,,,, +9435,,"Vespertilio velifer Allen, 1890",,cave myotis,Vespertilio velifer,mouse-eared bat,Myotis velifer,bio/MyotisVelifer,,bio/Myotis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9462,,,,,,,Galago,bio/Galago,,,,,, +9463,,"Otolemur crassicaudatus E Geoffroy, 1812",,thick-tailed galago,Galago crassicaudatus,thick-tailed bush baby,Otolemur crassicaudatus,bio/OtolemurCrassicaudatus,,bio/Otolemur,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9477,,"Tarsius bancanus Horsfield, 1821",,Western tarsier,Tarsius bancanus,Horsfield's tarsier,Cephalopachus bancanus,bio/CephalopachusBancanus,,bio/Cephalopachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9483,,"Simia jacchus Linnaeus, 1758",,white ear-tufted marmoset,"Callithrix jacchus jacchus, Simia jacchus",white-tufted-ear marmoset,Callithrix jacchus,bio/CallithrixJacchus,,bio/Callithrix_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9486,,"Saguinus Hoffmannsegg, 1807",,,,,Saguinus,bio/Saguinus,,,,,, +9487,,"Saguinus fuscicollis (Spix, 1823)",,saddlebacked tamarin,"Midas fuscicollis, Leontocebus fuscicollis (Spix, 1823), Saguinus fuscicollis",brown-headed tamarin,Leontocebus fuscicollis,bio/LeontocebusFuscicollis,,bio/Leontocebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9488,,"Midas mystax Spix, 1823",,black-chested mustached tamarin,Midas mystax,moustached tamarin,Saguinus mystax,bio/SaguinusMystax,,bio/Saguinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9494,,,,,,,Callimico,bio/Callimico,,,,,, +9495,,"Callimico goeldii Thomas, 1904",,Goeldi's monkey,Midas goeldii,Goeldi's marmoset,Callimico goeldii,bio/CallimicoGoeldii,,bio/Callimico,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9499,,,,,,howler monkeys,Alouatta,bio/Alouatta,,,,,, +9503,,"Simia seniculus Linnaeus, 1766",,red howler monkey,Simia seniculus,howler monkey ,Alouatta seniculus,bio/AlouattaSeniculus,,bio/Alouatta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9504,,"Aotus Illiger, 1811",,,,night monkeys,Aotus ,bio/Aotus_Primates,,,,,, +9505,,"Simia trivirgata Humboldt, 1812",,owl monkey,Simia trivirgata,douroucouli,Aotus trivirgatus,bio/AotusTrivirgatus,,bio/Aotus_Primates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9506,,"Ateles E. Geoffroy, 1806",,,,,Ateles,bio/Ateles,,,,,, +9513,,,,,,capuchin monkeys,Cebus,bio/Cebus,,,,,, +9514,,"Simia albifrons Humboldt, 1812",,pale-fronted capuchin,Simia albifrons,white-fronted capuchin,Cebus albifrons,bio/CebusAlbifrons,,bio/Cebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9515,,"Simia apella Linnaeus, 1758",,brown capuchin,"Simia apella, Cebus apella",tufted capuchin,Sapajus apella,bio/SapajusApella,,bio/Sapajus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9516,,"Simia capucina Linnaeus, 1758",,white-throated capuchin,Simia capucina,white-faced sapajou,Cebus capucinus,bio/CebusCapucinus,,bio/Cebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9518,,"Lagothrix E. Geoffroy, 1812",,,,woolly monkeys,Lagothrix,bio/Lagothrix,,,,,, +9519,,"Lagothrix lagotricha (Humboldt, 1812)",,Humboldt's woolly monkey,"Simia lagotricha, Lagothrix lagotricha lagotricha",brown woolly monkey,Lagothrix lagotricha,bio/LagothrixLagotricha,,bio/Lagothrix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9520,,,,,,squirrel monkeys,Saimiri,bio/Saimiri,,,,,, +9521,,"Simia sciurea Linnaeus, 1758",,South American squirrel monkey,Simia sciurea,common squirrel monkey,Saimiri sciureus,bio/SaimiriSciureus,,bio/Saimiri,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9523,,"Callicebus moloch Hoffmannsegg, 1807",,Dusky titi,Callicebus moloch,red-bellied titi,Plecturocebus moloch,bio/PlecturocebusMoloch,,bio/Plecturocebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9529,,"Cercocebus E. Geoffroy, 1812",,,,,Cercocebus,bio/Cercocebus,,,,,, +9530,,"Simia torquata Kerr, 1792",,white-collared mangabey,Simia torquata,collared mangabey,Cercocebus torquatus,bio/CercocebusTorquatus,,bio/Cercocebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9533,,,,,,,Cercopithecus,bio/Cercopithecus,,,,,, +9534,,"Simia aethiops Linnaeus, 1758",,savanah monkey,"Simia aethiops, Cercopithecus aethiops, Ceropithecus aethiops",grivet,Chlorocebus aethiops,bio/ChlorocebusAethiops,,bio/Chlorocebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9535,,"Simia cephus Linnaeus, 1758",,moustached monkey,Simia cephus,moustached guenon,Cercopithecus cephus,bio/CercopithecusCephus,,bio/Cercopithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9537,,,,,,,Erythrocebus,bio/Erythrocebus,,,,,, +9538,,"Simia patas Schreber, 1774",,patas monkey,"Cercopithecus patas, Simia patas",red guenon,Erythrocebus patas,bio/ErythrocebusPatas,,bio/Erythrocebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9539,,,,macaque,,macaques,Macaca,bio/Macaca,,,,,, +9541,,"Simia fascicularis Raffles, 1821",,long-tailed macaque,"Macaca cynomolgus, Simia fascicularis, Macaca irus",crab-eating macaque,Macaca fascicularis,bio/MacacaFascicularis,,bio/Macaca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9544,,"Macaca mulatta (Zimmermann, 1780)",,rhesus monkeys,Cercopithecus mulatta,Rhesus monkey,Macaca mulatta,bio/MacacaMulatta,,bio/Macaca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9545,,"Simia nemestrina Linnaeus, 1766",,pigtail monkey,Simia nemestrina,pig-tailed macaque,Macaca nemestrina,bio/MacacaNemestrina,,bio/Macaca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9546,,"Simia sylvanus Linnaeus, 1758",,Barbary macaque,Simia sylvanus,Barbary ape,Macaca sylvanus,bio/MacacaSylvanus,,bio/Macaca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9552,,"Simia sinica Linnaeus, 1771",,toque monkey,Simia sinica,toque macaque,Macaca sinica,bio/MacacaSinica,,bio/Macaca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9554,,"Papio Erxleben, 1777",,,,baboons,Papio,bio/Papio,,,,,, +9555,,"Simia anubis Lesson, 1827",,Kenya baboon,"Papio hamadryas anubis, Papio cynocephalus anubis, Anubis baboon, Papio doguera, Papio hamadryas doguera, Simia anubis",olive baboon,Papio anubis,bio/PapioAnubis,,bio/Papio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9556,,"Simia cynocephalus Linnaeus, 1766",,baboon,"Simia cynocephalus, Papio hamadryas cynocephalus",Yellow baboon,Papio cynocephalus,bio/PapioCynocephalus,,bio/Papio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9557,,"Simia hamadryas Linnaeus, 1758",,western baboon,"Simia hamadryas, Papio hamadryas subsp.",hamadryas baboon,Papio hamadryas,bio/PapioHamadryas,,bio/Papio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9564,,,,,,,Theropithecus,bio/Theropithecus,,,,,, +9565,,"Theropithecus gelada (Rueppell, 1835)",,gelada baboon,Macacus gelada,gelada,Theropithecus gelada,bio/TheropithecusGelada,,bio/Theropithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9570,,,,,,black-and-white colobus monkeys,Colobus,bio/Colobus,,,,,, +9578,,,,,,,Hylobates,bio/Hylobates,,,,,, +9580,,"Homo lar Linneaus, 1771",,white-handed gibbon,Homo lar,common gibbon,Hylobates lar,bio/HylobatesLar,,bio/Hylobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9592,,"Gorilla I. Geoffroy, 1852",,,,,Gorilla,bio/Gorilla,,,,,, +9593,,"Troglodytes gorilla Savage, 1847",,gorilla,Troglodytes gorilla,western gorilla,Gorilla gorilla,bio/GorillaGorilla,,bio/Gorilla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9599,,,,,,,Pongo,bio/Pongo,,,,,, +9600,,"Simia pygmaeus Linnaeus, 1760",,Orangutan,Simia pygmaeus,Bornean orangutan,Pongo pygmaeus,bio/PongoPygmaeus,,bio/Pongo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9601,,"Pongo abelii Lesson, 1827",,Orangutan,"Pongo pygmaeus abelii, Pongo pygmaeus abeli",Sumatran orangutan,Pongo abelii,bio/PongoAbelii,,bio/Pongo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +9606,,"Homo sapiens Linnaeus, 1758",,,,human,Homo sapiens,bio/HomoSapiens,,,,,, +9612,,"Canis lupus Linnaeus, 1758",,grey wolf,,gray wolf,Canis lupus,bio/CanisLupus,,,,,, +9615,,"Canis lupus familiaris Linnaeus, 1758",,dogs,"beagle dog, Canis canis, Canis domesticus, Canis lupus borealis, Canis borealis, Canis familiaris, beagle dogs",dog,Canis lupus familiaris,bio/CanisLupusFamiliaris,,bio/CanisLupus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionMammals,True, +9620,,"Cerdocyon thous (Linnaeus, 1766)",,common zorro,"Canis thous, Dusicyon thous",crab-eating fox,Cerdocyon thous,bio/CerdocyonThous,,bio/Cerdocyon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9621,,,,,,,Lycaon,bio/Lycaon,,,,,, +9622,,"Lycaon pictus (Temminck, 1820)",,painted hunting dog,Hyaena picta,African hunting dog,Lycaon pictus,bio/LycaonPictus,,bio/Lycaon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9625,,,,,"Alopex, Fennecus",,Vulpes,bio/Vulpes,,,,,, +9627,,"Vulpes vulpes (Linnaeus, 1758)",,silver fox,Canis vulpes,red fox,Vulpes vulpes,bio/VulpesVulpes,,bio/Vulpes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9633,,,,,,,Helarctos,bio/Helarctos,,,,,, +9634,,"Ursus malayanus Raffles, 1821",,sun bear,Ursus malayanus,Malayan sun bear,Helarctos malayanus,bio/HelarctosMalayanus,,bio/Helarctos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9639,,,,,Euarctos,,Ursus,bio/Ursus,,,,,, +9650,,,,,,,Nasua,bio/Nasua,,,,,, +9651,,"Viverra nasua Linnaeus, 1766",,South American coati,Viverra nasua,ring-tailed coati ,Nasua nasua,bio/NasuaNasua,,bio/Nasua,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9653,,,,,,,Procyon,bio/Procyon,,,,,, +9654,,"Ursus lotor Linnaeus, 1758",,northern raccoon,Ursus lotor,raccoon,Procyon lotor,bio/ProcyonLotor,,bio/Procyon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9658,,"Martes Pinel, 1792",,,,,Martes,bio/Martes,,,,,, +9659,,"Mustela foina Erxleben, 1777",,beech marten,Mustela foina,beach marten,Martes foina,bio/MartesFoina,,bio/Martes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9661,,,,,,,Meles,bio/Meles,,,,,, +9663,,,,,,,Mellivora,bio/Mellivora,,,,,, +9664,,"Viverra capensis Schreber, 1776",,honey badger,Viverra capensis,ratel,Mellivora capensis,bio/MellivoraCapensis,,bio/Mellivora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9668,,"Mustela putorius Linnaeus, 1758",,,Putorius putorius,European polecat,Mustela putorius,bio/MustelaPutorius,,,,,, +9669,,"Mustela putorius furo Linnaeus, 1758",,ferret,Mustela furo,domestic ferret,Mustela putorius furo,bio/MustelaPutoriusFuro,,bio/MustelaPutorius,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionMammals,True, +9682,,,,,,,Felis,bio/Felis,,,,,, +9685,,Korat cats L.,,cats,"Korat cats, Felis domesticus, Felis silvestris catus",domestic cat,Felis catus,bio/FelisCatus,,bio/Felis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9703,,,,,,,Zalophus,bio/Zalophus,,,,,, +9704,,"Otaria californiana Lesson, 1828",,California sealion,Otaria californiana,California sea lion,Zalophus californianus,bio/ZalophusCalifornianus,,bio/Zalophus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9710,,,,,,,Halichoerus,bio/Halichoerus,,,,,, +9711,,"Phoca grypus Fabricius, 1791",,grey seal,Phoca grypus,gray seal,Halichoerus grypus,bio/HalichoerusGrypus,,bio/Halichoerus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9724,,,,,,,Inia,bio/Inia,,,,,, +9725,,"Delphinus geoffrensis Blainville, 1817",,pink river dolphin,Delphinus geoffrensis,boutu,Inia geoffrensis,bio/IniaGeoffrensis,,bio/Inia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9734,,,,,,,Stenella ,bio/Stenella_WhalesDolphins,,,,,, +9735,,"Steno attenuatus Gray, 1846",,pantropical spotted dolphin,Steno attenuatus,bridled dolphin,Stenella attenuata,bio/StenellaAttenuata,,bio/Stenella_WhalesDolphins,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9736,,"Stenella longirostris (Gray, 1828)",,pantropical spinner dolphin,Delphinus longirostris,spinner dolphin,Stenella longirostris,bio/StenellaLongirostris,,bio/Stenella_WhalesDolphins,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9738,,,,,,,Tursiops,bio/Tursiops,,,,,, +9739,,"Tursiops truncatus Gervais, 1855",,bottle-nosed dolphin,"Tursiops cymodoce, Delphinus cymodoce, Delphinus truncatus",common bottlenose dolphin,Tursiops truncatus,bio/TursiopsTruncatus,,bio/Tursiops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9741,,,,,,,Phocoena,bio/Phocoena,,,,,, +9742,,"Delphinus phocoena Linnaeus, 1758",,common porpoise,"Phocoenoides phocoena, Delphinus phocoena",harbor porpoise,Phocoena phocoena,bio/PhocoenaPhocoena,,bio/Phocoena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9748,,,,,,,Delphinapterus,bio/Delphinapterus,,,,,, +9749,,"Delphinus leucas Pallas, 1776",,white whale,Delphinus leucas,beluga whale,Delphinapterus leucas,bio/DelphinapterusLeucas,,bio/Delphinapterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9757,,,,,,,Mesoplodon,bio/Mesoplodon,,,,,, +9763,,,,,,,Eschrichtius,bio/Eschrichtius,,,,,, +9764,,"Balaenoptera robusta Lilljeborg, 1861",,gray whale,"Eschrichtius gibbosus, Balaenoptera robusta",grey whale,Eschrichtius robustus,bio/EschrichtiusRobustus,,bio/Eschrichtius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9766,,"Balaenoptera Lacepede, 1804",,,,,Balaenoptera,bio/Balaenoptera,,,,,, +9770,,"Balaenoptera physalus (Linnaeus, 1758)",,finback whale,Balaena physalus,Fin whale,Balaenoptera physalus,bio/BalaenopteraPhysalus,,bio/Balaenoptera,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9776,,,,,,,Trichechus,bio/Trichechus,,,,,, +9777,,"Manatus inunguis Natterer, 1883",,Brazilian manatee,Manatus inunguis,Amazon manatee,Trichechus inunguis,bio/TrichechusInunguis,,bio/Trichechus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9782,,,,,,,Elephas,bio/Elephas,,,,,, +9783,,"Elephas maximus Linnaeus, 1758",,Indian elephant,"elephant, Elephas maximus",Asiatic elephant,Elephas maximus,bio/ElephasMaximus,,bio/Elephas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9784,,,,African elephants,,,Loxodonta,bio/Loxodonta,,,,,, +9785,,"Elephas africanus Blumenbach, 1797",,African savannah elephant,"Loxodonta africana africana, elephant, Elephas africanus, Loxodonta africana",African savanna elephant,Loxodonta africana,bio/LoxodontaAfricana,,bio/Loxodonta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9786,,"Proboscidea louisiana (Mill.) Wooton & Standl., 1915",,ram's horn,Proboscidea louisianica,pale devil's-claw,Proboscidea louisiana,bio/ProboscideaLouisiana,,bio/Proboscidea_Eudicots,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +9789,,,,,"Equus subg. Dolichohippus, Equus subg. Equus, Hippotigris, Hemionus, Equus subg. Hippotigris, Equus subg. Asinus, Equus subg. Amerhippus, Sussemionus, Equus subg. Hemionus, Amerhippus, Equus subgen. Sussemionus, Asinus, Dolichohippus",,Equus,bio/Equus,,,,,, +9794,,"Equus hemionus Pallas, 1775",,Asiatic wild ass,Equus onager,onager,Equus hemionus,bio/EquusHemionus,,bio/Equus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9796,,"Equus caballus Linnaeus, 1758",,equine,"Equus przewalskii f. caballus, Equus przewalskii forma caballus",horse,Equus caballus,bio/EquusCaballus,,bio/Equus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9798,,"Equus przewalskii Poliakov, 1881",,Przewalski horse,"Equus caballus przewalskii, Equus ferus przewalskii",Przewalski's horse,Equus przewalskii,bio/EquusPrzewalskii,,bio/Equus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9800,,,,,,,Tapirus,bio/Tapirus,,,,,, +9801,,"Hippopotamus terrestris Linnaeus, 1758",,South American tapir,Hippopotamus terrestris,Brazilian tapir,Tapirus terrestris,bio/TapirusTerrestris,,bio/Tapirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9806,,,,,,,Ceratotherium,bio/Ceratotherium,,,,,, +9807,,"Rhinoceros simus Burchell, 1817",,square-lipped rhinoceros,Rhinoceros simus,white rhinoceros,Ceratotherium simum,bio/CeratotheriumSimum,,bio/Ceratotherium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9812,,,,,,,Procavia,bio/Procavia,,,,,, +9813,,"Cavia capensis Pallas, 1766",,rock hyrax,Cavia capensis,Cape rock hyrax,Procavia capensis,bio/ProcaviaCapensis,,bio/Procavia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9843,,"Vicugna vicugna (Molina, 1782)",,vicuna,"Lama vicugna, Camelus vicugna",vicugna,Vicugna vicugna,bio/VicugnaVicugna,,bio/Vicugna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9847,,,,,,,Tragulus,bio/Tragulus,,,,,, +9848,,"Moschus Napu Cuvier, 1822",,greater mouse-deer,Moschus Napu,Balabac chevrotain,Tragulus napu,bio/TragulusNapu,,bio/Tragulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9849,,"Tragulus javanicus (Osbeck, 1765)",,Lesser Malay chevrotain,Cervus javanicus,Java mouse-deer,Tragulus javanicus,bio/TragulusJavanicus,,bio/Tragulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9851,,"Alces Gray, 1821",,,,,Alces,bio/Alces,,,,,, +9852,,"Cervus alces Linnaeus, 1758",,"european elk, moose",Cervus alces,Eurasian elk,Alces alces,bio/AlcesAlces,,bio/Alces,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9855,,,,,,,Axis,bio/Axis,,,,,, +9861,,"Cervus elaphus canadensis Erxleben, 1777",,American elk,Cervus elaphus canadensis,Eastern wapiti,Cervus canadensis canadensis,bio/CervusCanadensisCanadensis,,bio/CervusCanadensis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionMammals,True, +9863,,"Cervus nippon Temminck, 1838",,,,sika deer,Cervus nippon,bio/CervusNippon,,,,,, +9867,,,,,,,Dama,bio/Dama,,,,,, +9869,,,,,,,Rangifer,bio/Rangifer,,,,,, +9870,,Rangifer tarandus Linnaeus,,caribou,Cervus tarandus,reindeer,Rangifer tarandus,bio/RangiferTarandus,,bio/Rangifer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9885,,"Muntiacus Rafinesque, 1815",,,Megamuntiacus,,Muntiacus,bio/Muntiacus,,,,,, +9886,,"Muntiacus reevesi (Ogilby, 1839)",,Reeves's muntjac,Cervus reevesi,Reeves' muntjac,Muntiacus reevesi,bio/MuntiacusReevesi,,bio/Muntiacus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9898,,,,,,,Ammotragus,bio/Ammotragus,,,,,, +9899,,"Antilope lervia Pallas, 1777",,Barbary sheep,Antilope lervia,aoudad,Ammotragus lervia,bio/AmmotragusLervia,,bio/Ammotragus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9900,,,,,,,Bison ,bio/Bison_Bison,,,,,, +9901,,"Bos bison Linnaeus, 1758",,Bison,"Bos bison, Bos (Bison) bison",American bison,Bison bison,bio/BisonBison,,bio/Bison_Bison,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9902,,"Bos bonasus Linnaeus, 1758",,wisent,"Bison bison bonasus, Bos bonasus",European bison,Bison bonasus,bio/BisonBonasus,,bio/Bison_Bison,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9903,,,,,,cattle,Bos,bio/Bos,,,,,, +9906,,"Bos javanicus d'Alton, 1823",,wild banteng,"Bos sondaicus, Bos banteng",banteng,Bos javanicus,bio/BosJavanicus,,bio/Bos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9913,,"Bos taurus Linnaeus, 1758",,ox,"Bovidae sp. Adi Nefas, Bos bovis, Bos primigenius taurus",domestic cattle,Bos taurus,bio/BosTaurus,,bio/Bos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9915,,"Bos indicus Linnaeus, 1758",,zebu,"Bos taurus indicus, Bos primigenius indicus",zebu cattle,Bos indicus,bio/BosIndicus,,bio/Bos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9916,,,,,,,Boselaphus,bio/Boselaphus,,,,,, +9917,,"Boselaphus tragocamelus (Pallas, 1766)",,nilghai,Antilope tragocamelus,nilgai,Boselaphus tragocamelus,bio/BoselaphusTragocamelus,,bio/Boselaphus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9918,,,,,,,Bubalus,bio/Bubalus,,,,,, +9922,,,,,,,Capra,bio/Capra,,,,,, +9923,,"Capra hircus aegagrus Erxleben, 1777",,bezoar ibex,Capra hircus aegagrus,wild goat,Capra aegagrus,bio/CapraAegagrus,,bio/Capra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9925,,"Capra hircus Linnaeus, 1758",,goats,"Naine d'Afrique de l'Ouest, African dwarf goats, Capra aegagrus hircus, African dwarf goat",goat,Capra hircus,bio/CapraHircus,,bio/Capra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9926,,,,,,,Connochaetes,bio/Connochaetes,,,,,, +9927,,"Antilope taurina Burchell, 1824",,white-bearded gnu,Antilope taurina,brindled gnu,Connochaetes taurinus,bio/ConnochaetesTaurinus,,bio/Connochaetes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9933,,,,gazelle,,gazelles,Gazella,bio/Gazella,,,,,, +9935,,,,,,,Ovis,bio/Ovis,,,,,, +9940,,"Ovis aries Linnaeus, 1758",,wild sheep,"Ovis ammon aries, Ovis orientalis aries, Ovis ovis",sheep,Ovis aries,bio/OvisAries,,bio/Ovis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9977,,"Ochotona Link, 1795",,,,,Ochotona,bio/Ochotona,,,,,, +9978,,"Ochotona princeps (Richardson, 1828)",,southern American pika,Arvicola princeps,American pika,Ochotona princeps,bio/OchotonaPrinceps,,bio/Ochotona,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9984,,,,,,,Oryctolagus,bio/Oryctolagus,,,,,, +9986,,"Lepus cuniculus Linnaeus, 1758",,rabbits,"New Zealand rabbit, Lepus cuniculus",rabbit,Oryctolagus cuniculus,bio/OryctolagusCuniculus,,bio/Oryctolagus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +9992,,"Marmota Blumenbach, 1779",,,,,Marmota,bio/Marmota,,,,,, +9995,,"Mus monax Linnaeus, 1758",,woodchucks,Mus monax,woodchuck,Marmota monax,bio/MarmotaMonax,,bio/Marmota,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +9996,,"Spermophilus F. Cuvier, 1825",,,,old world ground squirrels,Spermophilus,bio/Spermophilus,,,,,, +9997,,"Mus citellus Linnaeus, 1766",,European ground squirrel,"Citellus citellus, Mus citellus",European suslik,Spermophilus citellus,bio/SpermophilusCitellus,,bio/Spermophilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10001,,,,,,,Sciurus,bio/Sciurus,,,,,, +10007,,"Sciurus aberti Woodhouse, 1853",,Abert's squirrel,Hesperosciurus aberti,tassel-eared squirrel,Sciurus aberti,bio/SciurusAberti,,bio/Sciurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10011,,,,,,,Thomomys,bio/Thomomys,,,,,, +10012,,"Geomys townsendii Bachman, 1839",,Townsend's pocket gopher,"Geomys townsendii, Thomomys townsendi",western pocket gopher,Thomomys townsendii,bio/ThomomysTownsendii,,bio/Thomomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10016,,"Dipodomys Gray, 1841",,,,kangaroo rats,Dipodomys,bio/Dipodomys,,,,,, +10019,,"Perodipus panamintinus Merriam, 1894",,kangaroo rat,Perodipus panamintinus,Panamint kangaroo rat,Dipodomys panamintinus,bio/DipodomysPanamintinus,,bio/Dipodomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10022,,,,,,,Pedetes,bio/Pedetes,,,,,, +10023,,"Yerbua capensis Forster, 1778",,spring hare,Yerbua capensis,springhare,Pedetes capensis,bio/PedetesCapensis,,bio/Pedetes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10028,,,,,,,Cricetulus,bio/Cricetulus,,,,,, +10029,,"Cricetulus griseus Milne-Edwards, 1867",,Chinese hamsters,"Cricetulus barabensis griseus, Cricetulus aureus, CHO cell lines",Chinese hamster,Cricetulus griseus,bio/CricetulusGriseus,,bio/Cricetulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10033,,,,,,,Cricetus,bio/Cricetus,,,,,, +10034,,"Mus cricetus Linnaeus, 1758",,common hamster,Mus cricetus,black-bellied hamster,Cricetus cricetus,bio/CricetusCricetus,,bio/Cricetus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10035,,,,,,,Mesocricetus,bio/Mesocricetus,,,,,, +10036,,"Mesocricetus auratus Waterhouse, 1839",,Syrian hamster,"Syrian hamsters, Golden hamsters, Cricetus auratus",golden hamster,Mesocricetus auratus,bio/MesocricetusAuratus,,bio/Mesocricetus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10049,,"Arvicola Lacepede, 1799",,,,,Arvicola,bio/Arvicola,,,,,, +10053,,"Microtus Schrank, 1798",,,Pitymys,meadow voles,Microtus,bio/Microtus,,,,,, +10054,,"Arvicola xanthognatha Leach, 1814",,taiga vole,Arvicola xanthognatha,yellow-cheeked vole,Microtus xanthognathus,bio/MicrotusXanthognathus,,bio/Microtus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10062,,,,,,,Spalax,bio/Spalax,,,,,, +10067,,,,,,spiny mice,Acomys,bio/Acomys,,,,,, +10068,,"Mus cahirinus Saint-Hilaire, 1803",,Cairo spiny mouse,"Acomys albigena, Acomys airensis, Mus cahirinus",Egyptian spiny mouse,Acomys cahirinus,bio/AcomysCahirinus,,bio/Acomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10084,,,,,,,Cricetomys,bio/Cricetomys,,,,,, +10085,,"Cricetomys gambianus Waterhouse, 1840",,Gambia rat,"Gambian pouched rats, Gambian pouched rat",Gambian giant pouched rat,Cricetomys gambianus,bio/CricetomysGambianus,,bio/Cricetomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10089,,"Mus formosanus Kuroda, 1925",,ricefield mouse,Mus formosanus,Ryukyu mouse,Mus caroli,bio/MusCaroli,,bio/Mus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10090,,"Mus musculus Linnaeus, 1758",,mouse,"Mus sp. 129SV, transgenic mice, LK3 transgenic mice, nude mice",house mouse,Mus musculus,bio/MusMusculus,,bio/Mus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10093,,"Mus pahari Thomas, 1916",,Gairdner's shrewmouse,Coelomys parahi,shrew mouse,Mus pahari,bio/MusPahari,,bio/Coelomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10096,,"Mus spretus Lataste, 1883",,Algerian mouse,Mus musculus spretus,western wild mouse,Mus spretus,bio/MusSpretus,,bio/Mus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10103,,"Mus spicilegus Petenyi, 1882",,mound-building mouse,Mus hortulanus,steppe mouse,Mus spicilegus,bio/MusSpicilegus,,bio/Mus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10111,,,,,,African soft-furred rats,Praomys,bio/Praomys,,,,,, +10112,,"Mastomys natalensis (Smith, 1834)",,Natal multimammate rat,"Mastomys hildebrandtii, Mastomys hildebrandti, Praomys natalensis, Myomys fumatus, Mastomys natalensis hildebrandtii",African soft-furred rat,Mastomys natalensis,bio/MastomysNatalensis,,bio/Mastomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10113,,"Praomys daltoni (Thomas, 1892)",,Dalton's mouse,"Myomys daltoni, Myomyscus daltoni",Dalton's Praomys,Praomys daltoni,bio/PraomysDaltoni,,bio/Praomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10114,,,,rats,,,Rattus,bio/Rattus,,,,,, +10116,,"Mus norvegicus Berkenhout, 1769",,rats,"Rattus sp. strain Wistar, laboratory rat, zitter rats, Sprague-Dawley rat, Mus norvegicus, Buffalo rat, Rattus PC12 clone IS, Wistar rats",Norway rat,Rattus norvegicus,bio/RattusNorvegicus,,bio/Rattus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10117,,"Rattus wroughtoni Hinton, 1919",,roof rat,"Rattus rattoides, Rattus rattus, Rattus wroughtoni, Mus rattus",black rat,Rattus rattus,bio/RattusRattus,,bio/Rattus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10121,,"Mus tunneyi Thomas, 1904",,pale field rat,Mus tunneyi,Tunney's rat,Rattus tunneyi,bio/RattusTunneyi,,bio/Rattus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10128,,,,,,,Apodemus,bio/Apodemus,,,,,, +10129,,"Mus sylvaticus Linnaeus, 1758",,Long-tailed field mouse,"Sylvaemus sylvaticus, Mus sylvaticus",European woodmouse,Apodemus sylvaticus,bio/ApodemusSylvaticus,,bio/SylvaemusGroup,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10140,,,,guinea-pigs,,guinea pigs,Cavia,bio/Cavia,,,,,, +10141,,"Mus porcellus Linnaeus, 1758",,guinea pig,"Cavia aperea porcellus, Cavia cobaya, Mus porcellus",domestic guinea pig,Cavia porcellus,bio/CaviaPorcellus,,bio/Cavia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10145,,,,,,,Galea,bio/Galea,,,,,, +10146,,"Galea musteloides Meyen, 1833",,Common yellow-toothed cavy,Galea comes,cuis,Galea musteloides,bio/GaleaMusteloides,,bio/Galea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10148,,,,,"Hydrochaeris, Hydrochaerus",,Hydrochoerus,bio/Hydrochoerus,,,,,, +10149,,"Sus hydrochaeris Linnaeus, 1766",,carpincho,"Hydrochaerus hydrochaeris, Hydrochaeris hydrochaeris, Sus hydrochaeris",capybara,Hydrochoerus hydrochaeris,bio/HydrochoerusHydrochaeris,,bio/Hydrochoerus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10156,,,,,,,Myocastor,bio/Myocastor,,,,,, +10157,,"Myocastor coypus (Molina, 1782)",,coypu,Mus coypus,nutria,Myocastor coypus,bio/MyocastorCoypus,,bio/Myocastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10162,,,,,,,Proechimys,bio/Proechimys,,,,,, +10170,,"Bathyergus Illiger, 1811",,,,,Bathyergus,bio/Bathyergus,,,,,, +10172,,"Mus suillus Schreber, 1782",,Cape dune mole rat,Mus suillus,Cape dune mole-rat,Bathyergus suillus,bio/BathyergusSuillus,,bio/Bathyergus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10173,,"Cryptomys Gray, 1864",,,Coetomys,,Cryptomys,bio/Cryptomys,,,,,, +10175,,"Cryptomys hottentotus (Lesson, 1826)",,common mole-rat,Bathyergus hottentotus,Hottentot mole-rat,Cryptomys hottentotus,bio/CryptomysHottentotus,,bio/Cryptomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +10298,"HSV-1, HSV1",,,,"herpes simplex virus type 1 HSV1, herpes simplex virus HSV-1, herpes simplex virus 1 HSV-1, Herpes simplex virus 1, Human herpesvirus type 1, herpes simplex virus type-1 HSV-1, herpes simplex virus type 1 HSV-1, Human herpesvirus 1",Herpes simplex virus type 1,Human alphaherpesvirus 1,bio/HumanAlphaherpesvirus1,"dcs:BiologicalHostHuman,dcs:BiologicalHostVertebrates",bio/SimplexvirusHumanalpha1,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10325,CeHV-1,,,monkey B virus,"Cercopithecine herpesvirus 1, herpes B virus, Cercopithecid herpesvirus 1, B virus, Simian herpesvirus B, herpes virus B, Herpesvirus simiae, simian herpes B virus SHBV, Macacine herpesvirus 1, Simian herpes B virus",,Macacine alphaherpesvirus 1,bio/MacacineAlphaherpesvirus1,"dcs:BiologicalHostHuman,dcs:BiologicalHostVertebrates",bio/SimplexvirusMacacinealpha1,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10326,EHV-1,,,,"Equid herpesvirus 1, Equine herpesvirus-1, equine herpesvirus type-1, Equine herpesvirus type 1, equine abortion virus, equine herpesvirus 1 EHV-1, equine herpesvirus type 1 EHV-1",Equine herpesvirus 1,Equid alphaherpesvirus 1,bio/EquidAlphaherpesvirus1,dcs:BiologicalHostVertebrates,bio/VaricellovirusEquidalpha1,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10331,"EHV-4, EHV4",,,,"equine herpesvirus 4 EHV-4, equine rhinopneumonitis virus, equine herpesvirus 4 EHV4, equine herpesvirus type 4 EHV-4, equine herpesvirus type 4, Equid herpesvirus 4",Equine herpesvirus 4,Equid alphaherpesvirus 4,bio/EquidAlphaherpesvirus4,dcs:BiologicalHostVertebrates,bio/VaricellovirusEquidalpha4,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10335,"HHV-3, VZV",,,,"Varicella Zoster Virus, varicella zoster virus VZV, Human herpes virus 3, Human herpesvirus 3, varicella-zoster virus VZV",Varicella-zoster virus,Human alphaherpesvirus 3,bio/HumanAlphaherpesvirus3,"dcs:BiologicalHostHuman,dcs:BiologicalHostVertebrates",bio/VaricellovirusHumanalpha3,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10376,"EBV, HHV-4",,,Epstein Barr virus,"Human herpesvirus 4, Human herpesvirus type 4, Epstein-Barr virus EBV",Epstein-Barr virus,human gammaherpesvirus 4,bio/HumanGammaherpesvirus4,"dcs:BiologicalHostHuman,dcs:BiologicalHostVertebrates",bio/LymphocryptovirusHumangamma4,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10390,"GaHV-2, MDV1",,,Marek disease virus type 1,"Gallid herpesvirus 2, Marek's disease herpesvirus, Marek's disease virus type 1, Marek's disease virus serotype 1 MDV-1, Marek's disease virus type 1 MDV1, Marek's disease virus MDV, Mareks disease virus, Marek's disease virus MDV1, Marek disease virus, Marek's disease virus (MDV), Marek's disease herpesvirus 1, Marek's disease virus, Gallid herpesvirus type 2",,Gallid alphaherpesvirus 2,bio/GallidAlphaherpesvirus2,dcs:BiologicalHostVertebrates,bio/MardivirusGallidalpha2,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10401,IcHV-1,,,,channel catfish virus CCV,Channel catfish virus,Ictalurid herpesvirus 1,bio/IctaluridHerpesvirus1,dcs:BiologicalHostVertebrates,bio/IctavirusIctaluridallo1,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +10995,IBDV,,,,"infectious bursal disease virus IBDV, Infectious bursal disease virus of chickens, Avian infectious bursal disease virus",Gumboro virus,Infectious bursal disease virus,bio/InfectiousBursalDiseaseVirus,dcs:BiologicalHostVertebrates,bio/AvibirnavirusGumboroense,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +11855,MPMV,,,,"simian Mason-Pfizer D-type retrovirus SM-PDT, Simian Mason-Pfizer type D retrovirus, Simian mason-pfizer virus",,Mason-Pfizer monkey virus,bio/MasonpfizerMonkeyVirus,,,,,, +12304,,,,,,,Cucumovirus,bio/Cucumovirus,,,,,, +12305,CMV,,,,"cucumber mosaic cucumovirus CMV, cucumber mosaic virus, CMV, cucumber mosaic virus CMV",cucumber mosaic cucumovirus,Cucumber mosaic virus,bio/CucumberMosaicVirus,dcs:BiologicalHostLandPlants,bio/Cucumovirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionViruses,True,dcs:TaxonTopLevelCategoryVirusesAndViroids +12657,EHV-2,,,,"Equine herpes virus type 2, equine cytomegalovirus, Equid herpesvirus 2, not_Equid_herpesvirus_2, Equine herpes virus 2",Equine herpesvirus 2,Equid gammaherpesvirus 2,bio/EquidGammaherpesvirus2,dcs:BiologicalHostVertebrates,bio/PercavirusEquidgamma2,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +12912,,,,,,,Acanthurus,bio/Acanthurus,,,,,, +12945,,"Aratinga Spix, 1824",,,,,Aratinga,bio/Aratinga,,,,,, +12946,,"Psittacara erythrogenys Lesson, 1844",,red-masked conure,Aratinga erythrogenys,red-masked parakeet,Psittacara erythrogenys,bio/PsittacaraErythrogenys,,bio/Psittacara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +12981,,,,,,,Cacatua,bio/Cacatua,,,,,, +12983,,"Cacatua goffiniana Roselaar & Michaels, 2004",,Goffin's cockatoo,"Cacatua goffini, Kakatoe sanguinea goffini",Tanimbar cockatoo,Cacatua goffiniana,bio/CacatuaGoffiniana,,bio/Cacatua,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13012,,,,,,,Clarias,bio/Clarias,,,,,, +13013,,"Silurus gariepinus Burchell, 1822",,sharptooth catfish,"Clarias lazera, Silurus gariepinus, Siluriformes sp. BOLD:AAB2256",North African catfish,Clarias gariepinus,bio/ClariasGariepinus,,bio/Clarias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13028,,,,,,,Cynoscion,bio/Cynoscion,,,,,, +13029,,"Otolithus nebulosus Cuvier, 1830",,spotted weakfish,Otolithus nebulosus,spotted seatrout,Cynoscion nebulosus,bio/CynoscionNebulosus,,bio/Cynoscion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13037,,"Papilio plexippus Linnaeus, 1758",,American monarch,"Papilio plexippus, Danaus (Danaus) plexippus",monarch butterfly,Danaus plexippus,bio/DanausPlexippus,,bio/Danaus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13039,,,,,,,Diaprepes,bio/Diaprepes,,,,,, +13040,,"Diaprepes abbreviatus (Linnaeus, 1758)",,West Indian weevil,Diaprepes abbreviata,Diaprepes root weevil,Diaprepes abbreviatus,bio/DiaprepesAbbreviatus,,bio/Diaprepes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13084,,"Heteronotia Wermuth, 1965",,,,,Heteronotia,bio/Heteronotia,,,,,, +13090,,Hosta Tratt.,,,,plantain lilies,Hosta,bio/Hosta,,,,,, +13091,,"Hosta lancifolia Engl., 1887",,saji-giboshi,Hosta japonica,Japanese plantain lily,Hosta lancifolia,bio/HostaLancifolia,,bio/Hosta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +13105,,,,,,,Lepomis,bio/Lepomis,,,,,, +13122,,,,,,gypsy moths,Lymantria,bio/Lymantria,,,,,, +13138,,,,,,,Mastotermes,bio/Mastotermes,,,,,, +13139,,"Mastotermes darwiniensis Froggatt, 1897",,Darwin's termite,Mastotermes darwinensis,giant northern termite,Mastotermes darwiniensis,bio/MastotermesDarwiniensis,,bio/Mastotermes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13150,,,,,,,Micromys,bio/Micromys,,,,,, +13151,,"Mus minutus Pallas, 1771",,Eurasian harvest mouse,Mus minutus,European harvest mouse,Micromys minutus,bio/MicromysMinutus,,bio/Micromys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +13163,,,,,,,Myzus,bio/Myzus,,,,,, +13164,,"Myzus persicae (Sulzer, 1776)",,peach-potato aphid,Myzus (Nectarosiphon) persicae,green peach aphid,Myzus persicae,bio/MyzusPersicae,,bio/Myzus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13213,,,,,,,Pionus,bio/Pionus,,,,,, +13253,,"Sabal Adans., 1763",,palmettoes,,palmettos,Sabal,bio/Sabal,,,,,, +13265,,,,,,,Smilodon,bio/Smilodon,,,,,, +13266,,"Felis fatalis Leidy, 1868",,saber-toothed tiger,Felis fatalis,saber-toothed cat,Smilodon fatalis,bio/SmilodonFatalis,,bio/Smilodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +13289,,"Tilletia Tul. & C. Tul., 1847",,,,,Tilletia,bio/Tilletia,,,,,, +13290,,"Uredo caries DC., 1815",,stinking smut of wheat,"Uredo caries, Tilletia tritici",wheat bunt fungus,Tilletia caries,bio/TilletiaCaries,,bio/Tilletia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +13396,,,,,,,Carcharodon,bio/Carcharodon,,,,,, +13397,,"Squalus carcharias Linnaeus, 1758",,white shark,Squalus carcharias,great white shark,Carcharodon carcharias,bio/CarcharodonCarcharias,,bio/Carcharodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13426,,"Cichorium L., 1753",,,,,Cichorium,bio/Cichorium,,,,,, +13427,,"Cichorium intybus L., 1753",,succory,Puna chicory,chicory,Cichorium intybus,bio/CichoriumIntybus,,bio/Cichorium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +13488,,,,,,,Dicentrarchus,bio/Dicentrarchus,,,,,, +13489,,"Perca labrax Linnaeus, 1758",,European sea bass,"Sciaena labrax, Labrax labrax, Perca labrax, Roccus labrax, Morone labrax",European seabass,Dicentrarchus labrax,bio/DicentrarchusLabrax,,bio/Dicentrarchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13580,,,,,,,Katsuwonus,bio/Katsuwonus,,,,,, +13603,,"Tetrapturus indicus Cuvier, 1832",,silver marlin,"Tetrapturus indicus, Makaira indica, Istiomax indicus",black marlin,Istiompax indica,bio/IstiompaxIndica,,bio/Istiompax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13625,,"Paeonia L., 1753",,,,peonies,Paeonia,bio/Paeonia,,,,,, +13632,,"Lucilia sericata (Meigen, 1826)",,sheep blowfly,Phaenicia sericata,common green bottle fly,Lucilia sericata,bio/LuciliaSericata,,bio/Lucilia_Flies,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13667,,"Sansevieria Thunb., 1794",,,,bowstring hemps,Sansevieria,bio/Sansevieria,,,,,, +13675,,,,,,,Scomber,bio/Scomber,,,,,, +13676,,"Scomber japonicus Houttuyn, 1782",,Spanish mackerel,Pneumatophorus japonicus,chub mackerel,Scomber japonicus,bio/ScomberJaponicus,,bio/Scomber,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13707,,Tagetes L.,,,,marigolds,Tagetes,bio/Tagetes,,,,,, +13708,,"Tagetes remotiflora Kunze, 1847",,big marigold,Tagetes remotiflora,African marigold,Tagetes erecta,bio/TagetesErecta,,bio/Tagetes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +13721,,"Tetrapturus audax (Philippi, 1887)",,striped swordfish,"Istiophorus audax, Makaira audax, Histiophorus audax, Marlina audax, Tetrapturus audax",striped marlin,Kajikia audax,bio/KajikiaAudax,,bio/Kajikia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13735,,"Trionyx sinensis Wiegmann, 1835",,Chinese softshell turtle,Trionyx sinensis,Chinese soft-shelled turtle,Pelodiscus sinensis,bio/PelodiscusSinensis,,bio/Pelodiscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13745,,,,,,murres,Uria,bio/Uria,,,,,, +13746,,"Uria aalge (Pontoppidan, 1763)",,Guillemot,Colymbus aalge,common murre,Uria aalge,bio/UriaAalge,,bio/Uria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13763,,,,,,,Xyrichtys,bio/Xyrichtys,,,,,, +13764,,"Xyrichtys martinicensis Valenciennes, 1840",,straight-tail razorfish,Xyrichtys novacula martinicensis,rosy razorfish,Xyrichtys martinicensis,bio/XyrichtysMartinicensis,,bio/Xyrichtys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +13833,,"Ophioglossum L., 1753",,,,adder's-tongue ferns,Ophioglossum,bio/Ophioglossum,,,,,, +13834,,"Ophioglossum engelmannii Prantl, 1883",,Engelmann's adder's-tongue,Whittieria engelmannii,limestone adder's-tongue,Ophioglossum engelmannii,bio/OphioglossumEngelmannii,,bio/Ophioglossum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +15371,,"Bromus inermis Leyss., 1761",,Hungarian brome grass,Bromopsis inermis,smooth brome grass,Bromus inermis,bio/BromusInermis,,bio/Bromus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +17778,,Calycadenia DC.,,,,,Calycadenia,bio/Calycadenia,,,,,, +21819,,Mentha L.,,mints,,,Mentha,bio/Mentha,,,,,, +23012,,"Kalanchoe Adans., 1763",,Palm-Beach bells,,,Kalanchoe,bio/Kalanchoe,,,,,, +23013,,"Kalanchoe daigremontiana Raym.-Hamet & H.Perrier, 1914",,mother-of-millions,"Bryophyllum daigremontianum (Raym.-Hamet & H.Perrier) A.Berger, 1930, Kalanchoe bryophyllum",devil's backbone,Kalanchoe daigremontiana,bio/KalanchoeDaigremontiana,,bio/Kalanchoe,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +23216,,"Rubus L., 1754",,,,bramble,Rubus,bio/Rubus,,,,,, +24234,,"Proboscidea Schmidel, 1763",,,,,Proboscidea ,bio/Proboscidea_Eudicots,,,,,, +24655,,"Nicandra Adans., 1763",,,,,Nicandra ,bio/Nicandra_Eudicots,,,,,, +24735,,"Ulmus L., 1753",,,,,Ulmus,bio/Ulmus,,,,,, +26378,,"Iris L., 1753",,,,,Iris ,bio/Iris_Monocots,,,,,, +26473,,"Buddleja L., 1753",,,Buddleia,,Buddleja,bio/Buddleja,,,,,, +27457,,"Dacus dorsalis Hendel, 1912",,Philippines fruit fly,"Bactrocera sp. NG-2014, Bactrocera sp. NG-2014.NigA2, Bactrocera (Bactrocera) invadens, Bactrocera philippinensis, Bactrocera sp. ONAH-2014.OnC3, Bactrocera sp. ONAH-2014.OnE13, Bactrocera sp. ONAH-2014.OnE3, Bactrocera sp. ONAH-2014.OnD13, Bactrocera sp. ONAH-2014, Bactrocera papayae, Bactrocera invadens, Bactrocera sp. NG-2014.NigE12, Bactrocera sp. ONAH-2014.OnA8, Dacus dorsalis, Bactrocera (Bactrocera) dorsalis",oriental fruit fly,Bactrocera dorsalis,bio/BactroceraDorsalis,,bio/BactroceraDorsalisComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27578,,,,,,flying frogs,Rhacophorus,bio/Rhacophorus,,,,,, +27596,,"Bubalus depressicornis Smith, 1827",,anoa,"Bubalus depressicornis depressicornis, Bubalus depressicornis ferqusoni, Anoa depressicornis, Bubalus depressicornis fergusoni",lowland anoa,Bubalus depressicornis,bio/BubalusDepressicornis,,bio/Bubalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +27605,,,,,,,Eubalaena,bio/Eubalaena,,,,,, +27606,,"Eubalaena glacialis (Mueller, 1776)",,northern right whale,Balaena glacialis,North Atlantic right whale,Eubalaena glacialis,bio/EubalaenaGlacialis,,bio/Eubalaena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +27616,,"Dioplodon europaeus Gervais, 1855",,Gervais's beaked whale,Dioplodon europaeus,Gervais' beaked whale,Mesoplodon europaeus,bio/MesoplodonEuropaeus,,bio/Mesoplodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +27654,,"Artibeus hartii Thomas, 1892",,velvety fruit-eating bat,Enchisthenes hartii,little fruit-eating bat,Artibeus hartii,bio/ArtibeusHartii,,bio/Artibeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +27694,,,,,,,Prochilodus,bio/Prochilodus,,,,,, +27695,,"Prochilodus lineatus (Valenciennes, 1837)",,streaked prochilod,Paca lineatus,curimbata,Prochilodus lineatus,bio/ProchilodusLineatus,,bio/Prochilodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27705,,,,,,,Micropterus,bio/Micropterus,,,,,, +27706,,"Micropterus salmoides (Lacepede, 1802)",,largemouth blackbass,"Labrus salmoides, Labrus salmonides, Huro salmoides, Micropterus nigricans",largemouth bass,Micropterus salmoides,bio/MicropterusSalmoides,,bio/Micropterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27707,,,,,,,Puntius,bio/Puntius,,,,,, +27710,,,,,,,Rasbora,bio/Rasbora,,,,,, +27719,,,,,,,Hoplias,bio/Hoplias,,,,,, +27720,,"Hoplias malabaricus (Bloch, 1794)",,tiger characin,"Macrodon malabaricus, Esox malabaricus",trahira,Hoplias malabaricus,bio/HopliasMalabaricus,,bio/Hoplias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27724,,,,,,,Osteoglossum,bio/Osteoglossum,,,,,, +27726,,,,,,,Scleropages,bio/Scleropages,,,,,, +27760,,,,,,,Pseudotropheus,bio/Pseudotropheus,,,,,, +27771,,"Limanda limanda (Linnaeus, 1758)",,dab,"Pleuronectes limanda, Liopsetta limanda",common dab,Limanda limanda,bio/LimandaLimanda,,bio/Limanda,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27772,,,,,,,Coregonus,bio/Coregonus,,,,,, +27777,,"Lepisosteus platyrhincus DeKay, 1842",,Florida spotted gar,"Lepisosteus platyrhynchus, Lepisosteus platyrhinchus",Florida gar,Lepisosteus platyrhincus,bio/LepisosteusPlatyrhincus,,bio/Lepisosteus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27786,,,,,,,Eretmochelys,bio/Eretmochelys,,,,,, +27787,,"Testudo imbricata Linnaeus, 1766",,hawksbill turtle,"Testudo imbricata, Chelone imbricata",hawksbill sea turtle,Eretmochelys imbricata,bio/EretmochelysImbricata,,bio/Eretmochelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27788,,"Lepidochelys olivacea (Eschscholtz, 1829)",,olive ridley sea turtle,Chelonia olivacea,Pacific ridley,Lepidochelys olivacea,bio/LepidochelysOlivacea,,bio/Lepidochelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27789,,,,,,,Natator,bio/Natator,,,,,, +27790,,"Chelonia depressa Garman, 1880",,Australian flatback,Chelonia depressa,flatback sea turtle,Natator depressus,bio/NatatorDepressus,,bio/Natator,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +27922,,,,,,,Mnemiopsis,bio/Mnemiopsis,,,,,, +27923,,"Mnemiopsis leidyi Agassiz, 1865",,warty comb jelly,Mnemiopsis mccradyi,sea walnut,Mnemiopsis leidyi,bio/MnemiopsisLeidyi,,bio/Mnemiopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +28376,,,,,Chamaelinorops,,Anolis,bio/Anolis,,,,,, +28437,,"Zhangixalus moltrechti (Boulenger, 1908)",,Moltrecht's treefrog,"Rhacophorus moltrechti, Ingerixalus moltrechti",Nantou flying frog,Zhangixalus moltrechti,bio/ZhangixalusMoltrechti,,bio/Zhangixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +28483,,Scilla autumnalis L.,,autumn squill,Scilla autumnalis,starry hyacinth,Prospero autumnale,bio/ProsperoAutumnale,,bio/Prospero,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +28502,,"Amaranthus hypochondriacus L., 1753",,prince's feather,"Amaranthus hypocondriacus, Amaranthus hybridus var. erythrostachys Moq., 1849",grain amaranth,Amaranthus hypochondriacus,bio/AmaranthusHypochondriacus,,bio/Amaranthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +28540,,"Buddleja davidii Franch., 1888",,butterfly bush,Buddleia davidii,summer lilac,Buddleja davidii,bio/BuddlejaDavidii,,bio/Buddleja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +28588,,"Zeugodacus cucurbitae (Coquillett, 1899)",,melon fruit fly,"Zeugodacus (Zeugodacus) cucurbitae, Bactrocera (Zeugodacus) cucurbitae, Bactrocera cucurbitae",melon fly,Zeugodacus cucurbitae,bio/ZeugodacusCucurbitae,,bio/Zeugodacus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +28736,,,,,,long-eared elephant shrews,Elephantulus,bio/Elephantulus,,,,,, +28737,,"Macroscelides edwardii Smith, 1839",,Cape long-eared elephant shrew,Macroscelides edwardii,Cape elephant shrew,Elephantulus edwardii,bio/ElephantulusEdwardii,,bio/Elephantulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +28769,,,,,,,Profundulus,bio/Profundulus,,,,,, +28834,,,,,,,Cepaea,bio/Cepaea,,,,,, +28835,,"Helix nemoralis Linnaeus, 1758",,brown-lipped snail,"Helix nemoralis, Stylommatophora sp. BOLD:AAG1590",banded wood snail,Cepaea nemoralis,bio/CepaeaNemoralis,,bio/Cepaea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +28913,,"Calycadenia fremontii A.Gray, 1859",,Klamath calycadenia,Calycadenia ciliosa,Fremont's calycadenia,Calycadenia fremontii,bio/CalycadeniaFremontii,,bio/Calycadenia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +29014,,,,,,,Grammostola,bio/Grammostola,,,,,, +29017,,"Selenocosmia huwena Wang, Peng & Xie, 1993",,Chinese golden earth tiger,"Ornithoctonus huwena, Haplopelma schmidti, Selenocosmia huwena",Chinese earth tiger,Cyriopagopus schmidti,bio/CyriopagopusSchmidti,,bio/Cyriopagopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +29021,,,,,,,Scutigera,bio/Scutigera,,,,,, +29022,,"Scolopendra coleoptrata Linnaeus, 1758",,twenty-eight-legger,Scolopendra coleoptrata,house centipede,Scutigera coleoptrata,bio/ScutigeraColeoptrata,,bio/Scutigera,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +29054,,,,,,,Epinotia,bio/Epinotia,,,,,, +29058,,"Noctua armigera Hubner, 1805",,tobacco budworm,"Heliothis armigera, Noctua armigera, Heliothis (Helicoverpa) armigera",cotton bollworm,Helicoverpa armigera,bio/HelicoverpaArmigera,,bio/Helicoverpa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +29073,,"Ursus maritimus Phipps, 1774",,white bear,Thalarctos maritimus,polar bear,Ursus maritimus,bio/UrsusMaritimus,,bio/Ursus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +29081,,,,,,,Macroscelides,bio/Macroscelides,,,,,, +29089,,"Simia concolor Harlan, 1826",,crested gibbon,"Simia concolor, Hylobates concolor",Black crested gibbon,Nomascus concolor,bio/NomascusConcolor,,bio/Nomascus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +29090,,,,,,,Dolichotis,bio/Dolichotis,,,,,, +29091,,"Dolichotis patagonum (Zimmermann, 1780)",,Patagonian mara,Cavia patagonum,Patagonian cavy,Dolichotis patagonum,bio/DolichotisPatagonum,,bio/Dolichotis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +29092,,"Mus agrestis Linnaeus, 1761",,field vole,Mus agrestis,short-tailed field vole,Microtus agrestis,bio/MicrotusAgrestis,,bio/Microtus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +29138,,,,,,,Vombatus,bio/Vombatus,,,,,, +29139,,"Didelphis ursina Shaw, 1800",,coarse-haired wombat,Didelphis ursina,common wombat,Vombatus ursinus,bio/VombatusUrsinus,,bio/Vombatus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +29153,,,,,,,Micropogonias,bio/Micropogonias,,,,,, +29642,,Neottopteris nidus (L.) J.Sm.,,nest fern,Neottopteris nidus,bird's-nest fern,Asplenium nidus,bio/AspleniumNidus,,bio/Asplenium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +29694,,Pennisetum villosum R.Br. ex Fresen.,,feathertop,Pennisetum villosum,white foxtail,Cenchrus longisetus,bio/CenchrusLongisetus,,bio/Cenchrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +29706,,"Sporobolus alterniflorus (Loisel.) P.M.Peterson & Saarela, 2014",,salt marsh cordgrass,Spartina alterniflora,smooth cordgrass,Sporobolus alterniflorus,bio/SporobolusAlterniflorus,,bio/Sporobolus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +29710,,"Dioscorea cayenensis Lam., 1789",,yellow yam,Dioscorea cayennensis,,Dioscorea cayenensis,bio/DioscoreaCayenensis,,,,,, +29892,,"Tremella auricula-judae Bull., 1789",,wood ear,"Tremella auricula-judae, Auricularia auricula, Hirneola auricula-judae, Auricularia auricula-judae (Bull.) Quel., 1886",ear fungus,Auricularia auricula-judae,bio/AuriculariaAuriculajudae,,bio/Auricularia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +30195,,"Bombus terrestris (Linnaeus, 1758)",,large earth bumblebee,Apis terrestris,buff-tailed bumblebee,Bombus terrestris,bio/BombusTerrestris,,bio/Bombus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30252,,"Monopterus Fischer-Waldheim, 1846",,,"grasshoppers, Monopterus",,Melanoplus,bio/Melanoplus,,,,,, +30316,,,,,,,Spea,bio/Spea,,,,,, +30317,,"Scaphiopus multiplicatus (Cope, 1863)",,southern spadefoot toad,"Scaphiopus multiplicatus, Spea hammondii multiplicata, Scaphiopus multiplicata",Mexican spadefoot toad,Spea multiplicata,bio/SpeaMultiplicata,,bio/Spea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30325,,"Bufo boreas Baird & Girard, 1852",,western toad,Bufo boreas,boreal toad,Anaxyrus boreas,bio/AnaxyrusBoreas,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30326,,"Epidalea calamita (Laurenti, 1768)",,running toad,Bufo calamita,natterjack toad,Epidalea calamita,bio/EpidaleaCalamita,,bio/Epidalea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30327,,"Bufo canorus Camp, 1916",,Yosemite Park toad,Bufo canorus,Yosemite toad,Anaxyrus canorus,bio/AnaxyrusCanorus,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30331,,"Bufo gargarizans Cantor, 1842",,Zhoushan toad,"Bufo bufo gargarizans, Bufo japonicus gargarizans",Asiatic toad,Bufo gargarizans,bio/BufoGargarizans,,bio/Bufo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30332,,"Rhinella granulosa (Spix, 1824)",,common lesser toad,"Chaunus granulosus, Bufo granulosus",granular toad,Rhinella granulosa,bio/RhinellaGranulosa,,bio/Rhinella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30334,,"Bufo regularis kisoloensis Loveridge, 1932",,montane golden toad,"Amietophrynus kisoloensis, Bufo regularis kisoloensis, Bufo kisoloensis",Kisolo toad,Sclerophrys kisoloensis,bio/SclerophrysKisoloensis,,bio/Sclerophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30335,,"Duttaphrynus melanostictus (Schneider, 1799)",,Southeast Asian toad,"Bufo melanostictus, Docidophryne melanostictus, Bufo melanosticus, Phrynoidis melanostictus",Asian common toad,Duttaphrynus melanostictus,bio/DuttaphrynusMelanostictus,,bio/Duttaphrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30336,,"Bufo microscaphus Cope, 1867",,southwestern toad,Bufo microscaphus,Arizona toad,Anaxyrus microscaphus,bio/AnaxyrusMicroscaphus,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30338,,"Pseudepidalea viridis (Laurenti, 1768)",,Palearctic green toad,"Bufo viridis, Pseudepidalea viridis",European green toad,Bufotes viridis,bio/BufotesViridis,,bio/Bufotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30343,,"Hyla versicolor LeConte, 1825",,eastern gray treefrog,Hyla versicolor,chameleon treefrog,Dryophytes versicolor,bio/DryophytesVersicolor,,bio/Dryophytes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30344,,"Ranoidea caerulea (White, 1790)",,green tree frog,"Rana caerulea, Pelodryas caerulea, Hyla caerulea",White's tree frog,Ranoidea caerulea,bio/RanoideaCaerulea,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30348,,,,,,,Pseudophryne,bio/Pseudophryne,,,,,, +30374,,"Hemitriton asper Duges, 1852",,Pyrenean brook salamander,"Euproctus asper, Hemitriton asper",Pyrenean brook newt,Calotriton asper,bio/CalotritonAsper,,bio/Calotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30384,,,,,,,Aythya,bio/Aythya,,,,,, +30389,,,,,,great herons,Ardea,bio/Ardea,,,,,, +30408,,"Phasianus crossoptilon Hodgson, 1838",,Szechuan white-eared pheasant,Phasianus crossoptilon,white-eared pheasant,Crossoptilon crossoptilon,bio/CrossoptilonCrossoptilon,,bio/Crossoptilon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30413,,,,,,,Balearica,bio/Balearica,,,,,, +30414,,"Balearica pavonina (Linnaeus, 1758)",,crowned crane,Ardea pavonina,black crowned-crane,Balearica pavonina,bio/BalearicaPavonina,,bio/Balearica,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30415,,"Grus japonensis (Statius Muller, 1776)",,Japanese crane,"Ardea japonensis, Grus japonicus",Red-crowned crane,Grus japonensis,bio/GrusJaponensis,,bio/Grus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30420,,,,,,crows,Corvus,bio/Corvus,,,,,, +30423,,"Corvus monedula Linnaeus, 1758",,Dohle,"Corvus monedula, Corvus monedula (Linnaeus, 1758)",jackdaw,Coloeus monedula,bio/ColoeusMonedula,,bio/Coloeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30424,,,,,,buntings,Emberiza,bio/Emberiza,,,,,, +30425,,"Fringilla schoeniclus Linnaeus, 1758",,Rohrammer,"Schoeniclus schoeniclus, Fringilla schoeniclus",reed bunting,Emberiza schoeniclus,bio/EmberizaSchoeniclus,,bio/Emberiza,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30426,,,,,,,Carpodacus,bio/Carpodacus,,,,,, +30427,,"Fringilla mexicana Statius Muller, 1776",,California linnet,"Carpodacus mexicanus, Fringilla mexicana, Burrica mexicana",house finch,Haemorhous mexicanus,bio/HaemorhousMexicanus,,bio/Haemorhous,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30456,,"Psittacus senilis von Spix, 1824",,white-crowned parrot,Psittacus senilis,white-capped parrot,Pionus senilis,bio/PionusSenilis,,bio/Pionus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30460,,,,,,eagle owls,Bubo,bio/Bubo,,,,,, +30461,,"Strix bubo Linnaeus, 1758",,Eurasian eagle owl,Strix bubo,Eurasian eagle-owl,Bubo bubo,bio/BuboBubo,,bio/Bubo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30489,,"Squalus africanus Gmelin, 1789",,striped catshark,"Poroderma africanus, Squalus africanus",African catshark,Poroderma africanum,bio/PorodermaAfricanum,,bio/Poroderma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30520,,"Bos frontalis Lambert, 1804",,mithun,Bos gaurus frontalis,gayal,Bos frontalis,bio/BosFrontalis,,bio/Bos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +30521,,"Bos grunniens Linnaeus, 1766",,yak,"Peophagus grunniens, Bos mutus grunniens",domestic yak,Bos grunniens,bio/BosGrunniens,,bio/Bos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +30531,,"Cervus axis Erxleben, 1777",,spotted deer,Cervus axis,chital,Axis axis,bio/AxisAxis,,bio/Axis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +30532,,"Cervus dama Linnaeus, 1758",,Texas fallow deers,Cervus dama,fallow deer,Dama dama,bio/DamaDama,,bio/Dama,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +30539,,,,,,,Vicugna,bio/Vicugna,,,,,, +30576,,"Erinaceus algirus Lereboullet, 1842",,North African hedgehog,"Erinaceus algirus, Aethechinus algirus",Algerian hedgehog,Atelerix algirus,bio/AtelerixAlgirus,,bio/Atelerix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +30587,,,,,,,Leontopithecus,bio/Leontopithecus,,,,,, +30590,,"Simia belzebul Linnaeus, 1766",,red-handed howler monkey,"Alouatta nigerrima, Simia belzebul",black-and-red howler monkey,Alouatta belzebul,bio/AlouattaBelzebul,,bio/Alouatta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +30591,,"Simia azarai Humboldt, 1812",,Azara's owl monkey,"Aotus azarae, Simia azarai",Azara's night monkey,Aotus azarai,bio/AotusAzarai,,bio/Aotus_Primates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +30593,,,,,,,Brachyteles,bio/Brachyteles,,,,,, +30594,,"Simia arachnoides Geoffroy, 1806",,muriqui,Simia arachnoides,woolly spider monkey,Brachyteles arachnoides,bio/BrachytelesArachnoides,,bio/Brachyteles,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +30595,,,,,,,Cacajao,bio/Cacajao,,,,,, +30596,,"Simia calva Geoffroy, 1847",,red uakari,Simia calva,Bald Uacari,Cacajao calvus,bio/CacajaoCalvus,,bio/Cacajao,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +30597,,,,,,saki monkeys,Pithecia,bio/Pithecia,,,,,, +30609,,"Galago moholi Smith, 1836",,South African galago,Galago senegalensis moholi,Moholi bushbaby,Galago moholi,bio/GalagoMoholi,,bio/Galago,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +30610,,,,,,greater bushbabies,Otolemur,bio/Otolemur,,,,,, +30630,,"Microtus levis Miller, 1908",,southern vole,"Microtus epiroticus, Microtus subarvalis",East European vole,Microtus levis,bio/MicrotusLevis,,bio/Microtus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +30639,,,,,,multimammate rats,Mastomys,bio/Mastomys,,,,,, +30640,,"Sciurus carolinensis Gmelin, 1788",,eastern gray squirrel,Neosciurus carolinensis,gray squirrel,Sciurus carolinensis,bio/SciurusCarolinensis,,bio/Sciurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +30732,,"Oryzias melastigma (McClelland, 1839)",,marine medaka,Aplocheilus melastigmus,Indian medaka,Oryzias melastigma,bio/OryziasMelastigma,,bio/Oryzias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30804,,"Mugil ramado Risso, 1810",,thin-lipped grey mullet,"Liza capito, Mugil ramada, Mugil capito, Liza ramado, Liza ramada, Mugil cephalus ramado, Mugil ramado",thin-lipped mullet,Chelon ramada,bio/ChelonRamada,,bio/Chelon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30962,,"Salmo clarkii Richardson, 1836",,,"Oncorhynchus clarki, Salmo clarkii, Salmo clarki",cutthroat trout,Oncorhynchus clarkii,bio/OncorhynchusClarkii,,,,,, +30991,,"Silurus asotus Linnaeus, 1758",,namazu,Parasilurus asotus,Amur catfish,Silurus asotus,bio/SilurusAsotus,,bio/Silurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +30992,,,,,,,Pangasianodon,bio/Pangasianodon,,,,,, +30993,,"Pangasianodon gigas Chevey, 1931",,giant catfish,Pangasius gigas,Mekong giant catfish,Pangasianodon gigas,bio/PangasianodonGigas,,bio/Pangasianodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +31032,,,,,Fugu,,Takifugu,bio/Takifugu,,,,,, +31033,,"Takifugu rubripes (Temminck & Schlegel, 1850)",,tiger puffer,"Fugu rubripes, Sphaeroides rubripes, Tetraodon rubripes",torafugu,Takifugu rubripes,bio/TakifuguRubripes,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +31155,,"Vipera berus (Linnaeus, 1758)",,Kreuzotter,Coluber berus,adder,Vipera berus,bio/ViperaBerus,,bio/Vipera,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +32071,,"Asplenium L., 1753",,,"Phyllitis, Pleurosorus, Ceterach",spleenworts,Asplenium,bio/Asplenium,,,,,, +32439,,,,,Urolophoides,,Dasyatis,bio/Dasyatis,,,,,, +32457,,,,,,,Glossolepis,bio/Glossolepis,,,,,, +32459,,,,,,,Melanotaenia,bio/Melanotaenia,,,,,, +32548,,,,,,,Myoictis,bio/Myoictis,,,,,, +32549,,"Phascogalea melas MAA1/4ller, 1840 Muller, 1840",,three-striped dasyure,"Phascogale melas, Phascogalea melas MAA1/4ller, 1840",three-striped marsupial mouse,Myoictis melas,bio/MyoictisMelas,,bio/Myoictis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +32560,,"Phascogale murina Waterhouse, 1838",,slender-tailed dunnart,Phascogale murina,narrow-footed marsupial mouse,Sminthopsis murina,bio/SminthopsisMurina,,bio/Sminthopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +32643,,,,,,,Heleophryne,bio/Heleophryne,,,,,, +33118,,"Nicandra physalodes Gaertn., 1791",,apple-of-Peru,Nicandra physaloides,shoo-fly plant,Nicandra physalodes,bio/NicandraPhysalodes,,bio/Nicandra_Eudicots,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +33120,,"Physalis alkekengi L., 1753",,winter-cherry,Physalis alkekengi,Japanese lantern,Alkekengi officinarum,bio/AlkekengiOfficinarum,,bio/Alkekengi,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +33416,,,,,"Laparus, Neruda",,Heliconius,bio/Heliconius,,,,,, +33434,,"Papilio charithonia Linnaeus, 1767",,zebra butterfly,"Papilio charithonia, Heliconius charitonius",zebra longwing,Heliconius charithonia,bio/HeliconiusCharithonia,,bio/Heliconius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +33452,,,,,,,Dryas ,bio/Dryas_Butterflies,,,,,, +33453,,"Papilio iulia Fabricius, 1775",,julia,"Papilio iulia, Dryas julia",julia butterfly,Dryas iulia,bio/DryasIulia,,bio/Dryas_Butterflies,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +33465,,"Yponomeuta Latreille, 1796",,,Hyponomeuta,European small ermine moth,Yponomeuta,bio/Yponomeuta,,,,,, +33466,,"Yponomeuta malinellus (Zeller, 1838)",,apple ermine,Hyponomeuta malinellus,apple ermine moth,Yponomeuta malinellus,bio/YponomeutaMalinellus,,bio/Yponomeuta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +33519,,"Nematocentris splendida Peters, 1866",,eastern rainbow fish,Nematocentris splendida,eastern rainbowfish ,Melanotaenia splendida,bio/MelanotaeniaSplendida,,bio/Melanotaenia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +33529,,"Profundulus punctatus (Gunther, 1866)",,Oaxaca killifish,Fundulus punctatus,brownspotted killifish,Profundulus punctatus,bio/ProfundulusPunctatus,,bio/Profundulus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +33533,,,,,Aspitrigla,,Chelidonichthys,bio/Chelidonichthys,,,,,, +33548,,"Colobus guereza Ruppell, 1835",,guereza,Colobus abyssinicus,mantled guereza,Colobus guereza,bio/ColobusGuereza,,bio/Colobus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +33609,,,,,,,Gypaetus,bio/Gypaetus,,,,,, +33610,,"Vultur barbatus Linnaeus, 1758",,Laemmergeier,Vultur barbatus,lammergeier,Gypaetus barbatus,bio/GypaetusBarbatus,,bio/Gypaetus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +33630,,,,,,alveolates,Alveolata,bio/Alveolata,,,,,, +33682,,"Euglenozoa Cavalier-Smith 1981, emend. Simpson 1997",,,Euglenozoans,,Euglenozoa,bio/Euglenozoa,,,,,, +33708,MuHV-4,,,,"Murid herpesvirus 4, murine herpesvirus type 68, mouse herpesvirus strain 68, mouse herpesvirus 68, murine gammaherpesvirus 68",Murine herpesvirus 68,Murid gammaherpesvirus 4,bio/MuridGammaherpesvirus4,dcs:BiologicalHostVertebrates,bio/RhadinovirusMuridgamma4,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +33789,,Ophicephalus Bloch 1793,,,Ophicephalus,,Channa,bio/Channa,,,,,, +33790,,"Ophicephalus gachua Hamilton, 1822",,red-tailed snakehead,"Channa aurantiacus, Ophicephalus gachua",dwarf snakehead,Channa gachua,bio/ChannaGachua,,bio/Channa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +33993,,Neorickettsia Philip et al. 1953 (Approved Lists 1980) emend. Dumler et al. 2001,,,risticii group of Ehrlichia,,Neorickettsia,bio/Neorickettsia,,,,,, +34172,,"Sabal minor (Jacq.) Pers., 1805",,scrub palmetto,Sabal adansonii,dwarf palmetto,Sabal minor,bio/SabalMinor,,bio/Sabal,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +34205,,"Iris x nepalensis Wall. ex Lindl., 1824, non Iris nepalensis D.Don, 1825",,fleur-de-lis,"Iris pallida x Iris variegata, Iris x nepalensis, Iris x germanica",flag,Iris germanica,bio/IrisGermanica,,bio/Iris_Monocots,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +34474,,"Piptoporus P. Karst., 1881",,,Piptoporus,,Fomitopsis,bio/Fomitopsis,,,,,, +34646,,,,,,,Mesobuthus,bio/Mesobuthus,,,,,, +34647,,"Mesobuthus tamulus (Fabricius, 1798)",,eastern Indian scorpion,Buthus tamulus,Indian red scorpion,Mesobuthus tamulus,bio/MesobuthusTamulus,,bio/Mesobuthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34649,,"Mesobuthus martensii (Karsch, 1879)",,Manchurian scorpion,"Buthus martensii, Buthus martensi, Mesobuthus martensi",Chinese scorpion,Mesobuthus martensii,bio/MesobuthusMartensii,,bio/Mesobuthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34675,,,,,,,Protophormia,bio/Protophormia,,,,,, +34676,,"Protophormia terraenovae (Robineau-desvoidy, 1830)",,blue-bottle fly,"Phormia terranovae, Protophormia terrae-novae, Phormia terraenovae",northern blowfly,Protophormia terraenovae,bio/ProtophormiaTerraenovae,,bio/Protophormia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34740,,"Papilio melpomene Linnaeus, 1758",,common postman,Papilio melpomene,postman butterfly,Heliconius melpomene,bio/HeliconiusMelpomene,,bio/Heliconius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34767,,,,,,,Chiloscyllium,bio/Chiloscyllium,,,,,, +34815,,,,,Roccus,,Morone,bio/Morone,,,,,, +34816,,"Perca saxatilis Walbaum, 1792",,striped bass,Perca saxatilis,striped sea-bass,Morone saxatilis,bio/MoroneSaxatilis,,bio/Morone,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34818,,,,,,,Glyptocephalus,bio/Glyptocephalus,,,,,, +34819,,"Pleuronectes cynoglossus Linnaeus, 1758",,greysole,Pleuronectes cynoglossus,witch,Glyptocephalus cynoglossus,bio/GlyptocephalusCynoglossus,,bio/Glyptocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34820,,,,,,,Sebastes,bio/Sebastes,,,,,, +34885,,,,,,,Eumetopias,bio/Eumetopias,,,,,, +34886,,"Phoca jubata Schreber, 1776",,northern sea lion,Phoca jubata,Steller sea lion,Eumetopias jubatus,bio/EumetopiasJubatus,,bio/Eumetopias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +34891,,"Neophocaena Palmer, 1899",,,,,Neophocaena,bio/Neophocaena,,,,,, +34892,,"Neophocaena phocaenoides (G. Cuvier, 1829)",,Finless porpoise,"Neophocaena phocanoides, Delphinus phocaenoides",Indo-Pacific finless porpoise,Neophocaena phocaenoides,bio/NeophocaenaPhocaenoides,,bio/Neophocaena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +34902,,,,,,,Trachemys,bio/Trachemys,,,,,, +34903,,"Trachemys scripta (Thunberg in Schoepf, 1792)",,slider turtle,"Testudo scripta, Pseudemys scripta, Chrysemys scripta",red-eared slider turtle,Trachemys scripta,bio/TrachemysScripta,,bio/Trachemys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34923,,,,,,magpies,Pica,bio/Pica,,,,,, +34924,,"Pica pica (Linnaeus, 1758)",,Elster,Corvus pica,Eurasian magpie,Pica pica,bio/PicaPica,,bio/Pica,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34929,,"Scenopoeus dentirostris Ramsay, 1876",,tooth-billed catbird,"Ailuroedus dentirostris, Scenopoeus dentirostris",tooth-billed bowerbird,Scenopoeetes dentirostris,bio/ScenopoeetesDentirostris,,bio/Scenopoeetes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +34991,,,,,,,Calliophis,bio/Calliophis,,,,,, +35046,,"Sclerophrys maculata (Hallowell, 1854)",,Merten's striped toad,"Bufo regularis maculatus, Bufo maculatus, Amietophrynus maculatus",flat-backed toad,Sclerophrys maculata,bio/SclerophrysMaculata,,bio/Sclerophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +35076,,,,,,,Patiria,bio/Patiria,,,,,, +35246,CeHV-9,,,,"Cercopithecine herpesvirus 9, Cercopithecine herpesvirus 6, Cercopithecid herpesvirus 9, Cercopithecine herpesvirus 7, CeHV-7, simian varicella virus SVV, CeHV-6",Simian varicella virus,Cercopithecine alphaherpesvirus 9,bio/CercopithecineAlphaherpesvirus9,dcs:BiologicalHostVertebrates,bio/VaricellovirusCercopithecinealpha9,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +35252,"AHV-1, AIHV-1, AlHV1, BHV3",,,,"Bovine herpesvirus 3, malignant catarrhal fever virus, bovid herpesvirus 3, Alcelaphine herpesvirus 1, Bovine herpesvirus type 3",wildebeest herpesvirus,Alcelaphine gammaherpesvirus 1,bio/AlcelaphineGammaherpesvirus1,dcs:BiologicalHostVertebrates,bio/MacavirusAlcelaphinegamma1,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +35729,,,,,Pseudotrematomus,,Trematomus,bio/Trematomus,,,,,, +35732,,"Rattus tanezumi Temminch, 1844",,Tanezumi rat,"Rattus brunneusculus, Mus tanezumi",Oriental house rat,Rattus tanezumi,bio/RattusTanezumi,,bio/Rattus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +35883,,"Pharbitis nil (L.) Choisy, 1834",,qian niu,"Pharbitis nil, Convolvulus nil",Japanese morning glory,Ipomoea nil,bio/IpomoeaNil,,bio/Ipomoea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +35924,,"Paeonia lactiflora Pall., 1776",,common garden peony,Paeonia albiflora,Chinese peony,Paeonia lactiflora,bio/PaeoniaLactiflora,,bio/Paeonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +36048,,"Tuber P. Micheli ex F.H. Wigg., 1780",,,,truffles,Tuber,bio/Tuber,,,,,, +36211,,,,,,,Trachurus,bio/Trachurus,,,,,, +36220,,,,,,,Pachycara,bio/Pachycara,,,,,, +36221,,"Lycodes brachycephalus Pappenheim, 1912",,Antarctic eel pout,"Lycodes brachycephalus, Austrolycicthys brachycephalus",Antarctic eelpout,Pachycara brachycephalum,bio/PachycaraBrachycephalum,,bio/Pachycara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36223,,"Simia ascanius Audebert, 1799",,black-cheeked white-nosed monkey,Simia ascanius,red-tailed monkey,Cercopithecus ascanius,bio/CercopithecusAscanius,,bio/Cercopithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +36229,,"Simia ursina Kerr, 1792",,baboon,"Simia ursina, Papio hamadryas ursinus",Chacma baboon,Papio ursinus,bio/PapioUrsinus,,bio/Papio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +36244,,,,,,,Alcedo,bio/Alcedo,,,,,, +36245,,"Gracula atthis Linnaeus, 1758",,river kingfisher,Gracula atthis,common kingfisher,Alcedo atthis,bio/AlcedoAtthis,,bio/Alcedo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36247,,"Vultur fulvus Hablizl, 1783",,griffon vulture,"common griffon, Vultur fulvus",Eurasian griffon,Gyps fulvus,bio/GypsFulvus,,bio/Gyps,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36249,,"Corvus macrorhynchos Wagler, 1827",,jungle crow,Corvus macrorhynchus,Large-billed crow,Corvus macrorhynchos,bio/CorvusMacrorhynchos,,bio/Corvus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36257,,,,,,,Anthus,bio/Anthus,,,,,, +36272,,"Sylvia diphone von Kittlitz, 1830",,Chinese bush warbler,"Cettia diphone, Sylvia diphone",Japanese bush warbler,Horornis diphone,bio/HorornisDiphone,,bio/Horornis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36274,,Leiothrix (f.) Swainson 1832,,,,,Leiothrix ,bio/Leiothrix_Birds,,,,,, +36275,,"Sylvia lutea Scopoli, 1786",,Pekin robin,Sylvia lutea,red-billed leiothrix,Leiothrix lutea,bio/LeiothrixLutea,,bio/Leiothrix_Birds,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36283,,,,,,,Erithacus,bio/Erithacus,,,,,, +36287,,,,,,,Zoothera,bio/Zoothera,,,,,, +36288,,"Turdus dauma Latham, 1790",,White's ground thrush,Turdus dauma,Scaly Thrush,Zoothera dauma,bio/ZootheraDauma,,bio/Zoothera,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36295,,,,,,,Hypsipetes,bio/Hypsipetes,,,,,, +36312,,"Hynobius retardatus Dunn, 1923",,Yeso salamander,Satobius retardatus,Hokkaido salamander,Hynobius retardatus,bio/HynobiusRetardatus,,bio/Satobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36313,,"Triturus rivularis Twitty, 1935",,western red-bellied newt,Triturus rivularis,red-bellied newt,Taricha rivularis,bio/TarichaRivularis,,bio/Taricha,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36317,,"Speleomantes ambrosii (Lanza, 1954)",,Spezia cave salamander newt,Hydromantes ambrosii,Ambrosi's cave salamander,Speleomantes ambrosii,bio/SpeleomantesAmbrosii,,bio/Speleomantes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36318,,"Speleomantes genei (Temminck & Schlegel, 1838)",,brown cave salamander,"Hydromantes genei, Salamandra genei, Atylodes genei",Sardinian cave salamander,Speleomantes genei,bio/SpeleomantesGenei,,bio/Speleomantes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +36703,,,,,,,Eigenmannia,bio/Eigenmannia,,,,,, +36795,,"Melomys Thomas, 1922",,,,,Melomys,bio/Melomys,,,,,, +36796,,"Mus burtoni Ramsay, 1887",,grassland mosaic-tailed rat,Mus burtoni,grassland melomys,Melomys burtoni,bio/MelomysBurtoni,,bio/Melomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +36798,,,,,,,Uromys,bio/Uromys,,,,,, +36799,,"Melomys hadrourus Winter, 1984",,masked white-tailed rat,Melomys hadrourus,Thornton Peak uromys,Uromys hadrourus,bio/UromysHadrourus,,bio/Uromys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +36800,,"Hapalotis caudimaculata Krefft, 1867",,giant white-tailed rat,Hapalotis caudimaculata,giant uromys,Uromys caudimaculatus,bio/UromysCaudimaculatus,,bio/Uromys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +36801,,"Crocidura Wagler, 1832",,,,white-toothed shrews,Crocidura,bio/Crocidura,,,,,, +37003,,"Rivulus marmoratus Poey, 1880",,matanzas rivulus,Rivulus marmoratus,mangrove rivulus,Kryptolebias marmoratus,bio/KryptolebiasMarmoratus,,bio/Kryptolebias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +37022,,"Hesperomys subflavus Wagner, 1842",,terraced rice rat,"Oryzomys subflavus, Hesperomys subflavus",Flavescent Oryzomys,Cerradomys subflavus,bio/CerradomysSubflavus,,bio/Cerradomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +37029,,"Prionailurus bengalensis (Kerr, 1792)",,,Felis bengalensis,leopard cat,Prionailurus bengalensis,bio/PrionailurusBengalensis,,,,,, +37031,,,,,,,Suricata,bio/Suricata,,,,,, +37032,,"Viverra suricatta Schreber, 1776",,suricate,Viverra suricatta,meerkat,Suricata suricatta,bio/SuricataSuricatta,,bio/Suricata,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +37038,,,,,,,Gavia,bio/Gavia,,,,,, +37039,,"Gavia immer (Brunnich, 1764)",,great northern diver,"Colymbus immer, Gavia immer immer, Gavia imber, Urinator imber",great northern loon,Gavia immer,bio/GaviaImmer,,bio/Gavia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +37063,,"Pterodroma Bonaparte, 1856",,,,,Pterodroma,bio/Pterodroma,,,,,, +37088,,"Speleomantes supramontis (Lanza, Nascetti & Bullini, 1986)",,Nuoro salamander,Hydromantes supramontis,Supramonte cave salamander,Speleomantes supramontis,bio/SpeleomantesSupramontis,,bio/Speleomantes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +37108,MeHV-1,,,herpesvirus of turkeys,"turkey herpesvirus HVT, Meleagrid herpesvirus type 1, herpesvirus of turkey, Meleagrid herpesvirus 1",Turkey herpesvirus,Meleagrid alphaherpesvirus 1,bio/MeleagridAlphaherpesvirus1,dcs:BiologicalHostVertebrates,bio/MardivirusMeleagridalpha1,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +37184,,,,,,,Hippotragus,bio/Hippotragus,,,,,, +37185,,"Antilope leucophaeus Pallas, 1766",,blue buck,Antilope leucophaeus,blue antelope,Hippotragus leucophaeus,bio/HippotragusLeucophaeus,,bio/Hippotragus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +37285,,"Heterophallus rachovii Regan, 1914",,Coatzacoalcos gambusia,"Gambusia rachowi, Gambusia rachovii, Gambusia rachowii",Rachow's gambusia,Heterophallus rachovii,bio/HeterophallusRachovii,,bio/Heterophallus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +37295,,"Cebus olivaceus Schomburgk, 1848",,weeping capuchin,Cebus nigrivittatus,weeper capuchin monkey,Cebus olivaceus,bio/CebusOlivaceus,,bio/Cebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +37347,,"Tupaia belangeri (Wagner, 1841)",,common tree shrew,"Tupaia glis belangeri, Cladobates belangeri",northern tree shrew,Tupaia belangeri,bio/TupaiaBelangeri,,bio/Tupaia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +37437,,"Malacothrix Wagner, 1843",,,,,Malacothrix ,bio/Malacothrix_Rodents,,,,,, +37438,,"Dendromus typicus Smith, 1834",,gerbil mouse,Dendromus typicus,long-eared mouse,Malacothrix typica,bio/MalacothrixTypica,,bio/Malacothrix_Rodents,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +37579,,,,,,,Python,bio/Python,,,,,, +37601,,"Loxia chloris Linnaeus, 1758",,western greenfinch,"Loxia chloris, Carduelis chloris",European greenfinch,Chloris chloris,bio/ChlorisChloris,,bio/Chloris_Birds,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +37604,,,,,,redpolls,Acanthis,bio/Acanthis,,,,,, +37606,,,,,,,Pyrrhula,bio/Pyrrhula,,,,,, +37607,,"Pyrrhula pyrrhula (Linnaeus, 1758)",,northern bullfinch,Loxia pyrrhula,Eurasian bullfinch,Pyrrhula pyrrhula,bio/PyrrhulaPyrrhula,,bio/Pyrrhula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +37610,,"Motacilla rubecula Linnaeus, 1758",,robin,Motacilla rubecula,European robin,Erithacus rubecula,bio/ErithacusRubecula,,bio/Erithacus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +37613,,,,,,,Vidua,bio/Vidua,,,,,, +38526,,,,,,,Abramis,bio/Abramis,,,,,, +38527,,"Cyprinus brama Linnaeus, 1758",,bream,Cyprinus brama,common bream,Abramis brama,bio/AbramisBrama,,bio/Abramis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +38564,,,,,,thicket robins,Heteromyias,bio/Heteromyias,,,,,, +38565,,"Heteromyias albispecularis (Salvadori, 1876)",,white-browned robin,"Poecilodryas albispecularis, Poecilodryas albispecularis (Salvadori, 1876)",ashy robin,Heteromyias albispecularis,bio/HeteromyiasAlbispecularis,,bio/Heteromyias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +38597,,,,,,,Aepyprymnus,bio/Aepyprymnus,,,,,, +38598,,"Bettongia rufescens Gray, 1837",,rufous bettong,Bettongia rufescens,rufous rat-kangaroo,Aepyprymnus rufescens,bio/AepyprymnusRufescens,,bio/Aepyprymnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +38619,,,,,,,Lutreolina,bio/Lutreolina,,,,,, +38620,,"Didelphis crassicaudata Desmarest, 1804",,lutrine opossum,Didelphis crassicaudata,thick-tailed opossum,Lutreolina crassicaudata,bio/LutreolinaCrassicaudata,,bio/Lutreolina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +38660,,,,,,,Amblypharyngodon,bio/Amblypharyngodon,,,,,, +38667,,,,,,grasshopper mice,Onychomys,bio/Onychomys,,,,,, +38679,,"Onychomys torridus arenicola Mearns, 1896",,Mearns's grasshopper mouse,Onychomys torridus arenicola,Chihuahuan grasshopper mouse,Onychomys arenicola,bio/OnychomysArenicola,,bio/Onychomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +38730,,"Sporobolus R.Br., 1810",,,,dropseed,Sporobolus,bio/Sporobolus,,,,,, +38771,,,,,,,Gopherus,bio/Gopherus,,,,,, +38772,,"Xerobates agassizii Cooper, 1861",,desert tortoise,"Xerobates agassizii, Gopherus agassizi, Gopherus polyphemus agassizii",Agassiz's desert tortoise,Gopherus agassizii,bio/GopherusAgassizii,,bio/Gopherus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +38773,,"Testudo polyphemus Daudin, 1802",,gopher tortoise,Testudo polyphemus,Florida gopher tortoise,Gopherus polyphemus,bio/GopherusPolyphemus,,bio/Gopherus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +38933,,,,,,,Polychrus,bio/Polychrus,,,,,, +38934,,"Polychrus marmoratus (Linnaeus, 1758)",,many-colored bush anole,Lacerta marmorata,common monkey lizard,Polychrus marmoratus,bio/PolychrusMarmoratus,,bio/Polychrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39023,,"Micrurus diastema (Dumeril, Bibron & Dumeril, 1854)",,Atlantic coral snake,Elaps diastema,variable coral snake,Micrurus diastema,bio/MicrurusDiastema,,bio/Micrurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39030,,"Mus agrarius Pallas, 1771",,striped field mouse,"Mus agrarius, Apodemus pratensis",Eurasian field mouse,Apodemus agrarius,bio/ApodemusAgrarius,,bio/Apodemus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +39081,,,,,,,Muscardinus,bio/Muscardinus,,,,,, +39082,,"Muscardinus avellanarius (Linnaeus, 1758)",,hazel mouse,Mus avellanarius,hazel dormouse,Muscardinus avellanarius,bio/MuscardinusAvellanarius,,bio/Muscardinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +39099,,Pantherophis obsoletus (Say 1823) Utiger et al. 2002,,rat snake,"Elaphe obsoleta, Coluber obsoletus",Western rat snake,Pantherophis obsoletus,bio/PantherophisObsoletus,,bio/Pantherophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39147,,,,,,,Gonyosoma,bio/Gonyosoma,,,,,, +39171,,"Monarda L., 1753",,horsemints,,wild bergamots,Monarda ,bio/Monarda_Eudicots,,,,,, +39246,,,,,,,Tropidophis,bio/Tropidophis,,,,,, +39343,,"Monarda didyma L., 1753",,Oswego tea,Monarda fistulosa Curt.,bee balm,Monarda didyma,bio/MonardaDidyma,,bio/Monarda_Eudicots,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +39500,,Cordyline Comm. ex R.Br.,,,,,Cordyline,bio/Cordyline,,,,,, +39501,,"Cordyline terminalis (L.) Kunth, 1820",,good luck plant,"Dracaena compacta, Cordyline terminalis",ti plant,Cordyline fruticosa,bio/CordylineFruticosa,,bio/Cordyline,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +39534,,"Sansevieria trifasciata Prain, 1903",,mother-in-law's tongue,Dracaena trifasciata,snake plant,Sansevieria trifasciata,bio/SansevieriaTrifasciata,,bio/Sansevieria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +39588,,,,,Nesionixalus,,Hyperolius,bio/Hyperolius,,,,,, +39589,,"Hyperolius argus Peters, 1854",,yellow spotted reed frog,Rappia argus,argus reed frog,Hyperolius argus,bio/HyperoliusArgus,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39591,,"Rappia bayoni Boulenger, 1911",,Bayon's common reedfrog,"Hyperolius viridiflavus destefanii, Hyperolius viridiflavus variabilis, Hyperolius variabilis, Rappia bayoni, Hyperolius viridiflavus viridiflavus, Hyperolius viridiflavus bayoni, Eucnemis viridi-flavus, Hyperolius destefanii",common reed frog,Hyperolius viridiflavus,bio/HyperoliusViridiflavus,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39599,,,,,,,Afrixalus,bio/Afrixalus,,,,,, +39601,,"Leptopelis Gunther, 1859",,,,,Leptopelis,bio/Leptopelis,,,,,, +39602,,"Leptopelis vermiculatus (Boulenger, 1909)",,Amani forest treefrog,Hylambates vermiculatus,vermiculated tree frog,Leptopelis vermiculatus,bio/LeptopelisVermiculatus,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39603,,"Leptopelis broadleyi Poynton, 1985",,triad tree frog,"Hylambates argenteus, Leptopelis broadleyi",Bagamoyo forest treefrog,Leptopelis argenteus,bio/LeptopelisArgenteus,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39604,,"Leptopelis concolor Ahl, 1929",,triad tree frog,Leptopelis argenteus concolor,Witu forest treefrog,Leptopelis concolor,bio/LeptopelisConcolor,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39609,,,,,Chirixalus,,Chiromantis,bio/Chiromantis,,,,,, +39611,,,,,,,Buergeria,bio/Buergeria,,,,,, +39616,,,,,,,Aphelocoma,bio/Aphelocoma,,,,,, +39620,,,,,,,Acrocephalus,bio/Acrocephalus,,,,,, +39682,,"Trimeresurus stejnegeri Schmidt, 1925",,Chinese green tree viper,Viridovipera stejnegeri,Stejneger's pit viper,Trimeresurus stejnegeri,bio/TrimeresurusStejnegeri,,bio/Trimeresurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39705,,"Herpestes edwardsii (Geoffroy Saint-Hilaire, 1818)",,Indian grey mongoose,Herpestes edwardsii,Indian gray mongoose,Urva edwardsii,bio/UrvaEdwardsii,,bio/Urva,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +39707,,,,pansies,,buckeyes ,Junonia,bio/Junonia,,,,,, +39708,,"Junonia coenia Hubner, 1822",,peacock butterfly,Precis coenia,buckeye,Junonia coenia,bio/JunoniaCoenia,,bio/Junonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39855,,"Silene chalcedonica (L.) E.H.L.Krause, 1901",,Maltese cross,Lychnis chalcedonica,scarlet lychnis,Silene chalcedonica,bio/SileneChalcedonica,,bio/SileneSectLychnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +39944,CpHV-1,,,,"Caprine herpesvirus type 1, Caprine herpesvirus 1",goat herpesvirus,Caprine alphaherpesvirus 1,bio/CaprineAlphaherpesvirus1,dcs:BiologicalHostVertebrates,bio/VaricellovirusCaprinealpha1,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +39946,,Oryza sativa subsp. indica Kato,,Indica rice,"Oryza sativa (indica cultivar-group), Oryza sp. Poi-6, Oryza sativa (indica group), Oryza sativa subsp. indica",long-grained rice,Oryza sativa Indica Group,bio/OryzaSativaIndicaGroup,,bio/OryzaSativa,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +39957,,,,,,,Lophorina,bio/Lophorina,,,,,, +39958,,"Paradisea superba Forster, 1781",,superb paradise bird,Paradisea superba,Superb bird of paradise,Lophorina superba,bio/LophorinaSuperba,,bio/Lophorina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +39992,,"Terminalia L., 1767",,,,,Terminalia,bio/Terminalia,,,,,, +39993,,"Terminalia catappa L., 1767",,tropical almond,Terminalia cattapa,Indian almond,Terminalia catappa,bio/TerminaliaCatappa,,bio/Terminalia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +40009,,"Tibouchina urvilleana (DC.) Cogn., 1885",,purple glory bush,"Tibouchina urvilleana, Lasiandra urvilleana",princess flower,Pleroma urvilleanum,bio/PleromaUrvilleanum,,bio/Pleroma_Eudicots,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +40074,,,,,,,Asterocampa,bio/Asterocampa,,,,,, +40075,,"Asterocampa clyton (Boisduval & Le Conte, 1835)",,brown emperor,Apatura clyton,tawny emperor ,Asterocampa clyton,bio/AsterocampaClyton,,bio/Asterocampa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40094,,,,,,,Hylephila,bio/Hylephila,,,,,, +40095,,"Papilio phyleus Drury, 1773",,least skipper,"Papilio phyleus, Hylephila phylaeus",fiery skipper,Hylephila phyleus,bio/HylephilaPhyleus,,bio/Hylephila,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40103,,"Agrius Hubner, 1819",,,,,Agrius,bio/Agrius,,,,,, +40104,,"Sphinx cingulata Fabricius, 1775",,pink-spotted hawk moth,"Agrius cingulatus, Sphinx cingulata",sweetpotato hornworm ,Agrius cingulata,bio/AgriusCingulata,,bio/Agrius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40156,,,,,,mannikins,Lonchura,bio/Lonchura,,,,,, +40157,,"Loxia striata Linnaeus, 1766",,white-backed munia,"Lonchura striata domestica, Lonchura domestica, Loxia striata",white-rumped munia,Lonchura striata,bio/LonchuraStriata,,bio/Lonchura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40168,,,,,,,Alcolapia,bio/Alcolapia,,,,,, +40169,,"Tilapia alcalica Hilgendorf, 1905",,magadi tilapia,"Tilapia alcalica, Alcolapia alcalica",Natron tilapia,Oreochromis alcalicus,bio/OreochromisAlcalicus,,bio/Alcolapia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40180,,"Perdix melanocephala Ruppell, 1835",,Arabian chukar,Perdix melanocephala,Arabian partridge,Alectoris melanocephala,bio/AlectorisMelanocephala,,bio/Alectoris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40193,,"Tilapia urolepis Norman, 1922",,,Tilapia urolepis,Rufigi tilapia,Oreochromis urolepis,bio/OreochromisUrolepis,,,,,, +40205,,"Melozone fusca Swainson, 1827",,brown towhee,"Melozone fuscus, Kieneria fusca, Pipilo fuscus, Aimophila fuscus, Kieneria fusca Swainson, 1827",canyon towhee,Melozone fusca,bio/MelozoneFusca,,bio/Melozone,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40224,,"Dermanura cinerea Gervais, 1856",,Gervais's fruit-eating bat,Dermanura cinerea,Gervais' fruit-eating bat,Artibeus cinereus,bio/ArtibeusCinereus,,bio/Artibeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +40229,,"Dermanura phaeotis Miller, 1902",,pygmy fruit-eating bat,Artibeus phaeotis,dwarf fruit-eating bat,Dermanura phaeotis,bio/DermanuraPhaeotis,,bio/Dermanura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +40249,,,,,,,Uromastyx,bio/Uromastyx,,,,,, +40450,,"Piptoporus betulinus (Bull.) P. Karst., 1881",,birch polypore,"Boletus betulinus, Piptoporus betulinus",razor strop fungus,Fomitopsis betulina,bio/FomitopsisBetulina,,bio/Fomitopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +40493,,,,,Lutianus,,Lutjanus,bio/Lutjanus,,,,,, +40505,,"Lutjanus campechanus (Poey, 1860)",,red snapper,Mesoprion campechanus,northern red snapper,Lutjanus campechanus,bio/LutjanusCampechanus,,bio/Lutjanus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +40510,,,,,,,Pristipomoides,bio/Pristipomoides,,,,,, +40690,,"Trematomus bernacchii Boulenger, 1902",,rockcod,"Pagothenia bernacchii, Pseudotrematomus bernacchii, Trematomus bernacchi",emerald rockcod,Trematomus bernacchii,bio/TrematomusBernacchii,,bio/Trematomus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +41106,,,,,,,Dorcus,bio/Dorcus,,,,,, +41107,,"Dorcus parallelipipedus (Linnaeus, 1758)",,small stag beetle,"Dorcus parallelopipedus, Dorcus sp. BMNH 1425263",lesser stag beetle,Dorcus parallelipipedus,bio/DorcusParallelipipedus,,bio/Dorcus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +41138,,,,,,,Coccinella,bio/Coccinella,,,,,, +41139,,"Coccinella septempunctata Linnaeus, 1758",,seven-spotted lady beetle,Coccinella 7-punctata,seven-spotted ladybird,Coccinella septempunctata,bio/CoccinellaSeptempunctata,,bio/Coccinella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +41140,,,,,,,Calvia,bio/Calvia,,,,,, +41185,,,,,,,Korscheltellus,bio/Korscheltellus,,,,,, +41679,,"Raphanus sativus var. niger (Mill.) J.Kern., 1789",,kaiware daikon,"Raphanus sativus var. longipinnatus, Raphanus sativus var. hortensis, Raphanus sativus Chinese Radish Group",Chinese radish,Raphanus sativus var. niger,bio/RaphanusSativusVarNiger,,bio/RaphanusSativus,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +42043,,"Silene zawadskii hort. ex Fenzl, 1851",,Zawadskii's campion,"Silene zawadskii, Behen vulgaris Moench, 1794",bladder campion,Silene vulgaris,bio/SileneVulgaris,,bio/SileneSectBehenantha,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +42058,,,,,,,Pronolagus,bio/Pronolagus,,,,,, +42059,,"Lepus crassicaudatus Geoffroy, 1832",,Natal red rockhare,Lepus crassicaudatus,greater red rock rabbit,Pronolagus crassicaudatus,bio/PronolagusCrassicaudatus,,bio/Pronolagus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +42061,,"Lepus rupestris Smith, 1834",,Smith's red rockhare,Lepus rupestris,Smith's red rock rabbit,Pronolagus rupestris,bio/PronolagusRupestris,,bio/Pronolagus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +42146,,,,,,bare-backed fruit bats,Dobsonia,bio/Dobsonia,,,,,, +42147,,"Hypoderma moluccensis Quoy & Gaimard, 1830",,Moluccan naked-backed fruit bat,Hypoderma moluccensis,Moluccan bare-backed fruit bat,Dobsonia moluccensis,bio/DobsoniaMoluccensis,,bio/Dobsonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +42150,,"Spalax zemni (Erxleben, 1777)",,Podolsk mole rat,"Glis zemni, Spalax podolicus, Spalax polonicus",Podolsk blind mole rat,Spalax zemni,bio/SpalaxZemni,,bio/Spalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +42151,,"Galegeeska rufescens (Peters, 1878)",,rufous elephant shrew,Elephantulus rufescens,East African long-eared elephant shrew,Galegeeska rufescens,bio/GalegeeskaRufescens,,bio/Galegeeska,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +42163,,,,,,,Podarcis,bio/Podarcis,,,,,, +42183,,,,,,,Ovophis,bio/Ovophis,,,,,, +42195,,Dieffenbachia Schott,,,,,Dieffenbachia,bio/Dieffenbachia,,,,,, +42196,,"Dieffenbachia seguine Schott, 1832",,mother-in-law plant,"Dieffenbachia picta, Dieffenbachia maculata",dumb cane,Dieffenbachia seguine,bio/DieffenbachiaSeguine,,bio/Dieffenbachia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +42229,,"Prunus cerasus var. avium L., 1753",,mazzard,"Prunus cerasus var. avium, Cerasus avium",sweet cherry,Prunus avium,bio/PrunusAvium,,bio/Prunus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +42274,,,,,"Cynthia, Bassaris",,Vanessa,bio/Vanessa,,,,,, +42283,,,,,,,Enodia,bio/Enodia,,,,,, +42284,,"Papilio portlandia Fabricius, 1781",,southern pearly eye,Papilio portlandia,pearly eye,Enodia portlandia,bio/EnodiaPortlandia,,bio/Enodia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +42285,,,,,,,Hermeuptychia,bio/Hermeuptychia,,,,,, +42286,,"Papilio hermes Fabricius, 1775",,Hermes satyr,"Hermeuptychia (Euptychia) hermes, Euptychia hermes, Hermeuptychia isabella, Papilio hermes",little wood satyr,Hermeuptychia hermes,bio/HermeuptychiaHermes,,bio/Hermeuptychia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +42293,,,,,,,Pontia,bio/Pontia,,,,,, +42295,,,,clouded yellow butterflies,,clouded yellows,Colias,bio/Colias,,,,,, +42296,,"Colias eurytheme Boisduval, 1852",,orange sulphur butterfly,Colias euritheme,orange sulphur,Colias eurytheme,bio/ColiasEurytheme,,bio/Colias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +42298,,,,,,,Celastrina,bio/Celastrina,,,,,, +42299,,"Papilio ladon Cramer, 1780",,common blue,"Celastrina argiolus ladon, Papilio ladon",spring azure,Celastrina ladon,bio/CelastrinaLadon,,bio/Celastrina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +42336,,"Bidens L., 1753",,,,,Bidens,bio/Bidens,,,,,, +42337,,"Bidens pilosa L., 1753",,sticktight,Bidens pilosus,bur-marigold,Bidens pilosa,bio/BidensPilosa,,bio/Bidens,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +42498,,,,,,,Gasteropelecus,bio/Gasteropelecus,,,,,, +42509,,,,,"Hemisynodontis, Brachysynodontis",,Synodontis,bio/Synodontis,,,,,, +42513,,,,,,,Pygocentrus,bio/Pygocentrus,,,,,, +42514,,"Serrasalmus nattereri (Kner, 1858)",,red piranha,Serrasalmus nattereri,red-bellied piranha,Pygocentrus nattereri,bio/PygocentrusNattereri,,bio/Pygocentrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +42525,,,,,,,Colossoma,bio/Colossoma,,,,,, +42526,,"Myletes macropomus Cuvier, 1816",,black pacu,Myletes macropomus,tambaqui,Colossoma macropomum,bio/ColossomaMacropomum,,bio/Colossoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +42562,,,,,,,Hepsetus,bio/Hepsetus,,,,,, +42563,,"Salmo odoe Bloch, 1794",,Kafuke pike,Salmo odoe,African pike characin,Hepsetus odoe,bio/HepsetusOdoe,,bio/Hepsetus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +42617,,,,,,,Abramites,bio/Abramites,,,,,, +42653,,,,,,,Petrocephalus,bio/Petrocephalus,,,,,, +42721,,,,,,,Marmosops,bio/Marmosops,,,,,, +42749,,,,,,,Phelsuma,bio/Phelsuma,,,,,, +42756,,,,,,,Necturus,bio/Necturus,,,,,, +43042,,"Salamandra glutinosa Green, 1818",,southeastern slimy salamander,"Salamandra glutinosa, Plethodon grobmani",slimy salamander,Plethodon glutinosus,bio/PlethodonGlutinosus,,bio/Plethodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43043,,,,,Typhlotriton,brook salamanders,Eurycea,bio/Eurycea,,,,,, +43044,,"Salamandra longicauda Green, 1818",,long-tailed triton,"Plethodon (Saurocercus) longicauda, Plethodon longicauda, Geotriton longicauda, Cylindrosoma longicauda, Saurocercus longicauda, Spelerpes longicauda, Spelerpes longicaudus, Salamandra longicauda",long-tailed salamander ,Eurycea longicauda,bio/EuryceaLongicauda,,bio/Eurycea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43045,,,,,Leurognathus,dusky salamanders,Desmognathus,bio/Desmognathus,,,,,, +43048,,"Salamandra alleganiensis Sonnini de Manoncourt & Latreille, 1801",,,"Salamandra alleganiensis, Menopoma alleghaniensis, Abranchus alleghaniensis, Triton alleganiensis",hellbender,Cryptobranchus alleganiensis,bio/CryptobranchusAlleganiensis,,,,,, +43104,,"Rubus vigil L.H.Bailey, 1925",,swamp blackberry,"Rubus paganus, Rubus sempervirens Bigelow, 1824, non T.T.Yu & L.T.Lu, 1982, Rubus vigil",swamp dewberry,Rubus hispidus,bio/RubusHispidus,,bio/Rubus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +43257,,,,,,,Sillago,bio/Sillago,,,,,, +43326,,,,,,,Thrichomys,bio/Thrichomys,,,,,, +43327,,"Thrichomys apereoides (Lund, 1839)",,punare,Thrichomys aperoides,common punare,Thrichomys apereoides,bio/ThrichomysApereoides,,bio/Thrichomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +43331,,,,,,,Elaphurus,bio/Elaphurus,,,,,, +43332,,"Elaphurus davidianus Milne-Edwards, 1866",,milu,Cervus davidianus,Pere David's deer,Elaphurus davidianus,bio/ElaphurusDavidianus,,bio/Elaphurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +43336,,,,,,,Orthosia ,bio/Orthosia_Moths,,,,,, +43385,,"Plioreocepta poeciloptera (Schrank, 1776)",,asparagus maggot,Platyparea poeciloptera,asparagus fly,Plioreocepta poeciloptera,bio/PlioreoceptaPoeciloptera,,bio/Plioreocepta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43470,,,,,,,Dendrobates,bio/Dendrobates,,,,,, +43472,,"Oophaga speciosa (Schmidt, 1857)",,splendid poison-arrow frog,"Dendrobates speciosus, Hylaplesia speciosa",splendid poison frog,Oophaga speciosa,bio/OophagaSpeciosa,,bio/Oophaga,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43476,,,,,,,Dicamptodon,bio/Dicamptodon,,,,,, +43507,,,,,,,Leiopelma,bio/Leiopelma,,,,,, +43532,,"Necturus alabamensis Viosca, 1937",,blackwarrior waterdog,Necturus beyeri alabamensis,Alabama waterdog,Necturus alabamensis,bio/NecturusAlabamensis,,bio/Necturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43541,,,,,,,Pelodytes,bio/Pelodytes,,,,,, +43542,,"Rana punctata Daudin, 1802",,spotted mud frog,"Ostetricans punctatus, Rana punctata, Alytes punctatus, Cystignathus punctatus",parsley frog,Pelodytes punctatus,bio/PelodytesPunctatus,,bio/Pelodytes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43557,,,,harlequin frogs,,swimming frogs,Pseudis,bio/Pseudis,,,,,, +43558,,"Rana paradoxa Linnaeus, 1758",,swiming frog,"Pseudis paradoxus, Rana paradoxa",paradox frog,Pseudis paradoxa,bio/PseudisParadoxa,,bio/Pseudis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43644,,,,,,,Uma,bio/Uma,,,,,, +43645,,Uma notata rufopunctata Cope 1895,,Yuman Desert fringe-toed lizard,"Uma notata rufopunctata, Uma rufopunctata rufopunctata, Uma rufopunctata",Colorado Desert fringe-toed lizard,Uma notata,bio/UmaNotata,,bio/Uma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43699,,,,,,,Monopterus ,bio/Monopterus_BonyFishes,,,,,, +43700,,"Muraena alba Zulew, 1793",,rice-field eel,"Muraena alba, Fluta alba",swamp eel ,Monopterus albus,bio/MonopterusAlbus,,bio/Monopterus_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +43777,,"Simia pithecia Linnaeus, 1766",,Guianan saki,Simia pithecia,white-faced saki,Pithecia pithecia,bio/PitheciaPithecia,,bio/Pithecia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +44170,,,,,,,Stichopathes,bio/Stichopathes,,,,,, +44326,,"Rana shqiperica Hotz, Uzzell, Gunther, Tunner & Heppich, 1987",,Virpazar frog,Rana shqiperica,Albanian pool frog,Pelophylax shqipericus,bio/PelophylaxShqipericus,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +44371,,,,smiliscas,Pternohyla,cross-banded treefrogs,Smilisca,bio/Smilisca,,,,,, +44490,,,,,,,Chelodina,bio/Chelodina,,,,,, +44492,,"Chelodina siebenrocki Werner, 1901",,Northern long-necked turtle,"Macrochelodina rugosa, Chelodina siebenrocki, Macrochelodina oblonga, Chelodina rugosa",North Australian snake-necked turtle,Chelodina oblonga,bio/ChelodinaOblonga,,bio/Chelodina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +44662,,,,,,,Sitobion,bio/Sitobion,,,,,, +44664,,"Sitobion avenae (Fabricius, 1775)",,grain aphid,"Sitobion (Sitobion) avenae, Sitobion (Sitobium) avenae, Sitobium avenae",English grain aphid,Sitobion avenae,bio/SitobionAvenae,,bio/Sitobion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +44679,,"Magicicada septendecim (Linnaeus, 1758)",,17-year locust,"Tibicina septemdecim, Cicada septendecim, Tettigonia septendecim, Tibicen septendecim",seventeen-year cicada ,Magicicada septendecim,bio/MagicicadaSeptendecim,,bio/DecimGroup,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +45171,,Paeonia suffruticosa Andrews,,moutan peony,"Paeonia moutan, Paeonia arborea, Paeonia x suffruticosa, Paeonia suffruticosa cv. Gunpohden",tree peony,Paeonia suffruticosa,bio/PaeoniaSuffruticosa,,bio/Paeonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +45324,,Bombax L.,,,,,Bombax,bio/Bombax,,,,,, +45325,,Gossampinus malabarica (DC.) Merr.,,red silk-cotton tree,"Gossampinus malabarica, Bombax malabaricum, Salmalia malabarica",Indian kapok,Bombax ceiba,bio/BombaxCeiba,,bio/Bombax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +45485,,,,,,,Ammospermophilus,bio/Ammospermophilus,,,,,, +45487,,"Sciurus harrisii Audubon and Bachman, 1854",,Harris' antelope squirrel,Sciurus harrisii,Harris's antelope squirrel,Ammospermophilus harrisii,bio/AmmospermophilusHarrisii,,bio/Ammospermophilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +45623,,"Rana esculenta var. lessonae Camerano, 1882",,edible frog,"Hylarana lessonae, Rana kl. esculenta, Pelophylax klepton esculentus, Rana esculata, Rana lessonae x Rana ridibunda, Rana klepton esculenta, Pelophylax kl. esculentus, Rana esculenta var. lessonae, Rana lessonae, Pelophylax esculentus, Rana synklepton esculenta, Rana esculenta synklepton",pool frog,Pelophylax lessonae,bio/PelophylaxLessonae,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +45643,,,,,,,Chenonetta,bio/Chenonetta,,,,,, +45644,,"Anas jubata Latham, 1801",,Australian wood duck,Anas jubata,Maned duck,Chenonetta jubata,bio/ChenonettaJubata,,bio/Chenonetta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +45779,,"Papilio glaucus Linnaeus, 1758",,tiger swallowtail,Pterourus glaucus,eastern tiger swallowtail,Papilio glaucus,bio/PapilioGlaucus,,bio/Pterourus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +46296,,,,,,,Dendrelaphis,bio/Dendrelaphis,,,,,, +46304,,,,,Eridiphas,,Hypsiglena,bio/Hypsiglena,,,,,, +46501,,,,,,,Hydrochous,bio/Hydrochous,,,,,, +46502,,"Collocalia gigas Hartert & Butler, 1901",,waterfall swift,Collocalia gigas,giant swiftlet,Hydrochous gigas,bio/HydrochousGigas,,bio/Hydrochous,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +46514,,"Patiria miniata (Brandt, 1835)",,webbed star,Asterina miniata,bat star,Patiria miniata,bio/PatiriaMiniata,,bio/Patiria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +46750,,"Fimbriaphyllia ancora (Veron & Pichon, 1980)",,anchor coral,Euphyllia ancora,hammer coral,Fimbriaphyllia ancora,bio/FimbriaphylliaAncora,,bio/Fimbriaphyllia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +46780,,"Perilampus malabaricus Jerdon, 1849",,giant danio,"Danio malabaricus, Perilampus malabaricus",Malabar danio,Devario malabaricus,bio/DevarioMalabaricus,,bio/Devario,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +46841,,,,,"Oreailurus, Oncifelis",,Leopardus,bio/Leopardus,,,,,, +46905,,,,,,,Turnagra,bio/Turnagra,,,,,, +46906,,"Tanagra capensis Sparrman, 1787",,New Zealand thrush,Tanagra capensis,piopio,Turnagra capensis,bio/TurnagraCapensis,,bio/Turnagra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +46962,,"Caulophyllum Michx., 1803",,,,,Caulophyllum,bio/Caulophyllum,,,,,, +46963,,"Caulophyllum thalictroides (L.) Michx., 1803",,papooseroot,Caulophyllum sp. KFM-2002,blue cohosh,Caulophyllum thalictroides,bio/CaulophyllumThalictroides,,bio/Caulophyllum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +47435,,"Rana palavanensis Boulenger, 1894",,smooth guardian frog,"Rana palavanensis, Euphlyctis palavanensis",Palawan wart frog,Limnonectes palavanensis,bio/LimnonectesPalavanensis,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47436,,"Rana paramacrodon Inger, 1966",,Tawau wart frog,Rana paramacrodon,lesser swamp frog,Limnonectes paramacrodon,bio/LimnonectesParamacrodon,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47437,,"Rana ingeri Kiew, 1978",,Inger's wart frog,Rana ingeri,greater swamp frog,Limnonectes ingeri,bio/LimnonectesIngeri,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47543,,"Phrynoidis aspera (Gravenhorst, 1829)",,Malayan giant toad,"Bufo asper, Phrynoides aspera, Phrynoidis aspera",giant Asian toad,Phrynoidis asper,bio/PhrynoidisAsper,,bio/Phrynoidis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47548,,"Vandijkophrynus gariepensis (Smith, 1848)",,mountain toad,Bufo gariepensis,Karroo toad,Vandijkophrynus gariepensis,bio/VandijkophrynusGariepensis,,bio/Vandijkophrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47549,,"Bufo garmani Meek, 1897",,northern mottled toad,"Amietophrynus garmani, Bufo garmani",olive toad ,Sclerophrys garmani,bio/SclerophrysGarmani,,bio/Sclerophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47555,,"Bufo retiformis (Saunders & Smith, 1951)",,Sonora green toad,"Bufo debilis retiformis, Bufo retiformis, Bufo retriformis",Sonoran green toad,Anaxyrus retiformis,bio/AnaxyrusRetiformis,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47559,,"Rana terrestris Bonnaterre, 1789",,southeastern toad,"Anaxyrus terrestris, Rana terrestris, Bufo terrestris, Bufo rufus",southern toad,Anaxyrus terrestris,bio/AnaxyrusTerrestris,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47561,,"Bufo woodhousii Girard, 1854",,Rocky Mountain toad,"Bufo woodhousei, Bufo woodhousii",Woodhouse's toad,Anaxyrus woodhousii,bio/AnaxyrusWoodhousii,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47563,,"Leptodactylus Fitzinger, 1826",,,Vanzolinius,,Leptodactylus,bio/Leptodactylus,,,,,, +47564,,"Rana pentadactyla Laurenti, 1768",,South American bullfrog,Rana pentadactyla,smoky jungle frog,Leptodactylus pentadactylus,bio/LeptodactylusPentadactylus,,bio/Leptodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47576,,,,,,,Ansonia,bio/Ansonia,,,,,, +47577,,"Bufo muelleri Boulenger, 1887",,Muller's stream toad,Bufo muelleri,Mueller's stream toad,Ansonia muelleri,bio/AnsoniaMuelleri,,bio/Ansonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47578,,,,,,,Atelopus,bio/Atelopus,,,,,, +47586,,"Peltophryne lemur Cope, 1869",,Puerto Rican crested toad,Bufo lemur,lowland Caribbean toad,Peltophryne lemur,bio/PeltophryneLemur,,bio/Peltophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +47605,,Hibiscus L.,,rosemallows,,,Hibiscus,bio/Hibiscus,,,,,, +47699,,,,,,,Myripristis,bio/Myripristis,,,,,, +47707,,,,,Adioryx,,Sargocentron,bio/Sargocentron,,,,,, +47718,,,,,Acanthophthalmus,,Cobitis,bio/Cobitis,,,,,, +47727,,,,,"Briba, Hemidactilus, Teratolepis",,Hemidactylus,bio/Hemidactylus,,,,,, +47766,,,,,,,Agrotis,bio/Agrotis,,,,,, +47929,CeHV-8,,,,"Cercopithecine herpesvirus 8, Rhesus macaque cytomegalovirus, Macacine herpesvirus 3, Rhesus cytomegalovirus (strain 68-1), Rhesus cytomegalovirus 68-1, Rhesus monkey cytomegalovirus, Rhesus cytomegalovirus strain 68-1, Rhesus cytomegalovirus (strain 68-1) (RhCMV)",Rhesus cytomegalovirus,macacine betaherpesvirus 3,bio/MacacineBetaherpesvirus3,dcs:BiologicalHostVertebrates,bio/CytomegalovirusMacacinebeta3,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +48169,,"Thynnus tonggol Bleeker, 1851",,northern bluefin tuna,Thynnus tonggol,longtail tuna,Thunnus tonggol,bio/ThunnusTonggol,,bio/Thunnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +48170,,,,,,,Chelon,bio/Chelon,,,,,, +48191,,"Mugil auratus Risso, 1810",,golden mullet,"Liza aurata, Mugil auratus, Chelon aurata",golden grey mullet,Chelon auratus,bio/ChelonAuratus,,bio/Chelon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +48193,,"Mugil galapagensis Ebeling, 1961",,Formosan grey mullet,"Mugil japonicus, Mugil galapagensis, Mugil cephalotus",flathead mullet,Mugil cephalus,bio/MugilCephalus,,bio/Mugil,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +48284,,"Caprimulgus Linnaeus, 1758",,,,,Caprimulgus,bio/Caprimulgus,,,,,, +48415,,,,,Macrozoarces,,Zoarces,bio/Zoarces,,,,,, +48455,,,,,,,Gonostoma,bio/Gonostoma,,,,,, +48456,,"Gonostoma atlanticum Norman, 1930",,Atlantic lightfish,"Gonostoma cf. atlanticum CBM DNA 2015-011, Gonostoma cf. atlanticum CBM:ZF:20323",Atlantic fangjaw,Gonostoma atlanticum,bio/GonostomaAtlanticum,,bio/Gonostoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +48667,,,,,,,Rutilus,bio/Rutilus,,,,,, +48849,,"Passer domesticus (Linnaeus, 1758)",,Haussperling,Fringilla domestica,house sparrow,Passer domesticus,bio/PasserDomesticus,,bio/Passer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +48890,,"Poecile palustris Linnaeus, 1758",,Sumpfmeise,Parus palustris,marsh tit,Poecile palustris,bio/PoecilePalustris,,bio/Poecile,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +48987,,,,,,,Nyctimene,bio/Nyctimene,,,,,, +48988,,"Cynopterus albiventer Gray, 1863",,tube-nosed fruit bat,Cynopterus albiventer,common tube-nosed fruit bat,Nyctimene albiventer,bio/NyctimeneAlbiventer,,bio/Nyctimene,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +49551,,"Ligusticum L., 1753",,,,,Ligusticum,bio/Ligusticum,,,,,, +49554,,Ligusticum scoticum L.,,beach lovage,Ligusticum scothicum,Scots lovage,Ligusticum scoticum,bio/LigusticumScoticum,,bio/Ligusticum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +49652,,"Scilla scilloides (Lindl.) Druce, 1917",,Chinese squill,Barnardia scilloides,Japanese jacinth,Scilla scilloides,bio/ScillaScilloides,,bio/Scilla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +50178,,Cephalotaxus Siebold & Zucc. ex Endl.,,,,plum yews,Cephalotaxus,bio/Cephalotaxus,,,,,, +50352,,,,wattled bats,,lobe-lipped bats,Chalinolobus,bio/Chalinolobus,,,,,, +50353,,"Scotophilus morio Gray, 1841",,chocolate wattled bat,Scotophilus morio,chocolate-wattled bat,Chalinolobus morio,bio/ChalinolobusMorio,,bio/Chalinolobus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +50368,,Arothron Mueller 1841,,,,,Arothron,bio/Arothron,,,,,, +50403,,,,,,,Vanellus,bio/Vanellus,,,,,, +50590,,,,,,,Lithognathus,bio/Lithognathus,,,,,, +50591,,"Sparus mormyrus Linnaeus, 1758",,striped seabream,"Pagellus mormyrus, Sparus mormyrus",sand steenbras,Lithognathus mormyrus,bio/LithognathusMormyrus,,bio/Lithognathus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +50732,,,,,,,Astronotus,bio/Astronotus,,,,,, +50733,,"Lobotes ocellatus Agassiz, 1831",,velvet cichlid,Lobotes ocellatus,oscar,Astronotus ocellatus,bio/AstronotusOcellatus,,bio/Astronotus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +50744,,,,,,,Dascyllus,bio/Dascyllus,,,,,, +50790,,"Pomacentrus trimaculatus Ruppell, 1829",,threespot dascyllus,Pomacentrus trimaculatus,three spot damselfish,Dascyllus trimaculatus,bio/DascyllusTrimaculatus,,bio/Dascyllus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +50908,,,,,,,Occidozyga,bio/Occidozyga,,,,,, +50911,,"Rana ibanorum Inger, 1964",,tributary wart frog,Rana ibanorum,rough-backed river frog,Limnonectes ibanorum,bio/LimnonectesIbanorum,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +50913,,"Rana macrodon Tschudi, 1838",,Malaya wart frog,"Euphlyctis macrodon, Rana macrodon",brown mountain frog,Limnonectes macrodon,bio/LimnonectesMacrodon,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +50914,,"Rana magna Stejneger, 1910",,Mount Apo wart frog,"Rana magna, Euphlyctis magna",Mindanao fanged frog,Limnonectes magnus,bio/LimnonectesMagnus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +50915,,"Rana malesiana Kiew, 1984",,Singapore wart frog,Rana malesiana,Malaysian peat frog,Limnonectes malesianus,bio/LimnonectesMalesianus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51088,,Myristica Gronov.,,,,,Myristica,bio/Myristica,,,,,, +51089,,"Myristica fragrans Houtt., 1774",,mace,"Myristica officinalis L.f., 1781, non Myristica officinalis Mart., 1828",nutmeg,Myristica fragrans,bio/MyristicaFragrans,,bio/Myristica,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +51213,,,,,,,Cyclura,bio/Cyclura,,,,,, +51242,,,,,,,Galaxias,bio/Galaxias,,,,,, +51341,,"Aplodontia Richardson, 1829",,,,,Aplodontia,bio/Aplodontia,,,,,, +51342,,"Anisonyx rufa Rafinesque, 1817",,sewellel,Anisonyx rufa,mountain beaver,Aplodontia rufa,bio/AplodontiaRufa,,bio/Aplodontia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +51345,,,,,,,Graphiurus,bio/Graphiurus,,,,,, +51351,,Brassica rapa var. glabra Regel,,pe-tsai,"Brassica rapa var. pekinensis, Brassica campestris var. pekinensis, Brassica rapa Chinese Cabbage Group, Brassica rapa var. glabra, Brassica campestris (Pekinensis Group), Brassica pekinensis, Brassica campestris subsp. pekinensis",Chinese cabbage,Brassica rapa subsp. pekinensis,bio/BrassicaRapaSubspPekinensis,,bio/BrassicaRapa,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +51360,,"Piculus Spix, 1824",,,,,Piculus,bio/Piculus,,,,,, +51647,,,,,,,Gloydius,bio/Gloydius,,,,,, +51750,,"Python molurus (Linnaeus, 1758)",,rock python,"Molurus bivittatus, Coluber molurus",Indian rock python,Python molurus,bio/PythonMolurus,,bio/Python,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51752,,"Python sebae (Gmelin, 1789)",,rock python,Coluber sebae,African rock python,Python sebae,bio/PythonSebae,,bio/Python,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51788,,,,,,,Halichoeres,bio/Halichoeres,,,,,, +51797,,,,,,,Pomacanthus,bio/Pomacanthus,,,,,, +51843,,,,,,,Anilius,bio/Anilius,,,,,, +51844,,"Anguis scytale Linnaeus, 1758",,South American red pipe snake,Anguis scytale,false coral snake,Anilius scytale,bio/AniliusScytale,,bio/Anilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51846,,"Eryx braminus Daudin, 1803",,common blind snake,"Ramphotyphlops braminus, Eryx braminus",Brahminy blind snake,Indotyphlops braminus,bio/IndotyphlopsBraminus,,bio/Indotyphlops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51891,,"Liasis maculosus Peters, 1873",,eastern Children's python,"Liasis maculosus, Liasis maculosa",eastern small-blotched python,Antaresia maculosa,bio/AntaresiaMaculosa,,bio/Antaresia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51894,,,,,Chondropython,,Morelia ,bio/Morelia_Snakes,,,,,, +51896,,"Morelia spilota (Lacepede, 1804)",,South-western carpet python,"Coluber spilotus, Python spilotus",carpet python,Morelia spilota,bio/MoreliaSpilota,,bio/Morelia_Snakes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51901,,,,,,,Cyanopsitta,bio/Cyanopsitta,,,,,, +51902,,"Sittace spixii Wagler, 1832",,Spixs macaw,"Sittace spixii, Ara spixii",Spix's macaw,Cyanopsitta spixii,bio/CyanopsittaSpixii,,bio/Cyanopsitta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51949,,"Oophaga histrionica (Berthold, 1845)",,red-and-black poison frog,"Dendrobates histrionicus, Dendrobates tinctorius histrionicus",harlequin poison frog,Oophaga histrionica,bio/OophagaHistrionica,,bio/Oophaga,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51959,,"Ranitomeya minuta (Shreve, 1935)",,blue-bellied poison frog,"Dendrobates minutus minutus, Ranitomeya minuta, Dendrobates minutus, Minyobates minutus",bluebelly poison frog,Andinobates minutus,bio/AndinobatesMinutus,,bio/Andinobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +51980,,"Ungualia haetiana Cope, 1879",,Haitian ground boa,Ungualia haetiana,Haitian dwarf boa,Tropidophis haetianus,bio/TropidophisHaetianus,,bio/Tropidophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +52105,,"Salamandra quadramaculata Holbrook, 1840",,mountain triton,Salamandra quadramaculata,black-bellied salamander,Desmognathus quadramaculatus,bio/DesmognathusQuadramaculatus,,bio/Desmognathus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +52123,,,,,,,Oceanodroma,bio/Oceanodroma,,,,,, +52158,,"Piptatherum miliaceum (L.) Coss., 1851",,rice-millet,"Piptatherum miliaceum, Agrostis miliacea, Oryzopsis miliacea",smilo grass,Oloptum miliaceum,bio/OloptumMiliaceum,,bio/Oloptum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +52232,,"Mico humeralifer (Geoffroy, 1812)",,tassel-eared marmoset,"Callithrix jacchus humeralifer, Hapale humeralifer, Mico humeralifera, Callithrix humeralifera",Santarem marmoset,Mico humeralifer,bio/MicoHumeralifer,,bio/Mico,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +52370,,,,,,,Quadrula,bio/Quadrula,,,,,, +52372,,"Quadrula quadrula (Rafinesque, 1820)",,southern mapleleaf,Quadrula apiculata,mapleleaf mussel,Quadrula quadrula,bio/QuadrulaQuadrula,,bio/Quadrula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +52617,,"Carassius cuvieri Temminck & Schlegel, 1846",,white crucian carp,"Carassius cuvieri cuvieri, Carassius auratus cuvieri",Japanese crucian carp,Carassius cuvieri,bio/CarassiusCuvieri,,bio/Carassius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +52631,,"Sorex suaveolens Pallas, 1811",,lesser shrew,Sorex suaveolens,Lesser white-toothed shrew,Crocidura suaveolens,bio/CrociduraSuaveolens,,bio/Crocidura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +52652,,Aphyosemion (Chromaphyosemion),,,"Diapteron, Chromaphyosemion",,Aphyosemion,bio/Aphyosemion,,,,,, +52653,,"Aphyosemion australe (Rachow, 1921)",,lyretail panchax,Haplochilus calliurus australis,lyretail killifish,Aphyosemion australe,bio/AphyosemionAustrale,,bio/Aphyosemion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +52655,,,,,Aphyoplatys,,Epiplatys,bio/Epiplatys,,,,,, +52813,,,,,,,Neomys,bio/Neomys,,,,,, +52814,,"Neomys anomalus Cabrera, 1907",,Mediterranean water shrew,Neomys anomalis,southern water shrew,Neomys anomalus,bio/NeomysAnomalus,,bio/Neomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +52838,,"Musa rosacea Jacq., 1804",,starchy banana,"Musa BB Group, Musa sp. 'Pisang klutuk', Musa rosacea",Balbis banana,Musa balbisiana,bio/MusaBalbisiana,,bio/Musa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +53222,,"Lupinus cosentinii Guss., 1828",,sandplain lupin,Lupinus cosentini,West Australian blue lupin,Lupinus cosentinii,bio/LupinusCosentinii,,bio/Lupinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +53541,,,,,,,Stegomyia,bio/Stegomyia,,,,,, +53545,,,,,,,Ochlerotatus ,bio/Ochlerotatus_Subgenus,,,,,, +53882,,Gymnocladus Lam.,,,,,Gymnocladus,bio/Gymnocladus,,,,,, +53883,,"Gymnocladus dioicus (L.) K.Koch, 1869",,nicker tree,Gymnocladus dioica,Kentucky coffee tree,Gymnocladus dioicus,bio/GymnocladusDioicus,,bio/Gymnocladus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +54021,,"Diomedea nigripes Audubon, 1839",,black-footed albatross,Diomedea nigripes,Hawaiian black-footed albatross,Phoebastria nigripes,bio/PhoebastriaNigripes,,bio/Phoebastria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54054,,"Stercorarius lonnbergi (Mathews, 1912)",,Lonnberg's skua,"Catharacta skua lonnbergi, Catharacta lonnbergi, Stercorarius antarctica lonnbergi, Stercorarius antarcticus lonnbergi, Catharacta antarctica lonnbergi",brown skua,Stercorarius lonnbergi,bio/StercorariusLonnbergi,,bio/Stercorarius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54057,,"Stercorarius Brisson, 1760",,,Catharacta,,Stercorarius,bio/Stercorarius,,,,,, +54132,,,,,,,Pygathrix,bio/Pygathrix,,,,,, +54133,,"Simia nemaeus Linnaeus, 1771",,dove langur,Simia nemaeus,Red shanked douc langur,Pygathrix nemaeus,bio/PygathrixNemaeus,,bio/Pygathrix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +54136,,"Trachypithecus Reichenbach, 1862",,brow-ridged langurs,,leaf monkeys,Trachypithecus,bio/Trachypithecus,,,,,, +54181,,"Trachypithecus obscurus (Reid, 1837)",,spectacled langur,Presbytis obscurus,Dusky leaf-monkey,Trachypithecus obscurus,bio/TrachypithecusObscurus,,bio/Trachypithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +54319,,"Etheostoma caeruleum Storer, 1845",,Ozark rainbow darter,Etheostoma cf. caeruleum TJN-2011,rainbow darter,Etheostoma caeruleum,bio/EtheostomaCaeruleum,,bio/Oligocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54328,,"Percina evides (Jordan & Copeland, 1877)",,western gilt darter,"Alvordius evides, Percina cf. evides TJN-2011",gilt darter,Percina evides,bio/PercinaEvides,,bio/Ericosoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54342,,"Poecilichthys sagitta Jordan & Swain, 1883",,arrow darter,Poecilichthys sagitta,Cumberland arrow darter,Etheostoma sagitta,bio/EtheostomaSagitta,,bio/Litocara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54439,,,,,,,Capnoides,bio/Capnoides,,,,,, +54483,,,,,,,Porphyrio,bio/Porphyrio,,,,,, +54484,,"Porphyrio mantelli (Owen, 1848)",,takahe,Notornis mantelli,North Island takahe,Porphyrio mantelli,bio/PorphyrioMantelli,,bio/Porphyrio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54497,,"Rallus modestus Hutton, 1872",,Chatham rail,"Caballus modestus, Gallirallus modestus, Rallus modestus",Chatham Island rail,Cabalus modestus,bio/CabalusModestus,,bio/Cabalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54500,,"Gallirallus dieffenbachii (Gray,GR, 1843)",,Chatham Islands banded rail,"Gallirallus philippensis dieffenbachii, Rallus philippiensis dieffenbachii",Dieffenbach's rail,Gallirallus dieffenbachii,bio/GallirallusDieffenbachii,,bio/Gallirallus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54555,,,,,Chalcalburnus,,Alburnus,bio/Alburnus,,,,,, +54563,,"Rutilus frisii (Nordmann, 1840)",,kutum,Leuciscus frisii,common roach,Rutilus frisii,bio/RutilusFrisii,,bio/Rutilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54578,,,,,,,Cyanocorax,bio/Cyanocorax,,,,,, +54769,,"Fringilla flammea Linnaeus, 1758",,redpoll,"Carduelis flammea, Fringilla flammea",common redpoll,Acanthis flammea,bio/AcanthisFlammea,,bio/Acanthis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54971,,"Tringa interpres Linnaeus, 1758",,turnstone,Tringa interpres,ruddy turnstone,Arenaria interpres,bio/ArenariaInterpres,,bio/Arenaria_Birds,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +54972,,,,,,turnstones,Arenaria ,bio/Arenaria_Birds,,,,,, +55055,,"Sphinx convolvuli Linnaeus, 1758",,sweetpotato hornworm,"Herse convolvuli, Sphinx convolvuli",morning glory sphinx moth,Agrius convolvuli,bio/AgriusConvolvuli,,bio/Agrius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +55107,,,,,,,Phalloceros,bio/Phalloceros,,,,,, +55108,,"Phalloceros caudimaculatus (Hensel, 1868)",,spottail mosquitofish,Girardinus caudimaculatus,dusky millions fish,Phalloceros caudimaculatus,bio/PhallocerosCaudimaculatus,,bio/Phalloceros,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +55112,,,,,,,Notacanthus,bio/Notacanthus,,,,,, +55137,,"Myliobatis Cuvier, 1816",,,,,Myliobatis,bio/Myliobatis,,,,,, +55141,,,,,,,Squatina,bio/Squatina,,,,,, +55533,,,,,,,Apalone,bio/Apalone,,,,,, +55534,,"Trionyx spiniferus Le Sueur, 1827",,spiny softshell,Trionyx spiniferus,spiny softshell turtle,Apalone spinifera,bio/ApaloneSpinifera,,bio/Apalone,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +55577,,"Dioscorea rotundata Poir., 1813",,white yam,"Dioscorea cayennensis subsp. rotundata, Dioscorea rotundata, Dioscorea cayenensis subsp. rotundata (Poir.) J.Miege, 1968",Guinea yam,Dioscorea cayenensis subsp. rotundata,bio/DioscoreaCayenensisSubspRotundata,,bio/DioscoreaCayenensis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +55977,,,,,,,Tomicus,bio/Tomicus,,,,,, +56217,,"Necromys lactens (Thomas, 1918)",,rufous-bellied bolo mouse,"Necromys sp. OMNH 34512, Bolomys lactens",White-chinned akodont,Necromys lactens,bio/NecromysLactens,,bio/Necromys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +56312,,,,,,,Tyto,bio/Tyto,,,,,, +56313,,"Tyto alba (Scopoli, 1769)",,Schleiereule,Strix alba,common barn owl,Tyto alba,bio/TytoAlba,,bio/Tyto,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +56318,,,,,,,Habromys,bio/Habromys,,,,,, +56362,,,,,Agriopodes,,Acronicta,bio/Acronicta,,,,,, +56364,,"Phalaena ipsilon Hufnagel, 1766",,greasy cutworm moth,Phalaena ipsilon,black cutworm moth,Agrotis ipsilon,bio/AgrotisIpsilon,,bio/Agrotis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +56375,,,,,Mormonia,,Catocala,bio/Catocala,,,,,, +56435,,"Phylloscopus proregulus (Pallas, 1811)",,Pallas's Lwaf-Warbler,"Reguloides proregulus proregulus, Phylloscopus proregulus proregulus, Abrornis proregulus, Motacilla proregulus, Reguloides proregulus",Pallas's leaf-warbler,Phylloscopus proregulus,bio/PhylloscopusProregulus,,bio/Phylloscopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +56612,,,,,,,Poeciliopsis,bio/Poeciliopsis,,,,,, +56721,,,,,,,Pseudaphritis,bio/Pseudaphritis,,,,,, +56722,,"Pseudaphritis urvillii (Valenciennes, 1832)",,tupong,Aphritis urvillii,congolli,Pseudaphritis urvillii,bio/PseudaphritisUrvillii,,bio/Pseudaphritis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57176,,"Nyctipithecus vociferans Spix, 1823",,Spix's night monkey,Nyctipithecus vociferans,noisy night monkey,Aotus vociferans,bio/AotusVociferans,,bio/Aotus_Primates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +57374,,"Midas chrysomelas Kuhl, 1820",,gold-and-black lion tamarin,"Leontopithecus rosalia chrysomelas, Midas chrysomelas",golden-headed lion tamarin,Leontopithecus chrysomelas,bio/LeontopithecusChrysomelas,,bio/Leontopithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +57375,,"Simia aurita Geoffroy, 1812",,buffy-eared marmoset,"Simia aurita, Callithrix jacchus aurita",white-eared marmoset,Callithrix aurita,bio/CallithrixAurita,,bio/Callithrix_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +57378,,"Simia penicillata Geoffroy, 1812",,black tufted-ear marmoset,"Simia penicillata, Callithrix jacchus penicillata",black-pencilled marmoset,Callithrix penicillata,bio/CallithrixPenicillata,,bio/Callithrix_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +57542,,,,,,slender salamanders,Batrachoseps,bio/Batrachoseps,,,,,, +57544,,"Hemidactylium pacificum Cope, 1865",,Pacific worm-salamander,"Batrachoseps attenuatus pacificus, Hemidactylium pacificum",Channel Islands slender salamander,Batrachoseps pacificus,bio/BatrachosepsPacificus,,bio/Batrachoseps,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57549,,,,,,,Ensatina,bio/Ensatina,,,,,, +57550,,"Ensatina eschscholtzii Gray, 1850",,redwood salamander,Plethodon eschscholtzii,common Ensatina,Ensatina eschscholtzii,bio/EnsatinaEschscholtzii,,bio/Ensatina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57551,,"Plethodon croceater Cope, 1868",,yellow-blotched salamander,Plethodon croceater,yellow-blotched Ensatina,Ensatina eschscholtzii croceater,bio/EnsatinaEschscholtziiCroceater,,bio/EnsatinaEschscholtzii,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57552,,"Heredia oregonensis Girard, 1856",,Oregon triton,"Plethodon oregonensis, Heredia oregonensis",Oregon Ensatina,Ensatina eschscholtzii oregonensis,bio/EnsatinaEschscholtziiOregonensis,,bio/EnsatinaEschscholtzii,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57554,,"Speleomantes flavus (Stefani, 1969)",,yellowish cave salamander,Hydromantes flavus,Monte Albo cave salamander,Speleomantes flavus,bio/SpeleomantesFlavus,,bio/Speleomantes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57555,,"Speleomantes italicus (Dunn, 1923)",,Apennines salamander,"Hydromantes italicus, Hydromantes (Speleomantes) italicus",Italian cave salamander,Speleomantes italicus,bio/SpeleomantesItalicus,,bio/Speleomantes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57569,,,,,,fire salamanders,Salamandra,bio/Salamandra,,,,,, +57571,,"Lacerta salamandra Linnaeus, 1758",,spotted salamander,Lacerta salamandra,fire salamander,Salamandra salamandra,bio/SalamandraSalamandra,,bio/Salamandra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57791,,,,,,,Ecsenius,bio/Ecsenius,,,,,, +57795,,,,,,,Entomacrodus,bio/Entomacrodus,,,,,, +57804,,,,,,,Heteroclinus,bio/Heteroclinus,,,,,, +57805,,"Petraites heptaeolus Ogilby, 1885",,Ogilby's weedfish,Petraites heptaeolus,seven-bar weedfish,Heteroclinus heptaeolus,bio/HeteroclinusHeptaeolus,,bio/Heteroclinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +57834,,,,,,,Omobranchus,bio/Omobranchus,,,,,, +57846,,,,,,,Petroscirtes,bio/Petroscirtes,,,,,, +57850,,,,,,,Rhabdoblennius,bio/Rhabdoblennius,,,,,, +57854,,,,,,,Starksia,bio/Starksia,,,,,, +57988,,,,,,,Odontaspis,bio/Odontaspis,,,,,, +57989,,"Odontaspis ferox (Risso, 1810)",,sandtiger shark,Squalus ferox,smalltooth sand tiger,Odontaspis ferox,bio/OdontaspisFerox,,bio/Odontaspis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58023,,"Tracheophyta Sinnott ex Cavalier-Smith, 1998",vascular plants,vascular plants,,,Tracheophyta,bio/Tracheophyta,,,,,, +58068,,,,,,,Hipposideros,bio/Hipposideros,,,,,, +58071,,"Myonycteris angolensis (Bocage, 1898)",,Angolan fruit bat,"Cynonycteris angolensis, Rousettus angolensis",Angolan soft-furred fruit bat,Myonycteris angolensis,bio/MyonycterisAngolensis,,bio/Myonycteris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +58186,,,,,,,Aubria,bio/Aubria,,,,,, +58187,,"Rana subsigillata Dumeril, 1856",,West African brown frog,Rana subsigillata,brown ball frog,Aubria subsigillata,bio/AubriaSubsigillata,,bio/Aubria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58200,,,,,,,Mimus,bio/Mimus,,,,,, +58208,,,,,,,Thraupis,bio/Thraupis,,,,,, +58209,,"Thraupis episcopus (Linnaeus, 1766)",,blue-grey tanager,"Tangara episcopus, Tangara episcopus (Linnaeus, 1766)",blue-gray tanager,Thraupis episcopus,bio/ThraupisEpiscopus,,bio/Thraupis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58316,,,,,,,Blicca,bio/Blicca,,,,,, +58317,,"Cyprinus bjoerkna Linnaeus, 1758",,silver bream,"Cyprinus bjoerkna, Abramis bjoerkna",white bream,Blicca bjoerkna,bio/BliccaBjoerkna,,bio/Blicca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58318,,,,,,,Scardinius,bio/Scardinius,,,,,, +58319,,"Scardinius erythrophthalmus (Linnaeus, 1758)",,redeye,Cyprinus erythrophthalmus,rudd,Scardinius erythrophthalmus,bio/ScardiniusErythrophthalmus,,bio/Scardinius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58325,,"Leuciscus leuciscus (Linnaeus, 1758)",,hasel,Cyprinus leuciscus,common dace,Leuciscus leuciscus,bio/LeuciscusLeuciscus,,bio/Leuciscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58326,,,,,,,Rhodeus,bio/Rhodeus,,,,,, +58512,,"Platymantis vitiensis (Girard, 1853)",,Levuka wrinkled ground frog,"Platymantis vitiensis, Halophila vitiensis",Fiji tree frog,Cornufer vitiensis,bio/CornuferVitiensis,,bio/Cornufer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58514,,,,,,,Tomopterna,bio/Tomopterna,,,,,, +58517,,"Platymantis guentheri (Boulenger, 1882)",,Gunther's wrinkled ground frog,"Platymantis guentheri, Ceratobatrachus guentheri",Gunther's triangle frog,Cornufer guentheri,bio/CornuferGuentheri,,bio/Cornufer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58518,,,,,Rana cynophylictis,,Euphlyctis,bio/Euphlyctis,,,,,, +58519,,"Euphlyctis cyanophlyctis (Schneider, 1799)",,water skipping frog,"Dicroglossus cyanophlyetis, Dicroglossus cyanophlyctis, Rana cyanophlyetis, Bufo cyanophlyetis, Bufo cyanophlyctis, Rana cyanophlyctis, Euphlyctis cyanophyletis",skittering frog,Euphlyctis cyanophlyctis,bio/EuphlyctisCyanophlyctis,,bio/Euphlyctis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58674,,"Ensatina klauberi Dunn, 1929",,large-blotched salamander,Ensatina klauberi,large-blotched Ensatina,Ensatina eschscholtzii klauberi,bio/EnsatinaEschscholtziiKlauberi,,bio/EnsatinaEschscholtzii,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58676,,"Urotropis platensis Jimenez de la Espada, 1875",,Sierra Nevada salamander,"Ensatina platensis, Urotropis platensis, Plethodon platensis",Sierra Nevada Ensatina,Ensatina eschscholtzii platensis,bio/EnsatinaEschscholtziiPlatensis,,bio/EnsatinaEschscholtzii,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58766,,,,,,,Mastigoproctus,bio/Mastigoproctus,,,,,, +58767,,"Thelyphonus giganteus Lucas, 1835",,giant vinegaroon,Thelyphonus giganteus,giant whipscorpion,Mastigoproctus giganteus,bio/MastigoproctusGiganteus,,bio/Mastigoproctus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +58823,,,,,,,Plodia,bio/Plodia,,,,,, +58824,,"Tinea interpunctella Hubner, 1813",,Indian meal moth,Tinea interpunctella,Indianmeal moth,Plodia interpunctella,bio/PlodiaInterpunctella,,bio/Plodia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +59529,,"Gazella subgutturosa (Guldenstaedt, 1780)",,black-tailed gazelle,Antilope subgutturosa,goitered gazelle,Gazella subgutturosa,bio/GazellaSubgutturosa,,bio/Gazella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +59537,,,,,,,Pantholops,bio/Pantholops,,,,,, +59538,,"Pantholops hodgsonii (Abel, 1826)",,Tibetan antelope,Pantholops hodgsoni,chiru,Pantholops hodgsonii,bio/PantholopsHodgsonii,,bio/Pantholops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +59557,,"Lycoperdon aestivum Wulfen, 1787",,red-grained black truffle,Lycoperdon aestivum,summer truffle,Tuber aestivum,bio/TuberAestivum,,bio/Tuber,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +59660,,,,,,,Scarus,bio/Scarus,,,,,, +59661,,"Scarus iseri (Bloch, 1789)",,grey chub,"Scarus iserti, Callyodon iseri",striped parrotfish ,Scarus iseri,bio/ScarusIseri,,bio/Scarus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +59945,,,,,,,Rexea,bio/Rexea,,,,,, +59946,,"Rexea solandri (Cuvier, 1832)",,southern kingfish,Gempylus solandri,silver gemfish ,Rexea solandri,bio/RexeaSolandri,,bio/Rexea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +60273,,"Mesoaphyosemion cameronense (Boulenger, 1903)",,Cameroon killi,"Mesoaphyosemion cameronense, Haplochilus cameronensis",Cameroon killifish,Aphyosemion cameronense,bio/AphyosemionCameronense,,bio/Aphyosemion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +60281,,"Aphyosemion elegans (Boulenger, 1899)",,elegant killi,Haplochilus elegans,elegant killifish,Aphyosemion elegans,bio/AphyosemionElegans,,bio/Aphyosemion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +60283,,"Haplochilus exiguus Boulenger, 1911",,jewel killi,Haplochilus exiguus,jewel killifish,Aphyosemion exiguum,bio/AphyosemionExiguum,,bio/Aphyosemion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +60402,,"Aphyosemion guineense Daget, 1954",,Guinean killi,"Roloffia guineense, Aphyosemion guineense",Guinean killifish,Archiaphyosemion guineense,bio/ArchiaphyosemionGuineense,,bio/Archiaphyosemion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +60461,,,,,,,Agapornis,bio/Agapornis,,,,,, +60468,,"Psittacus roseicollis Vieillot, 1818",,rosy-cheeked lovebird,Psittacus roseicollis,peach-faced lovebird,Agapornis roseicollis,bio/AgapornisRoseicollis,,bio/Agapornis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +60710,,"Chlorocebus pygerythrus (F. Cuvier, 1821)",,vervet monkey,"Cercopithecus aethiops pygerythrus, Cercopithecus pygerythrus, Chlorocebus aethiops pygerythrus",vervet,Chlorocebus pygerythrus,bio/ChlorocebusPygerythrus,,bio/Chlorocebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +60886,,,,,,,Rhabdocalyptus,bio/Rhabdocalyptus,,,,,, +61153,,,,,,,Arvicanthis,bio/Arvicanthis,,,,,, +61156,,"Mus niloticus Geoffroy, 1803",,African grass rat,Mus niloticus,Nile rat,Arvicanthis niloticus,bio/ArvicanthisNiloticus,,bio/Arvicanthis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +61195,,"Nyctimystes infrafrenatus (Gunther, 1867)",,white-lipped treefrog,"Litoria infrafrenata, Hyla infrafrenata",Australian giant treefrog,Nyctimystes infrafrenatus,bio/NyctimystesInfrafrenatus,,bio/Nyctimystes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +61320,,,,,,,Hydrocynus,bio/Hydrocynus,,,,,, +61508,,"Persicaria Mill., 1754",,,,,Persicaria,bio/Persicaria,,,,,, +61614,,"Discoglossus jeanneae Busack, 1986",,East Iberian painted frog,Discoglossus galganoi jeanneae,Spanish painted frog,Discoglossus jeanneae,bio/DiscoglossusJeanneae,,bio/Discoglossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +61615,,,,,,,Pelobates,bio/Pelobates,,,,,, +61616,,"Rana cultripes Cuvier, 1829",,western spadefoot,"Rana cultripes, Cultripes cultripes",western spadefoot toad ,Pelobates cultripes,bio/PelobatesCultripes,,bio/Pelobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +61620,,"Mesites maculatus Jenyns, 1842",,inanga,Mesites maculatus,cowfish,Galaxias maculatus,bio/GalaxiasMaculatus,,bio/Galaxias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +61621,,"Rhinopithecus bieti Milne-Edwards, 1897",,Yunnan snub-nosed monkey,Pygathrix bieti,black snub-nosed monkey,Rhinopithecus bieti,bio/RhinopithecusBieti,,bio/Rhinopithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +61808,,,,,,,Pomacentrus,bio/Pomacentrus,,,,,, +61817,,"Heros spilurus Gunther, 1862",,Cutter's cichlid,"Heros spilurus, Archocentrus spilurus, Cichlasoma spilorum, Archocentrus spilurum",blue-eye cichlid,Cryptoheros spilurus,bio/CryptoherosSpilurus,,bio/Cryptoheros_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +61818,,,,,Astatheros,,Amphilophus,bio/Amphilophus,,,,,, +61819,,"Heros citrinellus Gunther, 1864",,red devil,"Herichthys citrinellus, Heros citrinellus, Archocentrus citrinellum, Cichlasoma citrinellum",Midas cichlid,Amphilophus citrinellus,bio/AmphilophusCitrinellus,,bio/Amphilophus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +61835,,,,,,,Terranatos,bio/Terranatos,,,,,, +61836,,"Terranatos dolichopterus (Weitzman & Wourms, 1967)",,saberfin killifish,Austrofundulus dolichopterus,saberfin killie,Terranatos dolichopterus,bio/TerranatosDolichopterus,,bio/Terranatos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +61851,,"Bunopithecus hoolock (Harlan, 1834)",,Western hoolock gibbon,"Hylobates hoolock, Bunopithecus hoolock, Simia hoolock, Hoolock hoolock hoolock, Bunopithecus hoolock hoolock",hoolock gibbon,Hoolock hoolock,bio/HoolockHoolock,,bio/Hoolock,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +61852,,"Hylobates gabriellae Thomas, 1909",,buff-cheeked gibbon,"Hylobates concolor gabriellae, Hylobates gabriellae",Red-cheeked gibbon,Nomascus gabriellae,bio/NomascusGabriellae,,bio/Nomascus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +61853,,"Hylobates leucogenys Ogilby, 1840",,White-cheeked Gibbon,"Hylobates concolor leucogyneus, Hylobates leucogenys leucogenys, Hylobates leucogenys, Nomascus leucogenys leucogenys, Nomascus leukogenys, Hylobates concolor leucogenys",northern white-cheeked gibbon,Nomascus leucogenys,bio/NomascusLeucogenys,,bio/Nomascus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +62066,,,,,,,Brachymystax,bio/Brachymystax,,,,,, +62067,,"Salmo lenok Pallas, 1773",,Manchurian trout,Salmo lenok,lenok trout,Brachymystax lenok,bio/BrachymystaxLenok,,bio/Brachymystax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +62211,,,,,,,Iridosornis,bio/Iridosornis,,,,,, +62224,,,,,,,Neothraupis,bio/Neothraupis,,,,,, +62226,,"Tanagra fasciata Lichtenstein, 1823",,white banded tanager,Tanagra fasciata,white-banded tanager,Neothraupis fasciata,bio/NeothraupisFasciata,,bio/Neothraupis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +62258,,,,,,,Vermivora,bio/Vermivora,,,,,, +62330,,Polygonum tataricum L.,,Kangra buckwheat,Polygonum tataricum,Tartarian buckwheat,Fagopyrum tataricum,bio/FagopyrumTataricum,,bio/Fagopyrum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +62964,,,,,,,Narke,bio/Narke,,,,,, +63058,,"Ulmus parvifolia Jacq., 1798",,leatherleaf elm,Ulmus sieboldii,Chinese elm,Ulmus parvifolia,bio/UlmusParvifolia,,bio/Ulmus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +63176,,,,,,,Parachromis,bio/Parachromis,,,,,, +63221,,"Homo sapiens neanderthalensis King, 1864",,Neanderthal man,Homo neanderthalensis,Neandertal,Homo sapiens neanderthalensis,bio/HomoSapiensNeanderthalensis,,bio/HomoSapiens,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPrimates,True, +63461,,,,,,,Nerium,bio/Nerium,,,,,, +63479,,"Nerium oleander L., 1753",,rose-bay,"Nerium indicum, Nerium odorum",common oleander,Nerium oleander,bio/NeriumOleander,,bio/Nerium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +63614,,"Cryptomys bocagei (de Winton, 1897)",,Bocage's mole rat,Cryptomys bocagei,Angolan mole-rat,Fukomys bocagei,bio/FukomysBocagei,,bio/Fukomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +63787,,"Kalanchoe fedtschenkoi Raym.-Hamet & H.Perrier, 1915",,lavender-scallops,Bryophyllum fedtschenkoi,South American air plant,Kalanchoe fedtschenkoi,bio/KalanchoeFedtschenkoi,,bio/Kalanchoe,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +64152,,"Ophicephalus striatus Bloch, 1793",,striped snakehead,"Channa stratus, Ophicephalus striatus",snakehead murrel,Channa striata,bio/ChannaStriata,,bio/Channa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +64176,,"Seps muralis Laurenti, 1768",,Mauereidechse,"Seps muralis, Lacerrta muralis",Common wall lizard,Podarcis muralis,bio/PodarcisMuralis,,bio/Podarcis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +64415,,"Lacerta taurica Pallas, 1814",,Balkan wall lizard,Lacerta taurica,Crimean wall lizard,Podarcis tauricus,bio/PodarcisTauricus,,bio/Podarcis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +64459,,"Pieris rapae (Linnaeus, 1758)",,small white,"Papilio rapae, Artogeia rapae",cabbage white,Pieris rapae,bio/PierisRapae,,bio/Pieris_Butterflies,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +64799,,"Hemignathus virens (Gmelin, JF, 1788)",,common amakihi,"Hemignathus virens, Hemignathus virens (Gmelin, 1851)",Hawaii amakihi,Chlorodrepanis virens,bio/ChlorodrepanisVirens,,bio/Chlorodrepanis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +64884,,Citrus jambhiri Lush.,,jambhiri-orange,Citrus x jambhiri,rough lemon,Citrus jambhiri,bio/CitrusJambhiri,,bio/Citrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +65476,,"Seps viridis Laurenti, 1768",,European green lizard,Seps viridis,green lizard,Lacerta viridis,bio/LacertaViridis,,bio/Lacerta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +65620,,"Bettongia Gray, 1837",,bettongs,,,Bettongia,bio/Bettongia,,,,,, +65621,,"Hypsiprymnus lesueur Quoy & Gaimard, 1824",,burrowing bettong,"Bettongia leseuri, Hypsiprymnus lesueur",boodie,Bettongia lesueur,bio/BettongiaLesueur,,bio/Bettongia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +65692,,,,,,,Charybdis ,bio/Charybdis_Crustaceans,,,,,, +65771,,"Scilla peruviana L., 1753",,hyacinth-of-Peru,Oncostema peruviana,Peruvian jacinth,Scilla peruviana,bio/ScillaPeruviana,,bio/Scilla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +66062,,"Rhinopithecus avunculus Dollman, 1912",,Dollman's snub-nosed monkey,Pygathrix avunculus,Tonkin snub-nosed monkey,Rhinopithecus avunculus,bio/RhinopithecusAvunculus,,bio/Rhinopithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +66063,,"Trachypithecus johnii (J. Fischer, 1829)",,hooded leaf monkey,"Presbytis johnii, Semnopithecus johnii",Nilgiri langur,Trachypithecus johnii,bio/TrachypithecusJohnii,,bio/Trachypithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +66169,,"Cephalotaxus fortunei Hook., 1850",,Fortune's plum yew,Cephalotaxus fortunii,Chinese plum yew,Cephalotaxus fortunei,bio/CephalotaxusFortunei,,bio/Cephalotaxus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +66627,,"Zygophyllum arboreum Jacq., 1760",,verawood,"Zygophyllum arboreum, Bulnesia arborea",Maracaibo lignum-vitae,Gonopterodendron arboreum,bio/GonopterodendronArboreum,,bio/Gonopterodendron,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +68429,,,,,,,Philautus,bio/Philautus,,,,,, +68448,,,,,,whipping frogs,Polypedates,bio/Polypedates,,,,,, +68449,,"Polypedates megacephalus Hallowell, 1861",,spot-legged treefrog,Rhacophorus megacephalus,Hong Kong whipping frog,Polypedates megacephalus,bio/PolypedatesMegacephalus,,bio/Polypedates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +68464,,"Poeciliopsis occidentalis (Baird & Girard, 1853)",,Sonoran topminnow,"Poeciliopsis occidentalis occidentalis, Heterandria occidentalis",Gila topminnow,Poeciliopsis occidentalis,bio/PoeciliopsisOccidentalis,,bio/Poeciliopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +68476,,"Sylvia agricola Jerdon, 1845",,paddy-field warbler,Sylvia agricola,paddyfield warbler,Acrocephalus agricola,bio/AcrocephalusAgricola,,bio/Acrocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +68512,,,,,,,Chlorophthalmus,bio/Chlorophthalmus,,,,,, +68721,,,,,,,Atelocynus,bio/Atelocynus,,,,,, +68722,,"Canis microtis Sclater, 1883",,small eared zorro,Canis microtis,small-eared dog,Atelocynus microtis,bio/AtelocynusMicrotis,,bio/Atelocynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +68732,,"Canis zerda Zimmermann, 1780",,fennec,"Canis zerda, Fennecus zerda",fennec fox,Vulpes zerda,bio/VulpesZerda,,bio/Vulpes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +68736,,"Lycalopex culpaeus (Molina, 1782)",,culpeo fox,Pseudalopex culpaeus,Culpeo,Lycalopex culpaeus,bio/LycalopexCulpaeus,,bio/Lycalopex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +68737,,"Lycalopex griseus (Gray, 1837)",,grey zorro,"Pseudalopex griseus, Dusicyon griseus",South American gray fox,Lycalopex griseus,bio/LycalopexGriseus,,bio/Lycalopex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +69077,,"Rattus sikkimensis Hinton, 1919",,Sikkim rat,"Rattus remotus, Rattus sikkimensis",Indochinese forest rat,Rattus andamanensis,bio/RattusAndamanensis,,bio/Rattus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +69080,,"Maxomys Sody, 1936",,,,,Maxomys,bio/Maxomys,,,,,, +69081,,"Mus surifer Miller, 1900",,red spiny rat,"Rattus surifer, Mus surifer",Indomalayan maxomys,Maxomys surifer,bio/MaxomysSurifer,,bio/Maxomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +69129,,,,,Pranesus,,Atherinomorus,bio/Atherinomorus,,,,,, +69133,,,,,Quirichthys,,Craterocephalus,bio/Craterocephalus,,,,,, +69229,,"Poecilia nigrofasciata (Regan, 1913)",,humpedbacked limia,Poecilia nigrofasciata,blackbarred limia,Limia nigrofasciata,bio/LimiaNigrofasciata,,bio/Limia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +69293,,"Gasterosteus aculeatus Linnaeus, 1758",,three spined stickleback,,three-spined stickleback ,Gasterosteus aculeatus,bio/GasterosteusAculeatus,,,,,, +69489,,"Rana esculenta var. bedriagae Camerano, 1882",,Levant pool frog,"Rana esculenta var. bedriagae, Rana (Pelophylax) bedriagae, Rana bedriagae",Levant water frog,Pelophylax bedriagae,bio/PelophylaxBedriagae,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +69509,,,,,,,Saxicola,bio/Saxicola,,,,,, +69624,,,,,,,Daculus,bio/Daculus,,,,,, +69644,,,,,Polistomimetes,,Tetradacus,bio/Tetradacus,,,,,, +69811,,"Leuciscus idus (Linnaeus, 1758)",,silver orfe,"Cyprinus idus, Idus idus, Leuciscus leuciscus idus",ide,Leuciscus idus,bio/LeuciscusIdus,,bio/Leuciscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +70019,,"Rana saharica Boulenger, 1913",,North African water frog,"Rana ridibunda saharica, Hylarana saharica, Rana esculenta var. saharica, Rana saharica",Sahara frog,Pelophylax saharicus,bio/PelophylaxSaharicus,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +70079,,,,,,,Stenogobius,bio/Stenogobius,,,,,, +70083,,,,,,,Awaous,bio/Awaous,,,,,, +70548,,"Xenocypris microlepis Bleeker, 1871",,fine-scaled yellowfin,Xenocypris microlepis,smallscale yellowfin,Plagiognathops microlepis,bio/PlagiognathopsMicrolepis,,bio/Plagiognathops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +70825,,"Simia melanocephala Humboldt, 1812",,black uakari,"Simia melanocephala, Cacajao ouakary",Black-headed Uacari,Cacajao melanocephalus,bio/CacajaoMelanocephalus,,bio/Cacajao,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +71112,,"Lontra Gray, 1843",,,,,Lontra,bio/Lontra,,,,,, +71159,,,,,,,Lampanyctus,bio/Lampanyctus,,,,,, +71165,,,,,,,Gonatodes,bio/Gonatodes,,,,,, +71773,,"Siphateles bicolor (Girard, 1856)",,,"Gila bicolor, Algansea bicolor",tui chub,Siphateles bicolor,bio/SiphatelesBicolor,,,,,, +72005,,,,,,,Cuora,bio/Cuora,,,,,, +72011,,"Chrysophrys schlegelii Bleeker, 1854",,black sea bream,"Chrysophrys schlegelii, Sparus macrocephalus, Mylio macrocephalus, Acanthopagrus schlegeli",black porgy,Acanthopagrus schlegelii,bio/AcanthopagrusSchlegelii,,bio/Acanthopagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +72171,,"Ziziphus Mill., 1754",,,Zizyphus,,Ziziphus,bio/Ziziphus,,,,,, +72247,,"Colias behrii Edwards, 1866",,sierra green sulfur butterfly,Colias behri,sierra green sulfur,Colias behrii,bio/ColiasBehrii,,bio/Colias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +72248,,"Colias croceus (Geoffroy, 1785)",,clouded yellow butterfly,"Papilio croceus, Colias crocea",clouded yellow,Colias croceus,bio/ColiasCroceus,,bio/Colias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +72255,,"Euchloe ausonides (Lucas, 1852)",,large marblewing,"Euchloe (Euchloe) ausonides, Anthocharis ausonides",creamy marblewing,Euchloe ausonides,bio/EuchloeAusonides,,bio/Euchloe_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +72881,,,,,,,Psalidoprocne,bio/Psalidoprocne,,,,,, +72882,,"Hirundo holomelas Sundevall, 1850",,black sawwing,"Psalidoprocne pristoptera holomelas, Psalidoprocne homomelas, Hirundo holomelas",black saw-wing,Psalidoprocne holomelas,bio/PsalidoprocneHolomelas,,bio/Psalidoprocne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +73326,,,,,,,Aegithalos,bio/Aegithalos,,,,,, +73327,,"Parus caudatus Linnaeus, 1758",,Long-tailed Tit,Parus caudatus,Northern long-tailed tit,Aegithalos caudatus,bio/AegithalosCaudatus,,bio/Aegithalos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +73493,,"Rana ridibunda kurtmulleri Gayda, 1940",,Greek marsh frog,"Pelophylax ridibundus kurtmuelleri, Hylarana kurtmuelleri, Rana kurtmuelleri, Rana ridibunda kurtmulleri",Balkan frog ,Pelophylax kurtmuelleri,bio/PelophylaxKurtmuelleri,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +73633,,,,,Saliana,,Calpodes,bio/Calpodes,,,,,, +73634,,"Papilio ethlius Stoll, 1782",,large canna leafroller,Papilio ethlius,Brazilian skipper butterfly,Calpodes ethlius,bio/CalpodesEthlius,,bio/Calpodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +74132,,,,,,,Symphysodon ,bio/Symphysodon_BonyFishes,,,,,, +74133,,"Symphysodon aequifasciata Pellegrin, 1904",,green discus,Symphysodon aequifasciatus,blue discus,Symphysodon aequifasciata,bio/SymphysodonAequifasciata,,bio/Symphysodon_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +74364,,"Phyllophis carinata Gunther, 1864",,King ratsnake,Phyllophis carinata,Taiwan stink snake,Elaphe carinata,bio/ElapheCarinata,,bio/Elaphe,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +74933,,,,,,,Sacalia,bio/Sacalia,,,,,, +74940,,"Salmo tshawytscha Walbaum, 1792",,king salmon,"Oncorhynchus tschawytscha, Salmo tshawytscha",Chinook salmon,Oncorhynchus tshawytscha,bio/OncorhynchusTshawytscha,,bio/Oncorhynchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75023,,,,,,,Holacanthus,bio/Holacanthus,,,,,, +75031,,,,,,,Platax,bio/Platax,,,,,, +75032,,"Platax orbicularis (Fabricius, 1775)",,orbiculate batfish,Chaetodon orbicularis,orbicular batfish,Platax orbicularis,bio/PlataxOrbicularis,,bio/Platax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75035,,,,,,,Prionurus,bio/Prionurus,,,,,, +75041,,,,,,,Siganus,bio/Siganus,,,,,, +75042,,"Siganus oramin (Bloch & Schneider, 1801)",,white-spotted spinefoot,"Amphacanthus guttatus var. oramin, Siganus oramin",white-spotted rabbitfish,Siganus canaliculatus,bio/SiganusCanaliculatus,,bio/Siganus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75045,,,,,,,Zebrasoma,bio/Zebrasoma,,,,,, +75046,,"Zebrasoma scopas (Cuvier, 1829)",,yellow sailfin tang,Acanthurus scopas,twotone tang,Zebrasoma scopas,bio/ZebrasomaScopas,,bio/Zebrasoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75285,,,,,,,Arius,bio/Arius,,,,,, +75329,,"Misgurnus anguillicaudatus (Cantor, 1842)",,weather loach,Cobitis anguillicaudata,oriental weatherfish,Misgurnus anguillicaudatus,bio/MisgurnusAnguillicaudatus,,bio/Misgurnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75331,,,,,,,Abbottina,bio/Abbottina,,,,,, +75332,,"Gobio rivularis Basilewsky, 1855",,Amur false gudgeon,"Gobio rivularis, Pseudogobio rivularis",Chinese false gudgeon ,Abbottina rivularis,bio/AbbottinaRivularis,,bio/Abbottina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75333,,,,,"Acanthorhodeus, Paracheilognathus",,Acheilognathus,bio/Acheilognathus,,,,,, +75347,,,,,,,Gymnocypris,bio/Gymnocypris,,,,,, +75348,,"Schizopygopsis przewalskii Kessler, 1876",,scale-less carp,Schizopygopsis przewalskii,Lake Qinghai scale-less carp,Gymnocypris przewalskii,bio/GymnocyprisPrzewalskii,,bio/Gymnocypris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75357,,,,,,,Parabramis,bio/Parabramis,,,,,, +75358,,"Parabramis pekinensis (Basilewsky, 1855)",,freshwater bream,Abramis pekinensis,white Amur bream,Parabramis pekinensis,bio/ParabramisPekinensis,,bio/Parabramis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75359,,,,,,,Raiamas,bio/Raiamas,,,,,, +75361,,,,,Racoma,,Schizothorax,bio/Schizothorax,,,,,, +75562,,"Pagrus auratus (Foster, 1801)",,western bream,"Pagrosomus auratus, Labrus auratus, Chrysophrys auratus",squirefish,Pagrus auratus,bio/PagrusAuratus,,bio/Pagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75832,,"Mareca americana Gmelin, 1789",,American widgeon,Anas americana,American wigeon,Mareca americana,bio/MarecaAmericana,,bio/Mareca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75836,,"Anas carolinensis Gmelin, 1789",,American green-winged teal,"Nettion carolinense, Anas circia carolinensis, Anas crecca carolinensis",green-winged teal,Anas carolinensis,bio/AnasCarolinensis,,bio/Anas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75838,,"Spatula clypeata (Linnaeus, 1758)",,shoveler,"Anas clypeata (Linnaeus, 1758)",Northern shoveler,Spatula clypeata,bio/SpatulaClypeata,,bio/Spatula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75839,,"Anas crecca Linnaeus, 1758",,European teal,Nettion crecca,Common teal,Anas crecca,bio/AnasCrecca,,bio/Anas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75842,,"Spatula discors (Linnaeus, 1766)",,bluewinged teal,"Anas discors, Anas discors (Linnaeus, 1766)",blue-winged teal,Spatula discors,bio/SpatulaDiscors,,bio/Spatula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75864,,"Anas zonorhyncha Swinhoe, 1866",,Chinese spot-billed duck,Anas poecilorhynca zonorhyncha,Eastern spot-billed duck,Anas zonorhyncha,bio/AnasZonorhyncha,,bio/Anas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75988,,"Phyllomedusa dacnicolor Cope, 1864",,Mexican leaf frog,"Phyllomedusa dacnicolor, Phyllomedusa (Agalychnis) dacnicolor, Pachymedusa dacnicolor",Mexican giant tree frog,Agalychnis dacnicolor,bio/AgalychnisDacnicolor,,bio/Agalychnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +75989,,,,,,leaf frogs ,Agalychnis,bio/Agalychnis,,,,,, +75990,,"Phyllomedusa annae Duellman, 1963",,orange-eyed tree frog,Phyllomedusa annae,blue-sided leaf frog,Agalychnis annae,bio/AgalychnisAnnae,,bio/Agalychnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +76212,,"Erynnis Schrank, 1801 Duskywings",,duskywing skippers,,duskywings,Erynnis,bio/Erynnis,,,,,, +76214,,,,diadems,,eggflies,Hypolimnas,bio/Hypolimnas,,,,,, +76215,,"Papilio bolina Linnaeus, 1758",,great eggfly,Papilio bolina,common eggfly,Hypolimnas bolina,bio/HypolimnasBolina,,bio/Hypolimnas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +76219,,"Papilio xanthomelas Esper, 1781",,large tortoiseshell,Papilio xanthomelas,yellow-legged tortoiseshell,Nymphalis xanthomelas,bio/NymphalisXanthomelas,,bio/Nymphalis_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +76227,,,,,,,Salatura,bio/Salatura,,,,,, +76234,,,,,,,Euploea,bio/Euploea,,,,,, +76235,,"Papilio mulciber Cramer, 1777",,striped blue crow butterfly,Papilio mulciber,striped blue crow,Euploea mulciber,bio/EuploeaMulciber,,bio/Euploea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +76238,,,,,,,Libythea,bio/Libythea,,,,,, +76239,,"Papilio celtis Laicharting, 1782",,European beak,Papilio celtis,nettle-tree butterfly,Libythea celtis,bio/LibytheaCeltis,,bio/Libythea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +76337,,,,,,,Thalassoma,bio/Thalassoma,,,,,, +76338,,"Thalassoma bifasciatum (Bloch, 1791)",,bluehead wrasse,Labrus bifasciatus,bluehead,Thalassoma bifasciatum,bio/ThalassomaBifasciatum,,bio/Thalassoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +76339,,,,,,,Sciaenops,bio/Sciaenops,,,,,, +76340,,"Sciaenops ocellatus (Linnaeus, 1766)",,spottail bass,Perca ocellata,red drum,Sciaenops ocellatus,bio/SciaenopsOcellatus,,bio/Sciaenops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +76717,,"Lontra canadensis (Schreber, 1777)",,river otter,Lutra canadensis,Northern American river otter,Lontra canadensis,bio/LontraCanadensis,,bio/Lontra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +77027,,"Nuphar polysepala Engelm., 1866",,yellow pond-lily,"Nuphar polysepalum, Nuphar luteum subsp. polysepalum, Nuphar luteum subsp. polysepala",yellow pond lily,Nuphar polysepala,bio/NupharPolysepala,,bio/Nuphar,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +77236,,,,,,,Myonycteris,bio/Myonycteris,,,,,, +77913,,,,,,,Galeus,bio/Galeus,,,,,, +78194,,,,,,,Mogurnda,bio/Mogurnda,,,,,, +78195,,"Mogurnda adspersa (Castelnau, 1878)",,southern purple spotted gudgeon,Eleotris adspersa,purple-spotted gudgeon,Mogurnda adspersa,bio/MogurndaAdspersa,,bio/Mogurnda,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +78394,,"Petromyzon cirrhatus Forster, 1801",,New Zealand hagfish,Petromyzon cirrhatus,broadgilled hagfish,Eptatretus cirrhatus,bio/EptatretusCirrhatus,,bio/Eptatretus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +78615,,"Colias hyale (Linnaeus, 1758)",,pale clouded yellow butterfly,Papilio hyale,pale clouded yellow,Colias hyale,bio/ColiasHyale,,bio/Colias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +78617,,"Colias myrmidone (Esper, 1781)",,Danube clouded yellow butterfly,Papilio myrmidone,Danube clouded yellow,Colias myrmidone,bio/ColiasMyrmidone,,bio/Colias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +78620,,"Papilio palaeno Linnaeus, 1761",,Palaeno sulphur,Papilio palaeno,moorland clouded yellow,Colias palaeno,bio/ColiasPalaeno,,bio/Colias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +78872,,,,,,,Pseudobagrus,bio/Pseudobagrus,,,,,, +78876,,"Pseudobagrus ichikawai (Okada & Kubota, 1957)",,nekogigi,Coreobagrus ichikawai,neko-gigi,Pseudobagrus ichikawai,bio/PseudobagrusIchikawai,,bio/Pseudobagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +78897,,"Phalaena monacha Linnaeus, 1758",,nun moth,Phalaena monacha,black-arched tussock moth,Lymantria monacha,bio/LymantriaMonacha,,bio/Lymantria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +79015,,"Rana chensinensis David, 1875",,Inkiapo frog,Rana temporaria chensinensis,Chinese brown frog,Rana chensinensis,bio/RanaChensinensis,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +79504,,,,,,,Crioceris,bio/Crioceris,,,,,, +79626,,"Eudyptes chrysocome (J.R.Forster, 1781)",,rock-hopper penguin,"Aptenodytes chrysocome, Eudyptes crestatus",Rockhopper penguin,Eudyptes chrysocome,bio/EudyptesChrysocome,,bio/Eudyptes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +79684,,"Hypudaeus ochrogaster Wagner, 1842",,prairie voles,Hypudaeus ochrogaster,prairie vole,Microtus ochrogaster,bio/MicrotusOchrogaster,,bio/Microtus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +79887,,,,,,,Coryphopterus,bio/Coryphopterus,,,,,, +80345,,"Trochus brunneus Philippi, 1849",,brown top snail,"Trochus brunneus, Chlorostoma brunnea",brown turban snail,Tegula brunnea,bio/TegulaBrunnea,,bio/Tegula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80443,,,,,,,Acanthodactylus,bio/Acanthodactylus,,,,,, +80771,,,,,,,Paratilapia,bio/Paratilapia,,,,,, +80772,,"Paratilapia typus (Bleeker, 1878)",,Pollen's tilapia,Paratilapia typus,Pollen's cichlid,Paratilapia polleni,bio/ParatilapiaPolleni,,bio/Paratilapia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80789,,"Pseudoperilampus typus Bleeker, 1863",,money bitterling,Pseudoperilampus typus,zenitanago,Acheilognathus typus,bio/AcheilognathusTypus,,bio/Acheilognathus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80835,,,,,"Neptunus, Lupa",,Portunus,bio/Portunus,,,,,, +80836,,"Portunus pelagicus (Linnaeus, 1758)",,blue swimmer crab,"Cancer cedonulli, Portunus denticulatus, Cancer pelagicus",sand crab,Portunus pelagicus,bio/PortunusPelagicus,,bio/Portunus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80839,,"Charybdis japonica (Milne-Edwards, 1861)",,Japanese shore swimming crab,"Charybdis (Charybdis) japonica, Goniosoma japonicum",shore swimming crab,Charybdis japonica,bio/CharybdisJaponica,,bio/Charybdis_Crustaceans,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80949,,"Dascyllus aruanus (Linnaeus, 1758)",,whitetail dascyllus,Chaetodon aruanus,white-tailed damselfish,Dascyllus aruanus,bio/DascyllusAruanus,,bio/Dascyllus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80951,,"Heliases reticulatus Richardson, 1846",,reticulate dascyllus,Heliases reticulatus,reticulated damselfish,Dascyllus reticulatus,bio/DascyllusReticulatus,,bio/Dascyllus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80965,,,,,,,Acanthochromis,bio/Acanthochromis,,,,,, +80966,,"Dascyllus polyacanthus Bleeker, 1855",,spiny damselfish,"Acanthochromis polyacathus, Dascyllus polyacanthus",spiny chromis,Acanthochromis polyacanthus,bio/AcanthochromisPolyacanthus,,bio/Acanthochromis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +80967,,,,,,,Amblyglyphidodon,bio/Amblyglyphidodon,,,,,, +80969,,,,,,,Amphiprion,bio/Amphiprion,,,,,, +80974,,,,,,,Chromis,bio/Chromis,,,,,, +80992,,,,,,,Stegastes,bio/Stegastes,,,,,, +81369,,,,,,,Lampris,bio/Lampris,,,,,, +81370,,"Zeus guttatus Brunnich, 1788",,opah,Zeus guttatus,North Atlantic opah,Lampris guttatus,bio/LamprisGuttatus,,bio/Lampris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +81391,,,,,,,Synodus,bio/Synodus,,,,,, +81635,,,,,,,Micromesistius,bio/Micromesistius,,,,,, +81636,,"Micromesistius poutassou (Risso, 1827)",,poutassou,"Merlangus poutassou, Gadus poutassou, Boreogadus poutassou",blue whiting,Micromesistius poutassou,bio/MicromesistiusPoutassou,,bio/Micromesistius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +82038,,"Prospero Salisb., 1866",,,,,Prospero,bio/Prospero,,,,,, +82464,,"Myodes regulus (Thomas, 1907)",,royal vole,"Craseomys regulus, Clethrionomys regulus, Eothenomys regulus",Korean red-backed vole,Myodes regulus,bio/MyodesRegulus,,bio/Myodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +82466,,"Myodes andersoni (Thomas, 1905)",,Japanese red-backed vole,"Phaulomys andersoni, Eothenomys andersoni",Anderson's red-backed vole,Myodes andersoni,bio/MyodesAndersoni,,bio/Myodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +82594,,"Biston Leach, 1815",,,"Dasyphara, Eubyja, Culcula, Pachys, Amphidasis",,Biston,bio/Biston,,,,,, +82595,,"Biston betularius (Linnaeus, 1758)",,peppered moth,"Biston betularius, Biston betularium",pepper-and-salt moth,Biston betularia,bio/BistonBetularia,,bio/Biston,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +83875,,"Trachurus japonicus (Temminck & Schlegel, 1844)",,Japanese horse mackerel,Caranx trachurus japonicus,Japanese jack mackerel,Trachurus japonicus,bio/TrachurusJaponicus,,bio/Trachurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +83911,,,,,,,Psoroptes,bio/Psoroptes,,,,,, +83912,,"Psoroptes ovis (Hering, 1838)",,scabies mite,"Psoroptes equi var. equi, Psoroptes equi, Psoroptes cervinus, Psoroptes equi var. cervinus, Psoroptes ovis var. cuniculi, Psoroptes equi var. ovis, Psoroptes equi var. cuniculi, Psoroptes equi var. natalensis, Psoroptes natalensis, Psoroptes cuniculi",sheep scab mite,Psoroptes ovis,bio/PsoroptesOvis,,bio/Psoroptes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +83970,,,,,,,Hemisus,bio/Hemisus,,,,,, +83971,,"Engystoma marmoratum Peters, 1854",,shovel-nosed burrowing frog,"Hemisus marmoratum, Hemisus marmoratus sudanensis, Hemisus sudanensis, Engystoma marmoratum",mottled shovel-nosed frog,Hemisus marmoratus,bio/HemisusMarmoratus,,bio/Hemisus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +83975,,,,,Schoutedenella,squeaking frogs,Arthroleptis,bio/Arthroleptis,,,,,, +84644,,,,,"Morulius, Catla",,Labeo,bio/Labeo,,,,,, +84645,,"Labeo rohita (Hamilton, 1822)",,Jayanti rohu,Cyprinus rohita,rohu ,Labeo rohita,bio/LabeoRohita,,bio/Labeo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +84804,,,,,,,Icterus,bio/Icterus,,,,,, +85104,,,,,,,Burhinus,bio/Burhinus,,,,,, +85565,,,,,,,Erimystax,bio/Erimystax,,,,,, +85589,,"Oophaga granulifera (Taylor, 1958)",,granular poison-dart frog,"Ranitomeya granuliferus, Dendrobates granuliferus",granular poison frog,Oophaga granulifera,bio/OophagaGranulifera,,bio/Oophaga,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86068,,"Coregonus baicalensis Dybowski, 1874",,European whitefish,"Coregonus baicalensis baicalensis, Coregonus lavaretus baicalensis",Baikal whitefish,Coregonus baicalensis,bio/CoregonusBaicalensis,,bio/Coregonus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86196,,,,,,,Acanthogobius,bio/Acanthogobius,,,,,, +86206,,,,,,,Ptereleotris,bio/Ptereleotris,,,,,, +86207,,"Ptereleotris heteroptera (Bleeker, 1855)",,tail-spot dart-goby,Eleotris heteropterus,blacktail goby,Ptereleotris heteroptera,bio/PtereleotrisHeteroptera,,bio/Ptereleotris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86345,,"Bufo bankorensis Barbour, 1908",,Central Formosa toad,"Bufo japonicus bankorensis, Bufo bufo bankorensis",Bankor toad,Bufo bankorensis,bio/BufoBankorensis,,bio/Bufo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86362,,,,,,,Himantura,bio/Himantura,,,,,, +86365,,,,,Manta,,Mobula,bio/Mobula,,,,,, +86366,,"Mobula thurstoni (Lloyd, 1908)",,lesser devil ray,Dicerobatis thurstoni,smoothtail devil ray,Mobula thurstoni,bio/MobulaThurstoni,,bio/Mobula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86372,,,,,,,Potamotrygon,bio/Potamotrygon,,,,,, +86373,,"Taeniura motoro Muller & Henle, 1841",,South American freshwater stingray,Taeniura motoro,ocellate stingray,Potamotrygon motoro,bio/PotamotrygonMotoro,,bio/Potamotrygon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86376,,,,,,,Taeniura,bio/Taeniura,,,,,, +86542,,,,,,,Briareum,bio/Briareum,,,,,, +86543,,"Briareum asbestinum (Pallas, 1766)",,corky sea finger,"Briareum polyanthes, Alcyonium asbestinum",deadman's fingers,Briareum asbestinum,bio/BriareumAsbestinum,,bio/Briareum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86606,,"Stichopathes lutkeni (Brook, 1889)",,black wire coral,"Stichopathes lutkeni, Cirrhipathes lutkeni",black sea whip,Stichopathes luetkeni,bio/StichopathesLuetkeni,,bio/Stichopathes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86674,,,,,,,Urobatis,bio/Urobatis,,,,,, +86917,,,,,,,Mylocheilus,bio/Mylocheilus,,,,,, +86918,,"Mylocheilus caurinus (Richardson, 1836)",,redmouth sucker,"Clarkina caurina, Cyprinus caurinus",peamouth chub,Mylocheilus caurinus,bio/MylocheilusCaurinus,,bio/Mylocheilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86921,,"Hybopsis x-punctata Hubbs & Crowe, 1956",,spotted chub,Hybopsis x-punctata,gravel chub,Erimystax x-punctatus,bio/ErimystaxXpunctatus,,bio/Erimystax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86941,,,,,,,Exoglossum,bio/Exoglossum,,,,,, +86942,,"Parexoglossum laurae Hubbs, 1931",,tonguetied minnow,Parexoglossum laurae,eastern tonguetied minnow,Exoglossum laurae,bio/ExoglossumLaurae,,bio/Exoglossum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +86974,,,,,Agrionemys,,Testudo,bio/Testudo,,,,,, +87137,,,,,,,Pastinachus,bio/Pastinachus,,,,,, +87138,,"Raja sephen Forsskal, 1775",,cowtail ray,"Trygon sephen, Raja sephen",cowtail stingray,Pastinachus sephen,bio/PastinachusSephen,,bio/Pastinachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +88030,,,,,,,Ptychadena,bio/Ptychadena,,,,,, +88031,,"Rana mascareniensis Dumeril & Bibron, 1841",,Mascarene rocket frog,Rana mascareniensis,Masarene ridged frog,Ptychadena mascareniensis,bio/PtychadenaMascareniensis,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +88115,,,,,,,Delichon,bio/Delichon,,,,,, +88116,,"Hirundo urbica Linnaeus, 1758",,Mehlschwalbe,"Delichon urbica, Hirundo urbica",Northern house-martin,Delichon urbicum,bio/DelichonUrbicum,,bio/Delichon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +88119,,,,,,,Psaltriparus,bio/Psaltriparus,,,,,, +88120,,"Psaltriparus minimus (Townsend, JK, 1837)",,Buschmeise,Parus minimus,Bushtit,Psaltriparus minimus,bio/PsaltriparusMinimus,,bio/Psaltriparus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +88199,,,,,,,Mugilogobius,bio/Mugilogobius,,,,,, +88445,,"Tomopterna porosa Cope, 1868",,Kanagawa frog,"Hylarana porosa, Tomopterna porosa, Rana porosa",dharma pond frog ,Pelophylax porosus,bio/PelophylaxPorosus,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +88448,,"Rana fukienensis Pope, 1929",,Futsing Hsien frog,"Pelophylax plancyi fukienensis, Rana plancyi fukienensis, Rana fukienensis",Fukien gold-striped pond frog,Pelophylax fukienensis,bio/PelophylaxFukienensis,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +89462,,"Bos bubalis Linnaeus, 1758",,river buffalo,"Bos bubalis, Bubalus arnee bubalis",water buffalo,Bubalus bubalis,bio/BubalusBubalis,,bio/Bubalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +89467,,,,,,,Saltuarius,bio/Saltuarius,,,,,, +89468,,"Gymnodactylus cornutus Ogilby, 1892",,leaf-tailed gecko,"Phyllurus cornutus, Gymnodactylus cornutus",Northern leaf-tail gecko,Saltuarius cornutus,bio/SaltuariusCornutus,,bio/Saltuarius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +89566,,,,,,,Lovettia,bio/Lovettia,,,,,, +89900,,,,tropical thick-tailed scorpions,,bark scorpions,Lychas,bio/Lychas,,,,,, +90407,,"Icmadophila Trevis., 1853",,,,,Icmadophila,bio/Icmadophila,,,,,, +90408,,"Lichen ericetorum L., 1753",,fairy's barf,Lichen ericetorum,peppermint drop lichen,Icmadophila ericetorum,bio/IcmadophilaEricetorum,,bio/Icmadophila,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +91611,,"Pomacentrus marginatus Ruppell, 1829",,Red Sea dascyllus,Pomacentrus marginatus,marginate dascyllus,Dascyllus marginatus,bio/DascyllusMarginatus,,bio/Dascyllus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +91720,,Heterotis Rueppell 1828,,,,,Heterotis ,bio/Heterotis_BonyFishes,,,,,, +91721,,"Sudis niloticus Cuvier, 1829",,African arowana,"Sudis nilotica, Clupisudis niloticus, Sudis niloticus",African bonytongue,Heterotis niloticus,bio/HeterotisNiloticus,,bio/Heterotis_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +91737,,,,,Pseudoaricia,,Aricia ,bio/Aricia_Butterflies,,,,,, +91738,,"Hesperia artaxerxes Fabricius, 1793",,Scotch argus,Hesperia artaxerxes,northern brown argus,Aricia artaxerxes,bio/AriciaArtaxerxes,,bio/Aricia_Butterflies,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +91742,,,,,,,Cephalopholis,bio/Cephalopholis,,,,,, +91744,,,,,,,Choerodon,bio/Choerodon,,,,,, +91745,,"Crenilabrus oligacanthus Bleeker, 1851",,"Choerodon oligocanthus (Bleeker, 1851).",Crenilabrus oligacanthus,white-patch tuskfish,Choerodon oligacanthus,bio/ChoerodonOligacanthus,,bio/Choerodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +92439,,"Siganus guttatus (Bloch, 1787)",,orange-spotted spinefoot,Chaetodon guttatus,goldlined spinefoot,Siganus guttatus,bio/SiganusGuttatus,,bio/Siganus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +92724,,"Rana tinctoria Cuvier, 1797",,giant poison frog,"Hyla tinctoria, Rana tinctoria, Hylaplesia tinctoria, Calamita tinctorius, Dendrobates azureus",dyeing poison frog,Dendrobates tinctorius,bio/DendrobatesTinctorius,,bio/Dendrobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +92727,,,,,Phobobates,phantasmal poison frogs,Epipedobates,bio/Epipedobates,,,,,, +92731,,"Epipedobates bilinguis Jungfer, 1989",,Ecuadorean poison frog,Epipedobates bilinguis,Ecuador poison frog,Ameerega bilinguis,bio/AmeeregaBilinguis,,bio/Ameerega,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +92733,,"Prostherapis femoralis Boulenger, 1884",,brilliant-thighed poison-arrow frog,"Prostherapis femoralis, Dendrobates femoralis, Phyllobates femoralis, Epipedobates femoralis",brilliant-thighed poison frog,Allobates femoralis,bio/AllobatesFemoralis,,bio/Allobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +92734,,"Hylaplesia picta Tschudi, 1838",,spot-legged poison-arrow frog,"Epipedobates pictus, Phyllobates pictus, Hylaplesia picta, Dendrobates pictus",spot-legged poison frog,Ameerega picta,bio/AmeeregaPicta,,bio/Ameerega,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +92737,,"Hyla trivittata Spix, 1824",,three-striped arrow-poison frog,"Dendrobates trivittatus, Epipedobates trivittatus, Hyla trivittata, Phobobates trivittatus, Epipedobates trivitattus",three-striped poison frog,Ameerega trivittata,bio/AmeeregaTrivittata,,bio/Ameerega,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +93201,,,,,Cicindela (Cicindela),,Cicindela ,bio/Cicindela_Subgenus,,,,,, +93385,,"Brassica rapa var. chinensis (L.) Kitam., 1950",,bok-choy,"Brassica rapa var. chinensis, Brassica oleracea var. chinensis, Brassica chinensis var. communis, Brassica rapa (Chinensis Group), Brassica rapa var. amplexicaulis, Brassica rapa var. utilis M.Tsen & S.H.Lee, Brassica rapa subsp. chinensis var. communis, Brassica rapa var. utilis, Brassica campestris subsp. chinensis (L.) Makino, 1912, Brassica rapa var. communis, Brassica chinensis, Brassica campestris subsp. chinensis var. communis, Brassica rapa Pak Choi Group, Brassica campestris subsp. chinensis var. utilis",,Brassica rapa subsp. chinensis,bio/BrassicaRapaSubspChinensis,,,,,, +93715,,"Parnassius smintheus Doubleday, 1847",,Smintheus' parnassian,Parnassius phoebus smintheus,Rocky Mountain parnassian,Parnassius smintheus,bio/ParnassiusSmintheus,,bio/Parnassius_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +94189,,,,,,,Genetta,bio/Genetta,,,,,, +94231,,,,,Promicrops,,Epinephelus,bio/Epinephelus,,,,,, +94232,,"Epinephelus suillus (Valenciennes, 1828)",,estuary rock cod,"Bola coioides, Epinephelus suillus",orange-spotted grouper,Epinephelus coioides,bio/EpinephelusCoioides,,bio/Epinephelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +94309,,,,,,,Harpadon,bio/Harpadon,,,,,, +94413,,"Lacerta scutellata Audouin, 1827",,fringe-toed lizard,Lacerta scutellata,Nidua fringe-fingered lizard,Acanthodactylus scutellatus,bio/AcanthodactylusScutellatus,,bio/Acanthodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +94434,,,,,,,Oryzorictes,bio/Oryzorictes,,,,,, +94436,,,,,,,Parascalops,bio/Parascalops,,,,,, +94437,,"Scalops breweri Bachman, 1841",,Brewer's mole,Scalops breweri,hairy-tailed mole,Parascalops breweri,bio/ParascalopsBreweri,,bio/Parascalops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +94834,,,,,,,Gavialis,bio/Gavialis,,,,,, +94835,,"Lacerta gangetica Gmelin, 1789",,true gharial,Lacerta gangetica,Gharial,Gavialis gangeticus,bio/GavialisGangeticus,,bio/Gavialis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +94873,,,,,,,Lampropeltis,bio/Lampropeltis,,,,,, +94925,,,,,,,Holocentrus,bio/Holocentrus,,,,,, +94988,,,,,,,Lethenteron,bio/Lethenteron,,,,,, +94992,,,,,Parasilurus,,Silurus,bio/Silurus,,,,,, +94993,,"Silurus glanis Linnaeus, 1758",,Wels catfish,Siluris glanis,European catfish,Silurus glanis,bio/SilurusGlanis,,bio/Silurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +95142,,,,,,big-eyed treefrogs,Nyctimystes,bio/Nyctimystes,,,,,, +95143,,"Nyctimystes dayi (Guenther, 1897)",,Day's big-eyed treefrog,"Hyla dayi, Litoria dayi",lace-eyed tree frog,Nyctimystes dayi,bio/NyctimystesDayi,,bio/Nyctimystes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +95180,,,,,,,Abagrotis,bio/Abagrotis,,,,,, +95181,,"Noctua alternata Grote, 1864",,mottled gray cutworm,Noctua alternata,greater red dart moth,Abagrotis alternata,bio/AbagrotisAlternata,,bio/Abagrotis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +95468,,,,,,,Fannia,bio/Fannia,,,,,, +95601,,,,,,,Eriocheir,bio/Eriocheir,,,,,, +95602,,"Eriocheir sinensis Milne Edwards, 1853",,Chinese hairy crab,"Eriocheir japonica sinensis, Eriocheir chinensis",Chinese mitten crab,Eriocheir sinensis,bio/EriocheirSinensis,,bio/Eriocheir,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +95654,,,,,,,Melozone,bio/Melozone,,,,,, +95971,,,,,,,Aphidoletes,bio/Aphidoletes,,,,,, +95972,,"Cecidomyia aphidimyza Rondani, 1847",,raptorial gall midge,Cecidomyia aphidimyza,predatory gall midge,Aphidoletes aphidimyza,bio/AphidoletesAphidimyza,,bio/Aphidoletes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +96430,,"Trachylepis quinquetaeniata (Lichtenstein, 1823)",,rainbow mabuya,"Mabuya quinquetaeniata, Euprepis quinquetaeniata, Scincus quinquetaeniatus",African five-lined skink,Trachylepis quinquetaeniata,bio/TrachylepisQuinquetaeniata,,bio/Trachylepis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +96740,,,,,,,Hemitheconyx,bio/Hemitheconyx,,,,,, +96741,,"Stenodactylus caudi-cinctus Dumeril, 1851",,African fat tail gecko,Stenodactylus caudi-cinctus,African fat-tailed gecko,Hemitheconyx caudicinctus,bio/HemitheconyxCaudicinctus,,bio/Hemitheconyx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +96885,,,,,,,Sardinella,bio/Sardinella,,,,,, +96931,,,,,,,Pyganodon,bio/Pyganodon,,,,,, +96932,,"Pyganodon grandis (Say, 1829)",,giant floater,Anodonta grandis,giant floater mussel,Pyganodon grandis,bio/PyganodonGrandis,,bio/Pyganodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +97051,,,,,,,Cinara,bio/Cinara,,,,,, +97956,,"Discoglossus hispanicus Lataste, 1879",,West Iberian painted frog,Discoglossus hispanicus,Iberian painted frog,Discoglossus galganoi,bio/DiscoglossusGalganoi,,bio/Discoglossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +98139,,,,,,,Oriolus,bio/Oriolus,,,,,, +98381,,,,,,,Notolabrus,bio/Notolabrus,,,,,, +98398,,,,,,,Gyrinocheilus,bio/Gyrinocheilus,,,,,, +98647,,,,,,,Epalzeorhynchos,bio/Epalzeorhynchos,,,,,, +98648,,"Labeo bicolor Smith, 1931",,red-tailed black sharkminnow,Labeo bicolor,redtail sharkminnow,Epalzeorhynchos bicolor,bio/EpalzeorhynchosBicolor,,bio/Epalzeorhynchos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +98805,,,,,"dorsalis species complex, Oriental fruit fly complex",,Bactrocera dorsalis complex,bio/BactroceraDorsalisComplex,,,,,, +98921,,"Tetraodon pardalis Temminck & Schlegel, 1850",,higanfugu,"Fugu pardalis, Tetraodon pardalis",panther puffer,Takifugu pardalis,bio/TakifuguPardalis,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +98922,,"Vespertilio daubentonii Kuhl, 1817",,Wasserfledermaus,"Myotis daubentoni, Vespertilio daubentonii",Daubenton's bat,Myotis daubentonii,bio/MyotisDaubentonii,,bio/Myotis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +99490,,"Loxodonta cyclotis (Matschie, 1900)",,West African elephant,"Elephas cyclotis, elephant, Loxodonta cyclotis, Loxodonta africana cyclotis",African forest elephant,Loxodonta cyclotis,bio/LoxodontaCyclotis,,bio/Loxodonta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +99855,,"Spermophilus pygmaeus (Pallas, 1778)",,little souslik,"Citellus pygmaeus, Mus pygmaeus",little ground squirrel,Spermophilus pygmaeus,bio/SpermophilusPygmaeus,,bio/Spermophilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +100124,,,,,,redfins,Pseudobarbus,bio/Pseudobarbus,,,,,, +100823,,"Natrix natrix (Linnaeus, 1758)",,Ringelnatter,"Tropidonotus natrix, Coluber natrix",European grass snake,Natrix natrix,bio/NatrixNatrix,,bio/Natrix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +100937,,"Papio papio (Desmarest, 1820)",,baboon,"Papio papio sensu Groves, Papio hamadryas papio, Papio cynocephalus papio",Guinea baboon,Papio papio,bio/PapioPapio,,bio/Papio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +101364,,"Cyprinus gibelio Bloch, 1782",,Prussian carp,"Carassius auratus gibelio, Carassius gibelio subsp. gibelio, Carassius gibelio gibelio, Cyprinus gibelio",silver crucian carp,Carassius gibelio,bio/CarassiusGibelio,,bio/Carassius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +101699,,"Testudo horsfieldii Gray, 1844",,Russian tortoise,"Agrionemys horsfieldii, Testudo horsfieldi",Horsfield's tortoise,Testudo horsfieldii,bio/TestudoHorsfieldii,,bio/Testudo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +101840,,"Squalius borysthenicus Kessler, 1859",,Don chub,"Squalius borysthenicus, Leuciscus borysthenicus",Dneiper chub,Petroleuciscus borysthenicus,bio/PetroleuciscusBorysthenicus,,bio/Petroleuciscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +101898,,,,,,,Vimba,bio/Vimba,,,,,, +101899,,"Vimba melanops (Heckel, 1837)",,malamida,"Abramis melanops, Vimba vimba melanops",Macedonian vimba,Vimba melanops,bio/VimbaMelanops,,bio/Vimba,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +102107,,"Prunus mume (Siebold) Siebold & Zucc., 1836",,ume,"Armeniaca mume, Prunus armeniaca var. bungo",Japanese apricot,Prunus mume,bio/PrunusMume,,bio/Prunus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +102210,,"Benincasa Savi, 1818",,,,,Benincasa,bio/Benincasa,,,,,, +102211,,"Lagenaria siceraria var. hispida (Thunb.) H.Hara, 1948",,winter melon,"Benincasa pruriens, Lagenaria siceraria var. hispida, Cucurbita hispida, Benincasa cerifera",wax gourd,Benincasa hispida,bio/BenincasaHispida,,bio/Benincasa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +102245,,,,,Afrocaecilia,,Boulengerula,bio/Boulengerula,,,,,, +102246,,"Boulengerula taitana Loveridge, 1935",,Taita African caecilian,"Afrocaecilia taitana, Boulengerula taitanus",Taita Mountains caecilian,Boulengerula taitana,bio/BoulengerulaTaitana,,bio/Boulengerula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +103373,,"Rana tigerina Daudin, 1802",,tiger frog,"Rana tigerina, Rana tigrina",Indus valley bullfrog,Hoplobatrachus tigerinus,bio/HoplobatrachusTigerinus,,bio/Hoplobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +103431,,"Bufo cryptotympanicus Liu & Hu, 1962",,earless toad,Torrentophryne cryptotympanica,hidden-eared toad,Bufo cryptotympanicus,bio/BufoCryptotympanicus,,bio/Bufo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +103433,,"Ingerophrynus galeatus (Guenther, 1864)",,mountain toad,Bufo galeatus,bony-headed toad,Ingerophrynus galeatus,bio/IngerophrynusGaleatus,,bio/Ingerophrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +103434,,"Duttaphrynus himalayanus (Guenther, 1864)",,Himalayan broad-skulled toad,"Bufo melanostictus var. himalayanus, Bufo himalayanus, Duttaphrynus cyphosus",Himalayan toad,Duttaphrynus himalayanus,bio/DuttaphrynusHimalayanus,,bio/Duttaphrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +103819,,,,,,,Mycteroperca,bio/Mycteroperca,,,,,, +103830,,,,,"Pseudaletia, Aletia",,Mythimna,bio/Mythimna,,,,,, +103889,,"Hyles Hubner, 1819",,,,,Hyles,bio/Hyles,,,,,, +104499,,,,,,,Chlosyne,bio/Chlosyne,,,,,, +104514,,,,,,,Melitaea,bio/Melitaea,,,,,, +104688,,"Musca oleae Rossi, 1790",,olive fly,"Bactrocera (Daculus) oleae, Dacus oleae, Musca oleae, Bactrocera (Dacus) oleae",olive fruit fly,Bactrocera oleae,bio/BactroceraOleae,,bio/Daculus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +104690,,"Bactrocera minax (Enderlein, 1920)",,Oriental citrus fly,"Bactrocera (Tetradacus) minax, Dacus minax, Polistomimetes minax",Chinese citrus fly,Bactrocera minax,bio/BactroceraMinax,,bio/Tetradacus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +104691,,"Dacus tsuneonis Miyake, 1919",,Oriental citrus fly,"Dacus cheni, Dacus tsuneonis, Bactrocera cheni, Bactrocera (Tetradacus) tsuneonis",Japanese orange fly,Bactrocera tsuneonis,bio/BactroceraTsuneonis,,bio/Tetradacus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +104895,,"Hyla rubella Gray, 1842",,red tree frog,Hyla rubella,desert tree frog,Litoria rubella,bio/LitoriaRubella,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +104896,,"Hyla ewingii Dumeril & Bibron, 1841",,Australian brown treefrog,"Litoria ewingi, Hyla ewingii",whistling tree frog ,Litoria ewingii,bio/LitoriaEwingii,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +104954,,"Uperoleia mjobergii (Andersson, 1913)",,West Kimberley toadlet,"Uperoleia mjobergi, Pseudophryne mjobergii, Glauertia mjobergii",Mjoberg's toadlet,Uperoleia mjobergii,bio/UperoleiaMjobergii,,bio/Uperoleia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +105012,,"Aphyosemion elberti (Ahl, 1924)",,red barred killi,"Aphyosemion kekemense, Panchax elberti",red barred killifish,Aphyosemion elberti,bio/AphyosemionElberti,,bio/Aphyosemion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +105427,,"Dactylethra muelleri Peters, 1844",,tropical platanna,Dactylethra muelleri,Muller's clawed frog,Xenopus muelleri,bio/XenopusMuelleri,,bio/Xenopus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +105513,,"Icterus galbula (Linnaeus, 1758)",,Northern oriole,Coracias galbula,Baltimore oriole,Icterus galbula,bio/IcterusGalbula,,bio/Icterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +105721,,"Oligosoma Girard, 1857",,,Cyclodina,,Oligosoma,bio/Oligosoma,,,,,, +106173,,,,,,,Cynoglossus,bio/Cynoglossus,,,,,, +106331,"CalHV-3, CalHV3",,,,Callitrichine herpesvirus 3,Marmoset lymphocryptovirus,callitrichine gammaherpesvirus 3,bio/CallitrichineGammaherpesvirus3,dcs:BiologicalHostVertebrates,bio/LymphocryptovirusCallitrichinegamma3,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +106727,,"Testudo becki Rothschild, 1901",,Volcan Wolf giant tortoise,"Testudo becki, Geochelone elephantopus becki, Geochelone nigra becki",Wolf Volcano giant tortoise,Chelonoidis becki,bio/ChelonoidisBecki,,bio/ChelonoidisNigraSpeciesComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +107025,,,,,,,Mergellus,bio/Mergellus,,,,,, +107026,,"Mergus albellus Linnaeus, 1758",,Zwergsaeger,Mergus albellus,Smew,Mergellus albellus,bio/MergellusAlbellus,,bio/Mergellus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +107765,,,,,,,Synagrops,bio/Synagrops,,,,,, +107965,,,,,,,Dendrotriton,bio/Dendrotriton,,,,,, +109178,,"Rana plancyi Lataste, 1880",,Beijing gold-striped pond frog,"Hylarana plancyi, Rana plancyi",gold-spotted pond frog,Pelophylax plancyi,bio/PelophylaxPlancyi,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +109271,,"Ischnosoma bicirrhosum Cuvier, 1829",,arawana,Ischnosoma bicirrhosum,silver arawana,Osteoglossum bicirrhosum,bio/OsteoglossumBicirrhosum,,bio/Osteoglossum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +109296,,"Muntiacus vuquangensis (Tuoc, Dung, Dawson, Arctander & Mackinnon, 1994)",,large-antlered muntjac,Megamuntiacus vuquangensis,giant muntjac,Muntiacus vuquangensis,bio/MuntiacusVuquangensis,,bio/Muntiacus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +109673,,,,,,,Falcipennis,bio/Falcipennis,,,,,, +109674,,"Tetrao canadensis Linnaeus, 1758",,spruce grouse,"Tetrao canadensis, Dendragapus canadensis, Canachites canadensis",siberian grouse,Falcipennis canadensis,bio/FalcipennisCanadensis,,bio/Falcipennis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +109716,,,,,,,Apolemichthys,bio/Apolemichthys,,,,,, +109718,,,,,Sumireyakko,,Centropyge,bio/Centropyge,,,,,, +109940,,"Amolops Cope, 1865",,,,cascade frogs,Amolops,bio/Amolops,,,,,, +109960,,"Rana nasica Boulenger, 1903",,Vietnamese frog,"Amolops nasicus, Rana nasica, Amolops (Huia) nasicus, Huia nasica",long-snout torrent frog,Odorrana nasica,bio/OdorranaNasica,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +109961,,,,,Taylorana,,Limnonectes,bio/Limnonectes,,,,,, +109962,,"Rana macrodon var. blythii Boulenger, 1920",,Malayan giant frog,"Rana blythi, Rana macrodon var. blythii",giant mountain frog,Limnonectes blythii,bio/LimnonectesBlythii,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +109965,,"Rana spinosa David, 1875",,giant spiny frog,"Rana spinosa, Nanorana spinosa, Paa spinosa",Chinese spiny frog,Quasipaa spinosa,bio/QuasipaaSpinosa,,bio/Quasipaa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110071,,,,,,,Hoplobatrachus,bio/Hoplobatrachus,,,,,, +110072,,"Rana rugulosa Wiegmann, 1834",,Taiwanese frog,"Rana rugulosa, Hoplobatrachus chinensis, Rana chinensis, Rana tigrina rugulosa",rugose frog,Hoplobatrachus rugulosus,bio/HoplobatrachusRugulosus,,bio/Hoplobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110076,,"Rhacophorus buergeri chapaensis Bourret, 1937",,Vietnam sucker frog,"Rhacophorus buergeri chapaensis, Huia chapaensis, Amolops chapaensis",Chapa torrent frog,Odorrana chapaensis,bio/OdorranaChapaensis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110077,,"Rana erythraea (Schlegel, 1837)",,red-eared frog,"Limnodytes erythraeus, Rana erythraea, Hyla erythraea, Polypedates erythraea",green paddy frog,Hylarana erythraea,bio/HylaranaErythraea,,bio/Hylarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110094,,"Rana macrognathus dabana Smith, 1922",,Annam wart frog,"Rana toumanoffi, Limnonectes toumanoffi, Rana macrognathus dabana",Toumanoff's wart frog,Limnonectes dabanus,bio/LimnonectesDabanus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110102,,"Rana yunnanensis Anderson, 1879",,vocal sacless spiny frog,"Rana bourreti, Rana yunnanensis, Nanorana liui, Paa liui, Nanorana bourreti, Paa bourreti, Gynadropaa yunnanensis, Paa yunnanensis",Yunan spiny frog,Nanorana yunnanensis,bio/NanoranaYunnanensis,,bio/Nanorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110107,,"Rana kuhlii Tschudi, 1838",,Kuhl's creek frog,Rana kuhlii,Kuhl's wart frog,Limnonectes kuhlii,bio/LimnonectesKuhlii,,bio/LimnonectesKuhliiSpeciesComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110111,,"Rana lateralis Boulenger, 1887",,yellow frog,"Pelophylax lateralis, Hylarana lateralis, Rana lateralis",Kokarit frog,Humerana lateralis,bio/HumeranaLateralis,,bio/Humerana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110116,,"Rana schmackeri Boettger, 1892",,Schmacker's frog,"Rana schmackeri, Huia schmackeri, Odorrana (Odorrana) schmackeri",piebald odorous frog,Odorrana schmackeri,bio/OdorranaSchmackeri,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110118,,"Rana taipehensis Van Denburgh, 1909",,white-striped frog,Rana taipehensis,Taipei frog,Hylarana taipehensis,bio/HylaranaTaipehensis,,bio/Hylarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110212,,"Vipera raddei Boettger, 1890",,Iranian mountain viper,"Montivipera albicornuta, Vipera raddei albicornuta, Vipera albicornuta, Vipera raddei, Coluber raddei, Daboia raddei",Caucasus viper,Montivipera raddei,bio/MontiviperaRaddei,,bio/Montivipera,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110620,,"Egretta alba (Linnaeus, 1758)",,great white egret,"Camerodius albus, Casmerodius albus, Egretta alba, Egretta albus",great egret,Ardea alba,bio/ArdeaAlba,,bio/Ardea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110684,,,,,,least bitterns,Ixobrychus,bio/Ixobrychus,,,,,, +110792,,,,,,,Meandrusa,bio/Meandrusa,,,,,, +110793,,"Papilio payeni Boisduval, 1836",,sickle swallowtail,Papilio payeni,yellow gorgon,Meandrusa payeni,bio/MeandrusaPayeni,,bio/Meandrusa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +110926,,"Cygnus columbianus (Ord, 1815)",,whistling swan,"Olor columbianus, Anas columbianus",tundra swan,Cygnus columbianus,bio/CygnusColumbianus,,bio/Cygnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111065,,"Hyloxalus bocagei Jimenez de la Espada, 1871",,Bocage's rocket frog,Colostethus bocagei,spotted rocket frog ,Hyloxalus bocagei,bio/HyloxalusBocagei,,bio/Hyloxalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111124,,"Ranitomeya fulgurita (Silverstone, 1975)",,yellow-bellied poison frog,"Dendrobates fulguritus, Minyobates fulguritus, Ranitomeya fulgurita",yellowbelly poison frog,Andinobates fulguritus,bio/AndinobatesFulguritus,,bio/Andinobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111128,,"Dendrobates parvulus Boulenger, 1882",,ruby poison-arrow frog,"Dendrobates parvulus, Epipedobates parvulus, Phyllobates parvulus",ruby poison frog,Ameerega parvula,bio/AmeeregaParvula,,bio/Ameerega,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111130,,"Leptodactylus mystacinus (Burmeister, 1861)",,Mexican white-lipped frog,"Leptodactylus labialis, Cystignathus mystacinus",moustached frog,Leptodactylus mystacinus,bio/LeptodactylusMystacinus,,bio/Leptodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111183,,"Trachylepis spilogaster (Peters, 1882)",,spiny mabuya,"Mabuya spilogaster, Euprepes striatus var. spilogaster",Kalahari tree skink,Trachylepis spilogaster,bio/TrachylepisSpilogaster,,bio/Trachylepis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111367,,"Rana cancrivora Gravenhorst, 1829",,rice field frog,"Rana cancrivora, Limnonectes cancrivorus",crab-eating frog,Fejervarya cancrivora,bio/FejervaryaCancrivora,,bio/Fejervarya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111783,,,,,,,Reinhardtius,bio/Reinhardtius,,,,,, +111784,,"Reinhardtius hippoglossoides (Walbaum, 1792)",,Greenland halibut,Pleuronectes hippoglossoides,Greenland flounder,Reinhardtius hippoglossoides,bio/ReinhardtiusHippoglossoides,,bio/Reinhardtius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111811,,"Caprimulgus europaeus Linnaeus, 1758",,Ziegenmelker,"common nightjar, nightjar",Eurasian nightjar,Caprimulgus europaeus,bio/CaprimulgusEuropaeus,,bio/Caprimulgus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111880,,,,,Inachis,,Aglais,bio/Aglais,,,,,, +111881,,"Aglais urticae (Linnaeus, 1758)",,mountain tortoiseshell,"Aglais urticae, Papilio urticae",small tortoiseshell,Nymphalis urticae,bio/NymphalisUrticae,,bio/Aglais,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111893,,,,,,,Coenonympha,bio/Coenonympha,,,,,, +111897,,"Boeberia Prout, 1901",,argus butterflies,"Boeberia, Boerebia",arguses,Erebia,bio/Erebia,,,,,, +111898,,"Papilio aethiopellus Hoffmannsegg, 1806",,false mnestra ringlet butterfly,Papilio aethiopellus,false mnestra ringlet,Erebia aethiopella,bio/ErebiaAethiopella,,bio/Erebia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111900,,"Erebia cassioides (Reiner & Hochenwarth, 1792)",,common brassy ringlet butterfly,Papilio cassioides,common brassy ringlet,Erebia cassioides,bio/ErebiaCassioides,,bio/Erebia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111902,,"Papilio euryale Esper, 1805",,large ringlet,Papilio euryale,large ringlet butterfly,Erebia euryale,bio/ErebiaEuryale,,bio/Erebia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111904,,"Papilio meolans de Prunner, 1798",,piedmont ringlet butterfly,Papilio meolans,piedmont ringlet,Erebia meolans,bio/ErebiaMeolans,,bio/Erebia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111905,,"Papilio montanus de Prunner, 1798",,marbled ringlet butterfly,Papilio montanus,marbled ringlet,Erebia montana,bio/ErebiaMontana,,bio/Erebia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111906,,"Papilio pharte Hubner, 1803",,blind ringlet butterfly,Papilio pharte,blind ringlet,Erebia pharte,bio/ErebiaPharte,,bio/Erebia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111907,,"Hipparchia rossii Curtis, 1835",,arctic alpine butterfly,"Hipparchia rossii, Erebia rossi",arctic alpine,Erebia rossii,bio/ErebiaRossii,,bio/Erebia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111915,,,,,,,Lasiommata,bio/Lasiommata,,,,,, +111916,,"Papilio maera Linnaeus, 1758",,large wall brown butterfly,Papilio maera,large wall brown,Lasiommata maera,bio/LasiommataMaera,,bio/Lasiommata,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111917,,"Papilio megera Linnaeus, 1767",,wall brown butterfly,Papilio megera,wall brown,Lasiommata megera,bio/LasiommataMegera,,bio/Lasiommata,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111918,,"Papilio petropolitana Fabricius, 1787",,northern wall brown butterfly,Papilio petropolitana,northern wall brown,Lasiommata petropolitana,bio/LasiommataPetropolitana,,bio/Lasiommata,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111922,,,,,,marbled whites,Melanargia,bio/Melanargia,,,,,, +111923,,"Papilio galathea Linnaeus, 1758",,marbled white butterfly,Papilio galathea,marbled white,Melanargia galathea,bio/MelanargiaGalathea,,bio/Melanargia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111924,,"Papilio lachesis Hubner, 1790",,Balkan marbled white butterfly,Papilio lachesis,Balkan marbled white,Melanargia lachesis,bio/MelanargiaLachesis,,bio/Melanargia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111925,,"Papilio russiae Esper, 1783",,Esper's marbled white butterfly,Papilio russiae,Esper's marbled white,Melanargia russiae,bio/MelanargiaRussiae,,bio/Melanargia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111932,,,,,,,Pararge,bio/Pararge,,,,,, +111933,,"Papilio xiphia Fabricius, 1775",,Madeiran speckled wood,Papilio xiphia,Madeiran speckled wood butterfly,Pararge xiphia,bio/ParargeXiphia,,bio/Pararge,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +111980,,,,,,,Dumetella,bio/Dumetella,,,,,, +111981,,"Muscicapa carolinensis Linnaeus, 1766",,gray catbird,"Galeoscoptes carolinensis, Dumatella carolinensis, Muscicapa carolinensis",grey catbird,Dumetella carolinensis,bio/DumetellaCarolinensis,,bio/Dumetella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +112179,,"Rhodeus suigensis (Mori, 1935)",,suigen zenitanago,Pseudoperilampus suigensis,spring bitterling,Rhodeus suigensis,bio/RhodeusSuigensis,,bio/Rhodeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +112509,,Hordeum vulgare var. nudum Spenn.,,two-rowed barley,"Hordeum sativum, Hordeum vulgare var. nudum, Hordeum vulgare var. vulgare",domesticated barley,Hordeum vulgare subsp. vulgare,bio/HordeumVulgareSubspVulgare,,bio/HordeumVulgare,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +113289,,,,,,,Anthanassa,bio/Anthanassa,,,,,, +113305,,"Anthanassa texana (Edwards, 1863)",,Texan crescentspot,Melitaea texana,Texan crescentspot butterfly,Anthanassa texana,bio/AnthanassaTexana,,bio/Anthanassa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113307,,"Asterocampa leilia (Edwards, 1874)",,Empress Leilia,Apatura leilia,desert hackberry butterfly,Asterocampa leilia,bio/AsterocampaLeilia,,bio/Asterocampa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113315,,"Chlosyne lacinia (Geyer, 1837)",,bordered patch,Araschnia lacinia,bordered patch butterfly,Chlosyne lacinia,bio/ChlosyneLacinia,,bio/Chlosyne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113345,,"Papilio trivia Denis & Schiffermuller, 1775",,desert fritillary,Papilio trivia,lesser spotted fritillary,Melitaea trivia,bio/MelitaeaTrivia,,bio/Melitaea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113379,,,,,,,Kaloula,bio/Kaloula,,,,,, +113380,,"Cacopoides borealis Barbour, 1908",,Manchurian digging frog,Cacopoides borealis,Manchurian narrowmouth toad,Kaloula borealis,bio/KaloulaBorealis,,bio/Kaloula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113381,,,,,,,Onychodactylus,bio/Onychodactylus,,,,,, +113382,,"Onychodactylus fischeri (Boulenger, 1886)",,long-tailed salamander,Geomolge fischeri,Fischer's clawed salamander,Onychodactylus fischeri,bio/OnychodactylusFischeri,,bio/Onychodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113383,,"Rana huanrensis Fei, Ye & Huang, 1990",,Korean stream brown frog,Rana huanrenensis,Huanren brown frog,Rana huanrensis,bio/RanaHuanrensis,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113391,,"Hynobius leechii Boulenger, 1887",,Manchurian salamander,Hynobius leechii Form-A,Gensan salamander,Hynobius leechii,bio/HynobiusLeechii,,bio/Hynobius_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113540,,"Scleropages formosus (Mueller & Schlegel, 1844)",,golden dragon fish,Osteoglossum formosum,Asian bonytongue,Scleropages formosus,bio/ScleropagesFormosus,,bio/Scleropages,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +113543,,,,,,,Arapaima,bio/Arapaima,,,,,, +113544,,"Sudis gigas Schinz, 1822",,pirarucu,Sudis gigas,arapaima,Arapaima gigas,bio/ArapaimaGigas,,bio/Arapaima,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +114085,,"Cyanocorax yncas (Boddaert, 1783)",,Inca jay,Corvus yncas,green jay,Cyanocorax yncas,bio/CyanocoraxYncas,,bio/Cyanocorax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +114108,,,,,,,Hoplosternum,bio/Hoplosternum,,,,,, +114109,,"Hoplosternum littorale (Hancock, 1828)",,hassar,Callichthys littoralis,atipa,Hoplosternum littorale,bio/HoplosternumLittorale,,bio/Hoplosternum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +114277,,,,,,,spotted fever group,bio/SpottedFeverGroup,,,,,, +116049,,"Bolitoglossa mexicana Dumeril, Bibron & Dumeril, 1854",,Mexican mushroom-tongued salamander,"Salamandra mexicana, Pseudotriton mexicanus, Bolitoglossa (Bolitoglossa) mexicana, Spelerpes mexicanus, Spelerpes mexicanum, Spelerpes mexicana, Oedipus mexicanus, Geotriton mexicana",Mexican mushroomtongue salamander,Bolitoglossa mexicana,bio/BolitoglossaMexicana,,bio/Bolitoglossa_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +116057,,"Ranoidea raniformis (Keferstein, 1867)",,southern bell frog,Chirodryas raniformis,blue-thighed treefrog,Ranoidea raniformis,bio/RanoideaRaniformis,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +116150,,"Pararge aegeria (Linnaeus, 1758)",,speckled wood,Papilio aegeria,speckled wood butterfly,Pararge aegeria,bio/ParargeAegeria,,bio/Pararge,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +117858,,"Zearaja Whitley, 1939",,,"Dipturus (Zearaja), Raja (Zearaja), Zearaja",,Dipturus,bio/Dipturus,,,,,, +117864,,,,,,,Okamejei,bio/Okamejei,,,,,, +117870,,,,,,,Bathyraja,bio/Bathyraja,,,,,, +117883,,,,,,,Trygonorrhina,bio/Trygonorrhina,,,,,, +117934,,,,,Scartomyzon,,Moxostoma,bio/Moxostoma,,,,,, +118137,,,,,,,Niwaella,bio/Niwaella,,,,,, +118138,,"Niwaella delicata (Niwa, 1937)",,Ajime dojo,Cobitis delicata,Ajime loach,Niwaella delicata,bio/NiwaellaDelicata,,bio/Niwaella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +118144,,,,,,,Moringua,bio/Moringua,,,,,, +118156,,,,,,,Ophisurus,bio/Ophisurus,,,,,, +118169,,,,,,,Nemichthys,bio/Nemichthys,,,,,, +118230,,"Leiopelma archeyi Turbott, 1942",,Coromandel New Zealand frog,Leioaspetos archeyi,Coromandel frog,Leiopelma archeyi,bio/LeiopelmaArcheyi,,bio/Leiopelma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +118234,,,,,,,Sitana,bio/Sitana,,,,,, +118235,,"Sitana ponticeriana Cuvier, 1829",,Bahirs fan-throated lizard,"Sarada ponticeriana, Sitana bahiri",Pondichry fan throated lizard,Sitana ponticeriana,bio/SitanaPonticeriana,,bio/Sitana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +118643,,"Simia chamek Humboldt, 1812",,Chamek spider monkey,"Simia chamek, Ateles paniscus chamek, Ateles belzebuth chamek, Ateles chamek (Humboldt, 1812)",black spider monkey,Ateles chamek,bio/AtelesChamek,,bio/Ateles,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +118688,,Cyclura macleayi lewisi Grant 1940,,Grand Cayman iguana,"Cyclura nubila lewisi, Cyclura macleayi lewisi",Grand Cayman blue iguana,Cyclura lewisi,bio/CycluraLewisi,,bio/Cyclura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119041,,"Takifugu xanthopterus (Temminck & Schlegel, 1850)",,shimafugu,"Tetraodon xanthopterus, Fugu xanthopterus",yellowfin puffer,Takifugu xanthopterus,bio/TakifuguXanthopterus,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119253,,,,,,,Dryocampa,bio/Dryocampa,,,,,, +119254,,"Bombyx rubicunda Fabricius, 1793",,green-striped mapleworm,"Anisota rubicunda, Bombyx rubicunda",rosy maple moth,Dryocampa rubicunda,bio/DryocampaRubicunda,,bio/Dryocampa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119281,,"Pachysphinx Rothschild & Jordan, 1903",,,,,Pachysphinx,bio/Pachysphinx,,,,,, +119282,,"Smerinthus modesta Harris, 1839",,modest sphinx,Smerinthus modesta,big poplar sphinx,Pachysphinx modesta,bio/PachysphinxModesta,,bio/Pachysphinx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119410,,,,,,,Gallirex,bio/Gallirex,,,,,, +119430,,,,,,,Hippospongia,bio/Hippospongia,,,,,, +119431,,"Spongia communis Lamarck, 1814",,honeycomb,Spongia communis,horse sponge,Hippospongia communis,bio/HippospongiaCommunis,,bio/Hippospongia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119487,,,,,,,Siniperca,bio/Siniperca,,,,,, +119488,,"Siniperca chuatsi (Basilewsky, 1855)",,Chinese perch,Perca chuatsi,mandarin fish,Siniperca chuatsi,bio/SinipercaChuatsi,,bio/Siniperca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119608,,"Larus vegae Palmen, 1887",,East Siberian gull,Larus argentatus vegae,Vega gull,Larus vegae,bio/LarusVegae,,bio/Larus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119609,,"Larus cachinnans Pallas, 1811",,eastern Caspian gull,"Larus argentatus cachinnans, Larus cachinnans cachinnans",caspian gull,Larus cachinnans,bio/LarusCachinnans,,bio/Larus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119683,,,,,,,Argyrops,bio/Argyrops,,,,,, +119705,,,,,,,Chrysoblephus,bio/Chrysoblephus,,,,,, +119711,,"Evynnis tumifrons (Temminck & Schlegel, 1843)",,crimson seabream,"Dentex tumifrons, Evynnis japonica, Taius tumifrons, Chrysophrys tumifrons",yellowback seabream,Evynnis tumifrons,bio/EvynnisTumifrons,,bio/Evynnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +119714,,,,,,,Evynnis,bio/Evynnis,,,,,, +119724,,,,,,,Nemipterus,bio/Nemipterus,,,,,, +119737,,,,,,,Pomadasys,bio/Pomadasys,,,,,, +119745,,,,,,,Scolopsis,bio/Scolopsis,,,,,, +119768,,,,,,,Stephopaedes,bio/Stephopaedes,,,,,, +119769,,"Mertensophryne anotis (Boulenger, 1907)",,Mashonaland toad,"Bufo anotis, Mertensophryne (Stephopaedes) anotis",Chirinda forest toad,Mertensophryne anotis,bio/MertensophryneAnotis,,bio/Mertensophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +120218,,"Siphateles bicolor obesa (Girard, 1856)",,Lahontan tui chub,"Gila bicolor obesa, Siphateles bicolor obesus",Lahontan Creek tui chub,Siphateles bicolor obesa,bio/SiphatelesBicolorObesa,,bio/SiphatelesBicolor,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +120495,,"Rana adenopleura Boulenger, 1909",,Fuchacho frog,"Rana adenopleura, Hylarana (Nidirana) adenopleura, Nidirana adenopleura, Hylarana adenopleura",olive frog,Babina adenopleura,bio/BabinaAdenopleura,,bio/Babina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +120497,,,,,"Chaparana, Altirana",,Nanorana,bio/Nanorana,,,,,, +120502,,"Rana boulengeri Gunther, 1889",,Hejiang spiny frog,"Paa boulengeri, Quasipaa boulengeri, Nanorana boulengeri, Rana boulengeri, Quasipaa robertingerii",spiny-bellied frog,Quasipaa boulengeri,bio/QuasipaaBoulengeri,,bio/Quasipaa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121155,,,,,Rana (Odorrana),,Odorrana,bio/Odorrana,,,,,, +121156,,"Rana margaretae Liu, 1950",,Margaret frog,"Huia margaretae, Rana margaretae",green odorous frog,Odorrana margaretae,bio/OdorranaMargaretae,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121158,,"Rana hejiangensis Deng & Yu, 1992",,Hejiang frog,Rana hejiangensis,Hejiang odorous frog,Odorrana hejiangensis,bio/OdorranaHejiangensis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121160,,"Rana livida (Blyth, 1856)",,large odorous frog,"Polypedates lividus, Rana livida",green cascade frog,Odorrana livida,bio/OdorranaLivida,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121164,,,,,,,Pelophylax,bio/Pelophylax,,,,,, +121165,,"Rana hubeiensis Fei & Ye, 1982",,Hubei frog,"Hylarana hubeiensis, Rana hubeiensis",Hubei gold-striped pond frog,Pelophylax hubeiensis,bio/PelophylaxHubeiensis,,bio/Pelophylax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121168,,"Rugosa tientaiensis (Chang, 1933)",,Tientai frog,"Rugosa tiantaiensis, Rana tientaiensis, Rugosa tientaiensis",Tientai rough-skinned frog,Glandirana tientaiensis,bio/GlandiranaTientaiensis,,bio/Glandirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121175,,Rana Dubois 1992,,,Pseudoamolops,,Rana ,bio/Rana_Subgenus,,,,,, +121178,,,,,,,Pantherana,bio/Pantherana,,,,,, +121227,,"Pthirus Leach, 1815",,,"Phtirus, Phthirus",,Pthirus,bio/Pthirus,,,,,, +121228,,"Pthirus pubis (Linnaeus, 1758)",,public louse,"Phtirus pubis, Phthirus pubis, Pediculus pubis",crab louse,Pthirus pubis,bio/PthirusPubis,,bio/Pthirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121236,,,,,,,Aquarana,bio/Aquarana,,,,,, +121281,,,,,,,Gymnothorax,bio/Gymnothorax,,,,,, +121327,,"Erythrolamprus Wagler, 1830",,,"Liophis, Umbrivaga",,Erythrolamprus,bio/Erythrolamprus,,,,,, +121350,,"Coluber typhlus Linnaeus, 1758",,velvet swampsnake,"Coluber typhlus, Liophis typhlus",blind ground snake,Erythrolamprus typhlus,bio/ErythrolamprusTyphlus,,bio/Erythrolamprus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121400,,"Gallirex johnstoni Sharpe, 1901",,Johnston's turaco,"Ruwenzorornis johnstoni, Tauraco johnstoni",Ruwenzori turaco,Gallirex johnstoni,bio/GallirexJohnstoni,,bio/Gallirex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121835,,"Cacopsylla Ossiannilsson, 1970",,,,,Cacopsylla,bio/Cacopsylla,,,,,, +121839,,"Cacopsylla pyri (Linnaeus, 1758)",,pear psylla,Psylla pyri,pear psyllid ,Cacopsylla pyri,bio/CacopsyllaPyri,,bio/Cacopsylla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +121869,,"Rana arborea Linnaeus, 1758",,common tree frog,Rana arborea,European tree frog,Hyla arborea,bio/HylaArborea,,bio/Hyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +122765,,"Trachypithecus cristatus (Raffles, 1821)",,silvered leaf monkey,"Simia cristata, Presbytis cristata",Silvery lutung,Trachypithecus cristatus,bio/TrachypithecusCristatus,,bio/Trachypithecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +123222,,,,,,,Cypselurus,bio/Cypselurus,,,,,, +123242,,,,,,,Triphoturus,bio/Triphoturus,,,,,, +123243,,"Triphoturus nigrescens (Brauer, 1904)",,vagabond lanternfish,Myctophum nigrescens,highseas lampfish,Triphoturus nigrescens,bio/TriphoturusNigrescens,,bio/Triphoturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +123332,,,,,,,Diogenichthys,bio/Diogenichthys,,,,,, +123333,,"Myctophum laternatum atlanticum Taning, 1928",,Atlantic lanternfish,"Myctophum laternatum atlanticum, Diogenichthys sp. CBM:ZF:14796, Diogenichthys atlanticum",longfin lanternfish,Diogenichthys atlanticus,bio/DiogenichthysAtlanticus,,bio/Diogenichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +123654,,,,,,,Muscisaxicola,bio/Muscisaxicola,,,,,, +123659,,"Muscisaxicola griseus Taczanowski, 1884",,plain-capped ground-tyrant,Muscisaxicola alpina grisea,Taczanowski's ground-tyrant,Muscisaxicola griseus,bio/MuscisaxicolaGriseus,,bio/Muscisaxicola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +123717,,,,,,,Hypoatherina,bio/Hypoatherina,,,,,, +124104,,"Leiolopisma coense Mitchell, 1953",,Coen rainbow-skink,"Carlia coensis, Leiolopisma coense",Coen rainbow skink,Liburnascincus coensis,bio/LiburnascincusCoensis,,bio/Liburnascincus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +125062,,,,,,,Mitu,bio/Mitu,,,,,, +125072,,,,,,,Pipile,bio/Pipile,,,,,, +125246,,"Vandijkophrynus angusticeps (Smith, 1848)",,narrow-headed toad,Bufo angusticeps,sand toad,Vandijkophrynus angusticeps,bio/VandijkophrynusAngusticeps,,bio/Vandijkophrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +125247,,"Poyntonophrynus dombensis (Bocage, 1895)",,Dombe toad,"Bufo dombensis, Bufo dombensis dombensis",Dombe pygmy toad,Poyntonophrynus dombensis,bio/PoyntonophrynusDombensis,,bio/Poyntonophrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +125252,,"Sclerophrys lemairii (Boulenger, 1901)",,Pweto toad,"Bufo lemairei, Bufo lemairii, Amietophrynus lemairii",yellow swamp toad,Sclerophrys lemairii,bio/SclerophrysLemairii,,bio/Sclerophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +125253,,"Mertensophryne lindneri (Mertens, 1955)",,Lindner's dwarf toad,Bufo lindneri,Dar-es-Salaam toad,Mertensophryne lindneri,bio/MertensophryneLindneri,,bio/Mertensophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +125854,,"Vandijkophrynus inyangae (Poynton, 1963)",,Inyangani toad,"Bufo inyangae, Bufo gariepensis inyangae",Inyanga toad,Vandijkophrynus inyangae,bio/VandijkophrynusInyangae,,bio/Vandijkophrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +125862,,,,,,,Copsychus,bio/Copsychus,,,,,, +126328,,"Coris Lacepede, 1801",,,,,Coris ,bio/Coris_BonyFishes,,,,,, +126587,,,,,,,Nyctixalus,bio/Nyctixalus,,,,,, +126670,,,,,,,Chlorurus,bio/Chlorurus,,,,,, +126965,,,,,,,Theloderma,bio/Theloderma,,,,,, +126966,,"Theloderma kwangsiense (Liu & Hu, 1962)",,Kwangsi warty treefrog,"Theloderma leporosa kwangsiensis, Theloderma kwangsiensis, Rhacophorus corticalis, Theloderma kwangsiense, Rhacophorus leprosus kwangsiensis",Tonkin bug-eyed frog,Theloderma corticale,bio/ThelodermaCorticale,,bio/Theloderma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127010,,,,,Zakerana,,Fejervarya,bio/Fejervarya,,,,,, +127020,,"Rana chalconota (Schlegel, 1837)",,Schlegel's Java frog,"Hyla chalconotus, Rana chalconota, Chalcorana chalconota, Hydrophylax chalconotus",copper-cheeked frog,Hylarana chalconota,bio/HylaranaChalconota,,bio/Hylarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127021,,"Sylvirana nigrovittata (Blyth, 1856)",,Mengla frog,"Rana nigrovittata, Sylvirana menglaensis, Hylarana menglaensis, Sylvirana nigrovittata, Lymnodytes nigrovittatus",black-striped frog,Hylarana nigrovittata,bio/HylaranaNigrovittata,,bio/Hylarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127028,,,,,,,Sphaerotheca ,bio/Sphaerotheca_FrogsToads,,,,,, +127079,,"Sphaerotheca pluvialis (Schneider, 1799)",,short-headed burrowing frog,"Pyxicephalus breviceps, Sphaerotheca pluvialis, Tomopterna breviceps, Rana breviceps",Indian burrowing frog,Sphaerotheca breviceps,bio/SphaerothecaBreviceps,,bio/Sphaerotheca_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127175,,"Rhacophorus mutus Smith, 1940",,vocal sacless treefrog,Rhacophorus mutus,Burmese whipping frog,Polypedates mutus,bio/PolypedatesMutus,,bio/Polypedates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127313,,"Boloria Moore, 1900",,,,,Boloria,bio/Boloria,,,,,, +127345,,,,,,,Kallima,bio/Kallima,,,,,, +127629,,,,,,,Hildebrandtia ,bio/Hildebrandtia_FrogsToads,,,,,, +127641,,"Pyxicephalus ornatus Peters, 1878",,ornate burrowing frog,"Rana ornata, Pyxicephalus ornatus",ornate frog ,Hildebrandtia ornata,bio/HildebrandtiaOrnata,,bio/Hildebrandtia_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127645,,"Rana occipitalis Gunther, 1858",,Ethiopia Peters frog,"Limnonectes occipitalis, Rana occipitalis, Limnonectes (Hoplobatrachus) occipitalis, Euphlyctis occipitalis",groove-crowned bullfrog,Hoplobatrachus occipitalis,bio/HoplobatrachusOccipitalis,,bio/Hoplobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127654,,"Rana anchietae Bocage, 1868",,plain grass frog,Rana anchietae,savanna ridged frog,Ptychadena anchietae,bio/PtychadenaAnchietae,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +127971,,,,,,,Pangio,bio/Pangio,,,,,, +127972,,"Pangio kuhlii (Valenciennes, 1846)",,striped loach,"Acanthophthalmus kuhli, Cobitis kuhli, Cobitis kuhlii",coolie loach,Pangio kuhlii,bio/PangioKuhlii,,bio/Pangio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +128105,,"Proechimys guyannensis (Geoffroy, 1803)",,Cayenne spiny rat,"Echimys guyannensis, Proechimys cayennensis, Echimys cayennensis, Proechimys warreni",Guyenne spiny-rat,Proechimys guyannensis,bio/ProechimysGuyannensis,,bio/Proechimys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +129005,,"Rana crassa Jerdon, 1853",,South Indian bullfrog,"Rana crassa, Limnonectes crassus, Rana tigrina crassa",Jerdons bullfrog,Hoplobatrachus crassus,bio/HoplobatrachusCrassus,,bio/Hoplobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129007,,,,,,,Indirana,bio/Indirana,,,,,, +129008,,"Kaloula taprobanica Parker, 1934",,Sri Lankan painted frog,"Kaloula sp. Ksp.-Bd, Kaloula pulchra taprobanica",Sri Lankan bullfrog,Kaloula taprobanica,bio/KaloulaTaprobanica,,bio/Kaloula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129015,,,,,,,Micrixalus,bio/Micrixalus,,,,,, +129016,,"Micrixalus fuscus (Boulenger, 1882)",,brown tropical frog,"Staurois fuscus, Ixalus fuscus",dusky torrent frog,Micrixalus fuscus,bio/MicrixalusFuscus,,bio/Micrixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129017,,,,,,,Microhyla,bio/Microhyla,,,,,, +129020,,,,,Nannobatrachus,night frogs,Nyctibatrachus,bio/Nyctibatrachus,,,,,, +129025,,"Philautus charius Rao, 1937",,Seshachar's bush frog,"Kirtixalus charius, Pseudophilautus charius, Philautus charius",Karnataka bubble-nest frog,Raorchestes charius,bio/RaorchestesCharius,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129028,,,,,Nasirana,,Clinotarsus,bio/Clinotarsus,,,,,, +129029,,"Rana curtipes Jerdon, 1854",,Malabar frog,Rana curtipes,bicolored frog,Clinotarsus curtipes,bio/ClinotarsusCurtipes,,bio/Clinotarsus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129072,,,,,,,Tylosurus,bio/Tylosurus,,,,,, +129077,,"Tylosurus crocodilus (Peron & Lesueur, 1821)",,giant needlefish,"Strongylura gigantea, Belona crocodila",hound needlefish ,Tylosurus crocodilus,bio/TylosurusCrocodilus,,bio/Tylosurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129107,,,,,,,Xenentodon,bio/Xenentodon,,,,,, +129108,,"Xenentodon cancila (Hamilton, 1822)",,silver needlefish,Esox cancila,freshwater garfish,Xenentodon cancila,bio/XenentodonCancila,,bio/Xenentodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129216,,"Molge luschani Steindachner, 1891",,Luschan's salamander,"Salamandra luschani, Molge luschani, Mertensiella luschani",Lycian salamander,Lyciasalamandra luschani,bio/LyciasalamandraLuschani,,bio/Lyciasalamandra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129237,,"Oedipus engelhardti Schmidt, 1936",,Engelhardt's salamander,"Magnadigita engelhardti, Bolitoglossa (Magnadigita) engelhardti, Oedipus engelhardti",Engelhardt's mushroomtongue salamander,Bolitoglossa engelhardti,bio/BolitoglossaEngelhardti,,bio/Magnadigita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129241,,"Oedipus morio Cope, 1869",,Cope's salamander,"Bolitoglossa (Magnadigita) morio, Magnadigita morio, Oedipus morio, Spelerpes morio, Geotriton morio",Cope's mushroomtongue salamander,Bolitoglossa morio,bio/BolitoglossaMorio,,bio/Magnadigita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129398,,,,puffin and albatross butterflies,"Glutophrissa, Udaiana, Phrissura",puffins and albatrosses,Appias,bio/Appias,,,,,, +129788,,"Venus philippinarum Adams & Reeve, 1850",,Japanese littleneck,"Venus philippinarum, Venerupis japonica, Venerupis philippinarum, Venerupis (Ruditapes) philippinarum, Tapes japonica, Ruditapes (Venerupis) philippinarum, Tapes philippinarum",Manila clam,Ruditapes philippinarum,bio/RuditapesPhilippinarum,,bio/Ruditapes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +129884,,,,,"Triturus (Tylototriton), Tylototriton asperrimus group, Tylototriton verrucosus group, Yaotriton",crocodile newts,Tylototriton,bio/Tylototriton,,,,,, +129885,,"Tylototriton taliangensis Liu, 1950",,Pusakang crocodile newt,"Pleurodeles taliangensis, Tylototriton (Tylototriton) verrucosus, Pleurodeles (Tylototriton) taliangensis",Taliang knobby newt,Tylototriton taliangensis,bio/TylototritonTaliangensis,,bio/Tylototriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +130717,,,,,,,Archiaphyosemion,bio/Archiaphyosemion,,,,,, +130720,,,,,Rosenblatella,,Enneapterygius,bio/Enneapterygius,,,,,, +130738,,,,,,,Pachydactylus,bio/Pachydactylus,,,,,, +130786,,"Philautus kottigeharensis Rao, 1937",,Kottigehar bush frog,Philautus kottigeharensis,Kottigehar torrent frog,Micrixalus kottigeharensis,bio/MicrixalusKottigeharensis,,bio/Micrixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +130825,,"Lagomys curzoniae Hodgson, 1858",,plateau pika,"Lagomys curzoniae, Ochotona curzonae",black-lipped pika,Ochotona curzoniae,bio/OchotonaCurzoniae,,bio/Ochotona,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +131645,,"Galerucella nymphaeae (Linnaeus, 1758)",,waterlily leaf beetle,Pyrrhalta nymphaeae,water lily leaf beetle ,Galerucella nymphaeae,bio/GalerucellaNymphaeae,,bio/GalerucellaNymphaeaeComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +132459,,"Pueraria tonkinensis Gagnep., 1916",,,"Dolichos montanus, Pueraria lobata var. montana, Pueraria tonkinensis",,Pueraria montana,bio/PuerariaMontana,,,,,, +132587,,"Anser fabalis (Latham, 1787)",,Saatgans,"Anser albifrons fabalis, Anas fabalis",Taiga bean goose,Anser fabalis,bio/AnserFabalis,,bio/Anser,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +132696,,"Argynnis epithore Edwards, 1864",,Pacific fritillary,"Brenthis epithore, Argynnis epithore, Clossiana epithore",western meadow fritillary,Boloria epithore,bio/BoloriaEpithore,,bio/Boloria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +132697,,"Papilio tullia Muller, 1764",,large heath,Papilio tullia,common ringlet,Coenonympha tullia,bio/CoenonymphaTullia,,bio/Coenonympha,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +132699,,,,,,,Euphilotes,bio/Euphilotes,,,,,, +132706,,"Parnassius phoebus (Fabricius, 1793)",,Phoebus parnassian,Papilio phoebus,small apollo,Parnassius phoebus,bio/ParnassiusPhoebus,,bio/Parnassius_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +132707,,"Proserpinus Hubner, 1819",,,,,Proserpinus,bio/Proserpinus,,,,,, +132708,,"Pterogon clarkiae Boisduval, 1852",,Clark's sphinx,Pterogon clarkiae,Clark's day sphinx,Proserpinus clarkiae,bio/ProserpinusClarkiae,,bio/Proserpinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +132709,,,,,,,Zerynthia,bio/Zerynthia,,,,,, +132710,,"Zerynthia rumina (Linnaeus, 1758)",,Spanish festoon,Papilio rumina,southern festoon,Zerynthia rumina,bio/ZerynthiaRumina,,bio/Zerynthia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +133894,,,,,"Marsupenaeus, Farfantepenaeus, Litopenaeus, Melicertus, Fenneropenaeus",,Penaeus,bio/Penaeus,,,,,, +134396,,,,,,,Sesamia,bio/Sesamia,,,,,, +134470,,,,,,,Stramonita,bio/Stramonita,,,,,, +134471,,"Stramonita haemastoma (Linnaeus, 1767)",,oyster drill,"Thais (Stramonita) haemastoma, Thais haemastoma, Buccinum haemastoma",Florida rocksnail,Stramonita haemastoma,bio/StramonitaHaemastoma,,bio/Stramonita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +134629,,,,,,,Plectropomus,bio/Plectropomus,,,,,, +134700,,"Hyperolius horstockii (Schlegel, 1837)",,yellow-striped reed frog,"Rappia horstockii, Hyla horstockii, Eucnemis horstokii",arum lily frog,Hyperolius horstockii,bio/HyperoliusHorstockii,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +134759,,,,,,spring salamanders,Gyrinophilus,bio/Gyrinophilus,,,,,, +134760,,"Salamandra porphyritica Green, 1827",,,"Spelerpes porphyriticus, Amblystoma porphyriticum, Gyrinophilus danielsi polystictus, Geotriton porphyritica, Pseudotriton porphyriticus, Triton porphyriticus, Salamandra porphyritica",spring salamander,Gyrinophilus porphyriticus,bio/GyrinophilusPorphyriticus,,,,,, +134762,,"Pseudotriton ruber (Sonnini de Manoncourt & Latreille, 1801)",,,"Geotriton rubra, Salamandra rubra, Bolitoglossa rubra, Mycetoglossus ruber, Molge rubra, Triton rubra, Spelerpes rubra",red salamander ,Pseudotriton ruber,bio/PseudotritonRuber,,,,,, +134910,,"Mus uralensis Pallas, 1811",,Ural field mouse,"Apodemus microps, Sylvaemus uralensis, Mus uralensis",pygmy field mouse,Apodemus uralensis,bio/ApodemusUralensis,,bio/SylvaemusGroup,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +134919,,,,,,,Pungitius,bio/Pungitius,,,,,, +135775,,,,,,,Sillaginodes,bio/Sillaginodes,,,,,, +135776,,"Sillago punctata Cuvier, 1829",,spotted sillago,"Sillago punctata, Isosillago punctata",spotted whiting,Sillaginodes punctatus,bio/SillaginodesPunctatus,,bio/Sillaginodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +137062,,,,,,,Barbodes,bio/Barbodes,,,,,, +138069,,,,,,,Lysandra,bio/Lysandra,,,,,, +138070,,"Papilio bellargus Rottemburg, 1775",,Adonis blue butterfly,"Polyommatus bellargus, Lysandra belargus, Papilio bellargus",Adonis blue,Lysandra bellargus,bio/LysandraBellargus,,bio/Lysandra,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +138083,,"Incilius macrocristatus (Firschein & Smith, 1957)",,large-crested toad,"Bufo macrocristatus, Bufo valliceps macrocristatus, Cranopsis macrocristata, Ollotis macrocristata",huge-crested toad,Incilius macrocristatus,bio/InciliusMacrocristatus,,bio/Incilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +138084,,"Incilius campbelli (Mendelson, 1994)",,Campbell's forest toad,"Bufo campbelli, Cranopsis campbelli, Ollotis campbelli",Campbell's rainforest toad,Incilius campbelli,bio/InciliusCampbelli,,bio/Incilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +138085,,"Incilius nebulifer (Girard, 1854)",,nebulous toad,Bufo nebulifer,Gulf Coast toad,Incilius nebulifer,bio/InciliusNebulifer,,bio/Incilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +139271,,,,hard pines,,,Pinus subgen. Pinus,bio/PinusSubgenPinus,,,,,, +139973,,"Archips Hubner, 1822",,,,,Archips,bio/Archips,,,,,, +140017,,"Lampropeltis triangulum (LaCepede, 1789)",,milksnake,"Lampropeltis triangulum temporalis, Lampropeltis sp. 2024d, Coluber triangulum",milk snake,Lampropeltis triangulum,bio/LampropeltisTriangulum,,bio/Lampropeltis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +140444,,"Lophura hatinhensis Vo Quy, 1975",,Vietnam fireback,Lophura edwardsi hatinensis,Vietnamese pheasant,Lophura hatinhensis,bio/LophuraHatinhensis,,bio/Lophura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +141838,,,,,,,Probosciger,bio/Probosciger,,,,,, +141839,,"Psittacus aterrimus Gmelin, 1788",,goliath cockatoo,"Probosciger atterimus, Psittacus aterrimus",palm cockatoo,Probosciger aterrimus,bio/ProboscigerAterrimus,,bio/Probosciger,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +141976,,"Salamandra cinerea Green, 1818",,northern red-backed salamander,Salamandra cinerea,red-backed salamander,Plethodon cinereus,bio/PlethodonCinereus,,bio/Plethodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +142466,,"Garrulus californicus Vigors, 1839",,California scrub jay,"Garrulus californicus, Aphelocoma coerulescens californica",Western scrub-jay,Aphelocoma californica,bio/AphelocomaCalifornica,,bio/Aphelocoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +142475,,Poecile Kaup 1829,,,,,Poecile,bio/Poecile,,,,,, +143020,,"Tomicus piniperda (Linnaeus, 1758)",,larger pine shoot beetle,Blastophagus piniperda,common pine shoot beetle,Tomicus piniperda,bio/TomicusPiniperda,,bio/Tomicus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143028,,,,,,,Anableps,bio/Anableps,,,,,, +143039,,,,,,,Semaprochilodus,bio/Semaprochilodus,,,,,, +143313,,"Chlorophthalmus agassizi Bonaparte, 1840",,Agassiz's thread-sail fish,Chlorophthalmus agassizii,shortnose greeneye,Chlorophthalmus agassizi,bio/ChlorophthalmusAgassizi,,bio/Chlorophthalmus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143329,,,,,,,Crenimugil,bio/Crenimugil,,,,,, +143330,,"Mugil crenilabis Forsskal, 1775",,warty-lipped mullet,Mugil crenilabis,fringelip mullet,Crenimugil crenilabis,bio/CrenimugilCrenilabis,,bio/Crenimugil,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143350,,"Pagrus major (Temminck & Schlegel, 1843)",,red tail,"Sparus major, Pagrosomus major, Chrysophrys major",red seabream,Pagrus major,bio/PagrusMajor,,bio/Pagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143399,,,,,,,Schistura,bio/Schistura,,,,,, +143402,,,,,,,Leptobotia,bio/Leptobotia,,,,,, +143403,,"Leptobotia elongata (Bleeker, 1870)",,queen loach,Botia elongata,royal clown loach,Leptobotia elongata,bio/LeptobotiaElongata,,bio/Leptobotia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143421,,"Leptopelis modestus (Werner, 1898)",,plain tree frog,Hylambates rufus var. modesta,modest forest treefrog,Leptopelis modestus,bio/LeptopelisModestus,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143422,,"Polypedates natalensis Smith, 1849",,Natal tree frog,"Hylambates (Leptopelis) natalensis, Hylambates natalensis, Polypedates natalensis",raucous tree frog,Leptopelis natalensis,bio/LeptopelisNatalensis,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143439,,"Polypedates maculatus (Gray, 1833)",,spotted tree frog,"Hyla maculata, Polypedates maculatus, Rhacophorus maculatus",spotted whipping frog,Polypedates maculatus,bio/PolypedatesMaculatus,,bio/Polypedates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143442,,"Rana oxyrhynchus Smith, 1849",,sharp-snouted ridged frog,Rana oxyrhynchus,sharp-nosed frog,Ptychadena oxyrhynchus,bio/PtychadenaOxyrhynchus,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143461,,,,,Phrynodon,puddle frogs,Phrynobatrachus,bio/Phrynobatrachus,,,,,, +143502,,"Polypedates rufescens Gunther, 1869",,western foam-nest tree frog,"Polypedates rufescens, Chirixalus rufescens",African foam-nest treefrog,Chiromantis rufescens,bio/ChiromantisRufescens,,bio/Chiromantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143526,,"Microhyla ornata (Dumeril and Bibron, 1841)",,ornate narrowmouth frog,"Diplopelma ornatum, Engystoma ornatum",ornate rice frog,Microhyla ornata,bio/MicrohylaOrnata,,bio/Microhyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143529,,"Phelsuma laticauda (Boettger, 1880)",,gold dust day gecko,Pachydactylus laticauda,broad-tailed day gecko,Phelsuma laticauda,bio/PhelsumaLaticauda,,bio/Phelsuma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143533,,"Rhacophorus colletti Boulenger, 1890",,Collett's whipping frog,Rhacophorus colletti,black-spotted tree frog ,Polypedates colletti,bio/PolypedatesColletti,,bio/Polypedates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143535,,"Rana porosissima Steindachner, 1867",,three-striped grass frog,Rana porosissima,Ethiopia grassland frog,Ptychadena porosissima,bio/PtychadenaPorosissima,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143539,,"Correlophus ciliatus Guichenot, 1866",,eyelash gecko,Rhacodactylus ciliatus,crested gecko,Correlophus ciliatus,bio/CorrelophusCiliatus,,bio/Correlophus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143558,,,,short-heads,,rain frogs,Breviceps,bio/Breviceps,,,,,, +143562,,,,,,,Dermatonotus,bio/Dermatonotus,,,,,, +143563,,"Engystoma mulleri Boettger, 1885",,Muller's termite frog,"Hypopachus muelleri, Gastrophryne muelleri, Dermatonotus mulleri, Engystoma mulleri, Engystoma muelleri",Mueller's termite frog,Dermatonotus muelleri,bio/DermatonotusMuelleri,,bio/Dermatonotus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143566,,,,,,,Elachistocleis,bio/Elachistocleis,,,,,, +143568,,"Heleophryne regis Hewitt, 1910",,southern ghost frog,Heleophryne purcelli regis,royal ghost frog,Heleophryne regis,bio/HeleophryneRegis,,bio/Heleophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143592,,"Sphaerotheca dobsonii (Boulenger, 1882)",,Dobson's burrowing frog,"Rana (Tomopterna) dobsonii, Tomopterna dobsoni, Sphaerotheca dobsoni, Rana dobsonii",Mangalore bullfrog,Sphaerotheca dobsonii,bio/SphaerothecaDobsonii,,bio/Sphaerotheca_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143627,,,,,,,Micryletta,bio/Micryletta,,,,,, +143647,,,,,,,Strongylopus,bio/Strongylopus,,,,,, +143648,,"Strongylopus fasciatus (Smith, 1849)",,Tanganyika striped grass frog,Rana fasciata,striped stream frog,Strongylopus fasciatus,bio/StrongylopusFasciatus,,bio/Strongylopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +143667,,,,,,,Ramanella,bio/Ramanella,,,,,, +143895,,"Notacanthus chemnitzii Bloch, 1788",,largescale tapirfish,Notacanthus chemnitzi,spiny eel,Notacanthus chemnitzii,bio/NotacanthusChemnitzii,,bio/Notacanthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +144708,,,,,,,Bombus ,bio/Bombus_Subgenus,,,,,, +145400,,"Anolis leachii Dumeril & Bibron, 1837",,Leach's anole,"Anolis bimaculatus leachii, Anolis leachi, Anolis bimaculatus leachi",Panther Anole,Anolis leachii,bio/AnolisLeachii,,bio/Anolis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +145888,,"Anartia Hubner, 1819",,,,,Anartia ,bio/Anartia_Butterflies,,,,,, +146139,,,,,,,Selar,bio/Selar,,,,,, +146146,,"Selar crumenophthalmus (Bloch, 1793)",,big-eyed scad,Scomber crumenophthalmus,bigeye scad,Selar crumenophthalmus,bio/SelarCrumenophthalmus,,bio/Selar,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +146617,,"Phalacrocorax capillatus (Temminck & Schlegel, 1849)",,Temminck's cormorant,"Carbo capillatus, Phalacrocorax filamentosus",Japanese cormorant,Phalacrocorax capillatus,bio/PhalacrocoraxCapillatus,,bio/Phalacrocorax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +146625,,"Phalacrocorax chalconotus (Gray,GR, 1845)",,Stewart Island cormorant,"Phalacrocorax chalconotus, Phalacrocorax carunculatus chalconotus, Graculus chalconotus, Eulococarbo chalconotus",Otago shag,Leucocarbo chalconotus,bio/LeucocarboChalconotus,,bio/Leucocarbo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +146711,,"Phrynoglossus martensii Peters, 1867",,whiet-lined flood frog,"Phrynoglossus martensii, Occidozyga martensi",round-tongued floating frog,Occidozyga martensii,bio/OccidozygaMartensii,,bio/Occidozyga,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +146730,,"Euphlyctis ehrenbergii (Peters, 1863)",,Arabian skittering frog,Rana ehrenbergii,Arabian five-fingered frog,Euphlyctis ehrenbergii,bio/EuphlyctisEhrenbergii,,bio/Euphlyctis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +146731,,"Rana gracilis Gravenhorst, 1829",,Sri Lanka wood frog,"Hylarana gracilis, Rana gracilis",Gravenhorst's golden-backed frog,Hydrophylax gracilis,bio/HydrophylaxGracilis,,bio/Hydrophylax_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +147650,,"Cercopithecus solatus M. J. S. Harrison, 1988",,sun-tailed guenon,Cercopithecus solatus,sun-tailed monkey,Allochrocebus solatus,bio/AllochrocebusSolatus,,bio/Allochrocebus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +147909,,"Typhlotriton spelaeus Stejneger, 1892",,grotto salamander,"Typhlotriton spelaeus, Eurycea spelaeus",Ozark blind salamander,Eurycea spelaea,bio/EuryceaSpelaea,,bio/Eurycea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +147949,,"Micropterus velox Hubbs & Bailey, 1940",,smallmouth blackbass,Micropterus velox,smallmouth bass,Micropterus dolomieu,bio/MicropterusDolomieu,,bio/Micropterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +149981,,,,,,,Lefua,bio/Lefua,,,,,, +149983,,"Osteogaster rabauti (LaMonte, 1941)",,rusty cory,Corydoras rabauti,rust corydoras,Osteogaster rabauti,bio/OsteogasterRabauti,,bio/Osteogaster,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +149984,,,,,,,Gonorynchus,bio/Gonorynchus,,,,,, +149986,,"Rynchana greyi Richardson, 1845",,shark whiting,"Rynchana greyi, Rhynchana greyi",beaked salmon ,Gonorynchus greyi,bio/GonorynchusGreyi,,bio/Gonorynchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +150241,,,,chirping frogs,,moss frogs,Arthroleptella,bio/Arthroleptella,,,,,, +150245,,"Arthroleptis lightfooti Boulenger, 1910",,tiny chirping frog,Arthroleptis lightfooti,Cape chirping frog,Arthroleptella lightfooti,bio/ArthroleptellaLightfooti,,bio/Arthroleptella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +150257,,,,,,,Amblyeleotris,bio/Amblyeleotris,,,,,, +150287,,,,,,,Boleophthalmus,bio/Boleophthalmus,,,,,, +150290,,,,,,,Brachygobius,bio/Brachygobius,,,,,, +150297,,,,,,,Glossogobius,bio/Glossogobius,,,,,, +150305,,,,,,,Istigobius,bio/Istigobius,,,,,, +150319,,"Ptereleotris zebra (Fowler, 1938)",,zebra hovergoby,Pogonoculius zebra,Chinese zebra goby,Ptereleotris zebra,bio/PtereleotrisZebra,,bio/Ptereleotris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +150323,,"Ptereleotris evides (Jordan & Hubbs, 1925)",,spottail gudgeon,Encaeura evides,blackfin dartfish,Ptereleotris evides,bio/PtereleotrisEvides,,bio/Ptereleotris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +150324,,,,,,,Redigobius,bio/Redigobius,,,,,, +150325,,"Vaimosa bikolana Herre, 1927",,checkered dualspot goby,Vaimosa bikolana,speckled goby,Redigobius bikolanus,bio/RedigobiusBikolanus,,bio/Redigobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +150436,,"Panulirus versicolor (Latreille, 1804)",,spiny blue lobster,"Palinurus versicolor, Panulirus taeniatus, Palinurus taeniatus",painted spiny lobster,Panulirus versicolor,bio/PanulirusVersicolor,,bio/Panulirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +150710,,"Hyla microcephala Cope, 1886",,yellow cricket treefrog,Hyla microcephala,yellow treefrog,Dendropsophus microcephalus,bio/DendropsophusMicrocephalus,,bio/Dendropsophus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +151303,,,,,,,Dendrolimus,bio/Dendrolimus,,,,,, +151304,,"Phalaena pini Linnaeus, 1758",,pine moth,Phalaena pini,pine lappet,Dendrolimus pini,bio/DendrolimusPini,,bio/Dendrolimus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +151541,,"Papilio chrysippus Linnaeus, 1758",,plain tiger,"Anosia chrysippus, Papilio chrysippus",African queen,Danaus chrysippus,bio/DanausChrysippus,,bio/Anosia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +151542,,,,,,,Danaus ,bio/Danaus_Subgenus,,,,,, +151543,,,,,,,Anosia,bio/Anosia,,,,,, +151724,,,,,,,Fusigobius,bio/Fusigobius,,,,,, +152347,,"Rana yavapaiensis Platz & Frost, 1984",,Yavapai leopard frog,"Pantherana yavapaiensis, Rana yavapaiensis",lowland leopard frog,Lithobates yavapaiensis,bio/LithobatesYavapaiensis,,bio/Lithobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +152539,,"Salarias bicolor Day, 1888",,flame tail blenny,Salarias bicolor,bicolor blenny,Ecsenius bicolor,bio/EcseniusBicolor,,bio/Ecsenius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +153621,,"Serranus bonaci Poey, 1860",,marbled rockfish,Serranus bonaci,black grouper,Mycteroperca bonaci,bio/MycteropercaBonaci,,bio/Mycteroperca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +154031,,,,,,,Limia,bio/Limia,,,,,, +154334,CeHV-17,,,,"rhesus macaque rhadinovirus, Cercopithecine herpesvirus 17, Macacine herpesvirus 5",Rhesus rhadinovirus,Macacine gammaherpesvirus 5,bio/MacacineGammaherpesvirus5,dcs:BiologicalHostVertebrates,bio/RhadinovirusMacacinegamma5,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +154348,,"Lefua costata (Kessler, 1876)",,eight-whiskered stone loach,Diplophysa costata,eightbarbel loach,Lefua costata,bio/LefuaCostata,,bio/Lefua,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +154816,,"Psilorhynchus aymonieri Tirant, 1884",,Siamese headbreather,Psilorhynchus aymonieri,Siamese algae-eater ,Gyrinocheilus aymonieri,bio/GyrinocheilusAymonieri,,bio/Gyrinocheilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +154823,,"Teretulus cervinus Cope, 1868",,black jumprock,"Scartomyzon cervinus, Teretulus cervinus",blacktip jumprock,Moxostoma cervinum,bio/MoxostomaCervinum,,bio/Moxostoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +155165,,"Plebejus argyrognomon (Bergstrasser, 1779)",,Reverdin's blue,"Lycaeides argyrognomon, Papilio argyrognomon",northern blue,Plebejus argyrognomon,bio/PlebejusArgyrognomon,,bio/Plebejus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +155167,,"Plebejus melissa (Edwards, 1873)",,Melissa blue,"Lycaena melissa, Lycaeides melissa",orange-bordered blue,Plebejus melissa,bio/PlebejusMelissa,,bio/Plebejus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156159,,,,,,,Colluricincla,bio/Colluricincla,,,,,, +156196,,"Abrothrix Waterhouse, 1837",,,,,Abrothrix,bio/Abrothrix,,,,,, +156562,,Cyanistes Kaup 1829,,,,,Cyanistes,bio/Cyanistes,,,,,, +156563,,"Parus caeruleus Linnaeus, 1758",,Blaumeise,Parus caeruleus,blue tit,Cyanistes caeruleus,bio/CyanistesCaeruleus,,bio/Cyanistes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156564,,Lophophanes Kaup 1829,,,,,Lophophanes,bio/Lophophanes,,,,,, +156565,,"Parus cristatus Linnaeus, 1758",,Haubenmeise,Parus cristatus,crested tit,Lophophanes cristatus,bio/LophophanesCristatus,,bio/Lophophanes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156870,,"Rana psaltes Kuramoto, 1985",,Yaeyama harpist frog,"Nidirana psaltes, Rana okinavana, Babina okinavana, Hylarana psaltes, Babina psaltes, Rana psaltes",Kampira Falls frog,Nidirana okinavana,bio/NidiranaOkinavana,,bio/Nidirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156873,,"Sylvirana latouchii (Boulenger, 1899)",,LaTouche's frog,"Sylvirana latouchii, Rana latouchii",broad-folded frog,Hylarana latouchii,bio/HylaranaLatouchii,,bio/Hylarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156874,,"Peltophryne peltocephalus (Tschudi, 1838)",,Cuban toad,"Bufo peltocephalus, Peltophryne peltocephalus",Tschudi's Caribbean toad,Peltophryne peltocephala,bio/PeltophrynePeltocephala,,bio/Peltophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156875,,"Peltophryne guentheri (Cochran, 1941)",,Gunther's Caribbean toad,"Bufo guntheri, Bufo guentheri",Guenther's Caribbean toad,Peltophryne guentheri,bio/PeltophryneGuentheri,,bio/Peltophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156876,,"Peltophryne gundlachi (Ruibal, 1959)",,Gundlach's Caribbean toad,Bufo gundlachi,Cuban high-crested toad,Peltophryne gundlachi,bio/PeltophryneGundlachi,,bio/Peltophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156877,,"Peltophryne longinasus (Stejneger, 1905)",,Stejneger's Caribbean toad,Bufo longinasus,Cuban long-nosed toad,Peltophryne longinasus,bio/PeltophryneLonginasus,,bio/Peltophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156878,,"Peltophryne taladai (Schwartz, 1960)",,Cuban Caribbean toad,Bufo taladai,Cuban spotted toad,Peltophryne taladai,bio/PeltophryneTaladai,,bio/Peltophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156879,,"Peltophryne empusa (Cope, 1862)",,Cuban toad,"Peltophryne empua, Bufo empusus, Otaspis empusa",Cuban small-eared toad,Peltophryne empusa,bio/PeltophryneEmpusa,,bio/Peltophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156881,,"Duttaphrynus stomaticus (Lutken, 1864)",,marbled toad,Bufo stomaticus,Indus Valley toad,Duttaphrynus stomaticus,bio/DuttaphrynusStomaticus,,bio/Duttaphrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +156896,,,,,Microacontias,,Acontias,bio/Acontias,,,,,, +156991,,"Liua Zhao & Hu, 1983",,,,,Liua ,bio/Liua_Salamanders,,,,,, +156992,,"Liua shihi (Liu, 1950)",,Sichuan salamander,"Hynobius shihi, Ranodon shihi",Wushan salamander,Liua shihi,bio/LiuaShihi,,bio/Liua_Salamanders,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +157304,,"Anoplophora Hope, 1839",,,Calloplophora,,Anoplophora,bio/Anoplophora,,,,,, +157791,,"Vigna radiata R.Wilczek, 1954",,mung bean,,,Vigna radiata,bio/VignaRadiata,,,,,, +158052,,"Pica hudsonia (Sabine, 1823)",,American black-billed Magpie,"Pica nuttalli hudsonia, Corvus hudsonius, Pica pica hudsonica, Pica pica hudsonia",Black-billed magpie,Pica hudsonia,bio/PicaHudsonia,,bio/Pica,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +158688,,"Plebejus melissa samuelis (Nabokov, 1944)",,Karner blue,Lycaeides melissa samuelis,Karner blue butterfly,Plebejus melissa samuelis,bio/PlebejusMelissaSamuelis,,bio/PlebejusMelissa,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +159457,,"Rhinella macrorhina (Trueb, 1971)",,trumpeted toad,Rhamphophryne macrorhina,Santa Rita beaked toad,Rhinella macrorhina,bio/RhinellaMacrorhina,,bio/Rhinella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +160130,,,,,,,Goniodes,bio/Goniodes,,,,,, +160721,,"Serranus itajara Lichtenstein, 1822",,jewfish,Serranus itajara,itajara,Epinephelus itajara,bio/EpinephelusItajara,,bio/Epinephelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +160725,,"Hyporthodus niphobles (Gilbert & Starks, 1897)",,snowy grouper,Epinephelus niphobles,star-studded grouper,Hyporthodus niphobles,bio/HyporthodusNiphobles,,bio/Hyporthodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +160734,,"Plectropomus leopardus (Lacepede, 1802)",,leopard coral trout,Holocentrus leopardus,leopard coralgrouper,Plectropomus leopardus,bio/PlectropomusLeopardus,,bio/Plectropomus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +160741,,,,,,,Rypticus,bio/Rypticus,,,,,, +160742,,"Rypticus saponaceus (Bloch & Schneider, 1801)",,three-spined soapfish,Anthias saponaceus,greater soapfish,Rypticus saponaceus,bio/RypticusSaponaceus,,bio/Rypticus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +160760,,"Spinus spinus (Linnaeus, 1758)",,Zeisig,"Fringilla spinus, Carduelis spinus",Eurasian siskin,Spinus spinus,bio/SpinusSpinus,,bio/Spinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161274,,"Bombinator maximus Boulenger, 1905",,Chinese red belly toad,Bombinator maximus,large-webbed bell toad,Bombina maxima,bio/BombinaMaxima,,bio/Bombina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161276,,"Oreochromis urolepis hornorum (Trewavas, 1966)",,Zanzibar tilapia,"Oreochromis hornorum, Sarotherodon hornorum",Wami tilapia,Oreochromis urolepis hornorum,bio/OreochromisUrolepisHornorum,,bio/OreochromisUrolepis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +161447,,,,,,,Corythoichthys,bio/Corythoichthys,,,,,, +161459,,,,,,,Hippichthys,bio/Hippichthys,,,,,, +161623,,,,,,,Passerculus,bio/Passerculus,,,,,, +161624,,"Emberiza sandwichensis Gmelin, 1789",,Grasammer,"Emberiza sandwichensis, Ammodramus sandwichensis",Savannah sparrow,Passerculus sandwichensis,bio/PasserculusSandwichensis,,bio/Passerculus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161679,,,,,,,Limosa,bio/Limosa,,,,,, +161680,,"Scolopax limosa Linnaeus, 1758",,Uferschnepfe,Scolopax limosa,black-tailed godwit,Limosa limosa,bio/LimosaLimosa,,bio/Limosa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161697,,,,spiny toads,,eastern spadefoot toads,Leptobrachium,bio/Leptobrachium,,,,,, +161698,,"Megophrys hasseltii chapaensis Bourret, 1937",,white-eyed litter frog,"Megophrys hasseltii chapaensis, Leptobrachium hasselti chapaensis",Chapa spadefoot toad,Leptobrachium chapaense,bio/LeptobrachiumChapaense,,bio/Leptobrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161701,,,,,,,Xenophrys,bio/Xenophrys,,,,,, +161704,,"Micryletta inornata (Boulenger, 1890)",,inornate froglet,Microhyla inornata,false ornate narrow-mouthed frog,Micryletta inornata,bio/MicrylettaInornata,,bio/Micryletta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161706,,"Rhacophorus reinwardtii (Schlegel, 1840)",,small flying tree frog,"Hyla reinwardtii, Racophorus reinwardtii, Polypedates reinwardtii",Reinwardt's flying frog,Rhacophorus reinwardtii,bio/RhacophorusReinwardtii,,bio/Rhacophorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161707,,"Rhacophorus verrucosus Boulenger, 1893",,Boulenger's bushfrog,Rhacophorus verrucosus,small rough-armed tree frog,Kurixalus verrucosus,bio/KurixalusVerrucosus,,bio/Kurixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161767,,"Lutjanus percula Lacepede, 1802",,Picasso clownfish,Lutjanus percula,orange clownfish,Amphiprion percula,bio/AmphiprionPercula,,bio/Amphiprion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +161939,,,,,,,Cryptoblepharus,bio/Cryptoblepharus,,,,,, +161940,,"Scincus boutonii Des Jardins, 1831",,coral rag skink,"Scincus boutonii, Cryptoblepharus boutoni",snake-eyed skink,Cryptoblepharus boutonii,bio/CryptoblepharusBoutonii,,bio/Cryptoblepharus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +163119,,,,,,,Scorpaenopsis,bio/Scorpaenopsis,,,,,, +163125,,,,,,,Pampus,bio/Pampus,,,,,, +163128,,,,,,,Arripis,bio/Arripis,,,,,, +163129,,"Centropristes georgianus Valenciennes, 1831",,western herring,Centropristes georgianus,Australian ruff,Arripis georgianus,bio/ArripisGeorgianus,,bio/Arripis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +163133,,,,,,,Oplegnathus,bio/Oplegnathus,,,,,, +163134,,"Scaradon fasciatus Temminck & Schlegel, 1844",,striped knifejaw,Scaradon fasciatus,barred knifejaw,Oplegnathus fasciatus,bio/OplegnathusFasciatus,,bio/Oplegnathus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +163136,,,,,,,Kuhlia,bio/Kuhlia,,,,,, +163137,,"Sciaena mugil Forster, 1801",,ocean flagfish,Sciaena mugil,barred flagtail,Kuhlia mugil,bio/KuhliaMugil,,bio/Kuhlia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +163828,,"Percina palmaris (Bailey, 1940)",,copper darter,"Hadropterus palmaris, Percina cf. palmaris TJN-2011",bronze darter,Percina palmaris,bio/PercinaPalmaris,,bio/Ericosoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164016,,,,,Liposarcus,,Pterygoplichthys,bio/Pterygoplichthys,,,,,, +164282,,"Atelopus minutus Melin, 1941",,Amazonian tiny tree toad,"Atelopus minutus, Dendrophryniscus minutus",tiny tree toad,Amazophrynella minuta,bio/AmazophrynellaMinuta,,bio/Amazophrynella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164286,,,,,,,Nectophrynoides,bio/Nectophrynoides,,,,,, +164291,,,,,,Asian tree toads,Pedostibes,bio/Pedostibes,,,,,, +164293,,,,dwarf toads,,flathead toads,Pelophryne,bio/Pelophryne,,,,,, +164301,,,,,Psyllophryne,,Brachycephalus,bio/Brachycephalus,,,,,, +164302,,"Bufo ephippium Spix, 1824",,Spix's saddleback toad,Bufo ephippium,pumpkin toadlet,Brachycephalus ephippium,bio/BrachycephalusEphippium,,bio/Brachycephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164310,,"Leptolalax pelodytoides (Boulenger, 1893)",,olive crawl frog,"Carpophrys pelodytoides, Leptolalax pelodytoides, Leptobrachium pelodytoides, Megophrys pelodytoides",Thao Asian toad,Leptobrachella pelodytoides,bio/LeptobrachellaPelodytoides,,bio/Leptobrachella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164648,,"Simia badius Kerr, 1792",,red colobus,"Simia badius, Colobus badius, Procolobus badius",western red colobus,Piliocolobus badius,bio/PiliocolobusBadius,,bio/Piliocolobus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +164736,,"Rana fuscigula Dumeril & Bibron, 1841",,dusky-throated river frog,"Afrana fuscigula, Rana fuscigula",dark-throated river frog,Amietia fuscigula,bio/AmietiaFuscigula,,bio/Amietia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164737,,,,,"Afrana, Rana (Amietia)",,Amietia,bio/Amietia,,,,,, +164738,,"Rana vertebralis Hewitt, 1927",,Umzimkulu River leopard frog,"Rana (Amietia) vertebralis, Rana vertebralis, Amietia umbraculata, Rana umbraculata",large-mouthed frog,Amietia vertebralis,bio/AmietiaVertebralis,,bio/Amietia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164740,,"Rana galamensis Dumeril & Bibron, 1841",,marble-legged frog,"Rana galamensis, Rana (Hylarana) galamensis, Hylarana galamensis, Hydrophylax galamensis, Rana (Hydrophylax) galamensis",Galam white-lipped frog,Amnirana galamensis,bio/AmniranaGalamensis,,bio/Amnirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164743,,"Tomopterna tuberculosa (Boulenger, 1882)",,beaded dwarf bullfrog,"Rana (Tomopterna) pulchra, Rana tuberculosa, Pyxicephalus tuberculosus, Pyxicephalus rugosus",beaded sand frog,Tomopterna tuberculosa,bio/TomopternaTuberculosa,,bio/Tomopterna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164744,,,,,,,Apristurus,bio/Apristurus,,,,,, +164746,,"Scyllium laurussonii Saemundsson, 1922",,Atlantic ghost catshark,"Scyllium laurussonii, Apristurus atlanticus, Apristurus laurussoni",Iceland catshark,Apristurus laurussonii,bio/ApristurusLaurussonii,,bio/Apristurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164968,,,,,,,Paramesotriton,bio/Paramesotriton,,,,,, +164969,,"Trituroides caudopunctatus Liu & Hu in Hu, Zhao & Liu, 1973",,spot-tailed warty newt,"Trituroides caudopunctatus, Allomesotriton caudopunctatus",Guizhou warty newt,Paramesotriton caudopunctatus,bio/ParamesotritonCaudopunctatus,,bio/Paramesotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164970,,"Paramesotriton deloustali (Bourret, 1934)",,Vietnamese salamander,"Mesotriton deloustali, Pachytriton deloustali",Vietnam warty newt,Paramesotriton deloustali,bio/ParamesotritonDeloustali,,bio/Paramesotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164971,,"Trituroides guanxiensis Huang, Tang & Tang, 1983",,Guangxi salamander,"Paramesotriton guangxiensis, Trituroides guanxiensis",Guangxi warty newt,Paramesotriton guanxiensis,bio/ParamesotritonGuanxiensis,,bio/Paramesotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +164973,,"Tylototriton verrucosus Anderson, 1871",,Himalayan newt,"Glossolega verrucosa, Pleurodeles (Tylototriton) verrucosus, Triturus (Tylototriton) verrucosus, Pleurodeles verrucosus",crocodile newt,Tylototriton verrucosus,bio/TylototritonVerrucosus,,bio/Tylototriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +165098,,,,,,,Scolymia,bio/Scolymia,,,,,, +165099,,"Scolymia cubensis Milne Edwards & Haime, 1849",,solitary disk coral,Caryophyllia cubensis,artichoke coral,Scolymia cubensis,bio/ScolymiaCubensis,,bio/Scolymia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +165226,,"Rhinella margaritifera (Laurenti, 1768)",,South American common toad,"Rana margaritifera, Rhinella margaritifera, Bufo margaritifer, Bufo typhonius",mitred toad,Rhinella margaritifera,bio/RhinellaMargaritifera,,bio/Rhinella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +165846,,"Papilio jatrophae Linnaeus, 1763",,white peacock butterfly,Papilio jatrophae,white peacock,Anartia jatrophae,bio/AnartiaJatrophae,,bio/Anartia_Butterflies,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +165858,,"Papilio melanippus Cramer, 1777",,common tiger,"Danaus (Salatura) melanippus, Danaus melanippus philozigetes, Papilio melanippus",white tiger,Danaus melanippus,bio/DanausMelanippus,,bio/Salatura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +165861,,"Papilio eresimus Cramer, 1777",,tropical queen,Papilio eresimus,tropic queen,Danaus eresimus,bio/DanausEresimus,,bio/Anosia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +166779,,"Ptereleotris microlepis (Bleeker, 1856)",,smallscale hovergoby,Eleotris microlepis,blue gudgeon,Ptereleotris microlepis,bio/PtereleotrisMicrolepis,,bio/Ptereleotris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +167803,,,,,,,Aldabrachelys,bio/Aldabrachelys,,,,,, +167804,,"Testudo gigantea Schweigger, 1812",,Aldabra tortoise,"Aldabrachelys elephantina, Testudo gigantea, Geochelone gigantea, Dipsochelys dussumieri, Aldabrachelys dussumieri",Aldabra giant tortoise,Aldabrachelys gigantea,bio/AldabrachelysGigantea,,bio/Aldabrachelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +167931,,,,,,,Glandirana,bio/Glandirana,,,,,, +167933,,"Hyla arborea var. chinensis Gunther, 1858",,common Chinese treefrog,Hyla arborea var. chinensis,Chinese tree toad,Hyla chinensis,bio/HylaChinensis,,bio/Hyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +167935,,"Rana grahami Boulenger, 1917",,Graham's frog,"Huia grahami, Rana grahami",Yunnanfu frog,Odorrana grahami,bio/OdorranaGrahami,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +167953,,"Proechimys quadruplicatus Hershkovitz, 1948",,Venezuelan spiny rat,Proechimys amphichoricus,Napo spiny rat,Proechimys quadruplicatus,bio/ProechimysQuadruplicatus,,bio/Proechimys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +168630,,,,,,,Chilo,bio/Chilo,,,,,, +168631,,"Chilo suppressalis (Walker, 1863)",,striped rice borer,Crambus suppressalis,striped riceborer,Chilo suppressalis,bio/ChiloSuppressalis,,bio/Chilo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +170207,,"Simias concolor Miller, 1903",,Pig-tailed langur,Nasalis concolor,Simakobou,Simias concolor,bio/SimiasConcolor,,bio/Simias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +171407,,"Ranitomeya reticulata (Boulenger, 1884)",,reticulated poison frog,Dendrobates reticulatus,redback poison frog,Ranitomeya reticulata,bio/RanitomeyaReticulata,,bio/Ranitomeya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +171585,,"Papilio io Linnaeus, 1758",,peacock,"Papilio io, Inachis io, Aglais io (Linnaeus, 1758)",European peacock,Nymphalis io,bio/NymphalisIo,,bio/Aglais,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +171592,,"Papilio antiopa Linnaeus, 1758",,Camberwell beauty,Papilio antiopa,mourning cloak,Nymphalis antiopa,bio/NymphalisAntiopa,,bio/Euvanessa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +171594,,"Papilio polychloros Linnaeus, 1758",,large tortoiseshell,Papilio polychloros,blackleg tortoiseshell,Nymphalis polychloros,bio/NymphalisPolychloros,,bio/Nymphalis_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +171801,,"Damora Nordmann, 1851",,,"Argyronome, Argyreus, Damora",,Argynnis,bio/Argynnis,,,,,, +171959,,"Sorghum vulgare var. sudanense (Steud.) Hack. ex Chiov., 1916",,shattercane,"Sorghum bicolor subsp. x drummondii, Sorghum bicolor nothosp. drummondii, Andropogon drummondii, Andropogon sorghum subsp. sudanensis, Sorghum vulgare var. sudanense, Sorghum drummondii (Steud.) Millsp. & Chase, 1903, Sorghum bicolor x Sorghum x drummondii, Sorghum sudanense, Sorghum bicolor subsp. bicolor x Sorghum bicolor subsp. verticilliflorum, Sorghum bicolor x Sorghum arundinaceum",Sudan grass,Sorghum bicolor subsp. drummondii,bio/SorghumBicolorSubspDrummondii,,bio/SorghumBicolor,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +172122,,,,,,,Scopelarchus,bio/Scopelarchus,,,,,, +172268,,,,,,,Argyrosomus,bio/Argyrosomus,,,,,, +172552,,"Lychas mucronatus (Fabricius, 1798)",,Vietnamese brown scorpion,Buthus sp. 'Vietnamese brown scorpion',Chinese swimming scorpion,Lychas mucronatus,bio/LychasMucronatus,,bio/Lychas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +172918,,,,,,,Tor,bio/Tor,,,,,, +173242,,"Salmo formosanus Jordan & Oshima, 1919",,Taiwan salmon,"Salmo formosanus, Oncorhynchus formosanus",Formosan land-locked salmon,Oncorhynchus masou formosanus,bio/OncorhynchusMasouFormosanus,,bio/OncorhynchusMasou,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +173307,,,,,,,Hemicaranx,bio/Hemicaranx,,,,,, +173308,,"Hemicaranx leucurus (Gunther, 1864)",,little jack,Caranx leucurus,yellowfin jack ,Hemicaranx leucurus,bio/HemicaranxLeucurus,,bio/Hemicaranx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +173330,,,,,,,Trachinotus,bio/Trachinotus,,,,,, +174268,,,,,,,Alcis,bio/Alcis,,,,,, +174269,,"Phalaena repandata Linnaeus, 1758",,mottled beauty,"Alcis repandatus, Phalaena repandata",mottled beauty moth,Alcis repandata,bio/AlcisRepandata,,bio/Alcis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +175116,,,,,,,Chloropsis,bio/Chloropsis,,,,,, +175439,,"Zebrasoma flavescens (Bennett, 1828)",,yellow sailfin tang,Acanthurus flavescens,yellow tang,Zebrasoma flavescens,bio/ZebrasomaFlavescens,,bio/Zebrasoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +175823,,Aceros Hodgson 1844,,,,,Aceros,bio/Aceros,,,,,, +175930,,"Loxia erythrina Pallas, 1770",,Karmingimpel,"Erythrina erythrina, Loxia erythrina",Common rosefinch,Carpodacus erythrinus,bio/CarpodacusErythrinus,,bio/Carpodacus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176013,,"Ara chloropterus Gray,GR, 1859",,green-winged macaw,Ara chloroptera,red-and-green macaw,Ara chloropterus,bio/AraChloropterus,,bio/Ara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176014,,"Psittacus macao Linnaeus, 1758",,red-blue-and-yellow macaw,Psittacus macao,Scarlet macaw,Ara macao,bio/AraMacao,,bio/Ara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176015,,"Psittacus solstitialis Linnaeus, 1758",,sun conure,"Aratinga solstitialis solstitialis, Psittacus solstitialis",sun parakeet,Aratinga solstitialis,bio/AratingaSolstitialis,,bio/Aratinga,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176038,,,,,,,Eolophus,bio/Eolophus,,,,,, +176039,,"Eolophus roseicapillus (Vieillot, 1817)",,rose-breasted cockatoo,Eolophus roseicapillus,galah,Eolophus roseicapilla,bio/EolophusRoseicapilla,,bio/Eolophus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176042,,,,,,,Nestor,bio/Nestor,,,,,, +176043,,"Psittacus meridionalis Gmelin, 1788",,New Zealand Kaka,Psittacus meridionalis,Kaka,Nestor meridionalis,bio/NestorMeridionalis,,bio/Nestor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176187,,"Tetraodon porphyreus Temminck & Schlegel, 1850",,namera-fugu,Tetraodon porphyreus,purple puffer,Takifugu porphyreus,bio/TakifuguPorphyreus,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176188,,"Takifugu poecilonotus (Temminck & Schlegel, 1850)",,komonfugu,"Tetraodon poecilonotus, Fugu poecilonotus",finepatterned puffer,Takifugu poecilonotus,bio/TakifuguPoecilonotus,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176316,,"Cicindela maritima Dejean, 1822",,coast tiger beetle,Cicindela (Cicindela) maritima,dune tiger beetle,Cicindela maritima,bio/CicindelaMaritima,,bio/Cicindela_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +176508,,"Makalata macrura (Wagner, 1842)",,long-tailed tree rat,Echimys macrurus,Long-tailed armored tree-rat,Makalata macrura,bio/MakalataMacrura,,bio/Makalata,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +177060,,"Takifugu vermicularis (Temminck & Schlegel, 1850)",,shosaifugu,"Tetraodon vermicularis, Fugu vermicularis",pear puffer,Takifugu vermicularis,bio/TakifuguVermicularis,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +177088,,,,,,,Maconellicoccus,bio/Maconellicoccus,,,,,, +177089,,"Maconellicoccus hirsutus (Green, 1908)",,pink mealybug,Phenacoccus hirsutus,hibiscus mealybug,Maconellicoccus hirsutus,bio/MaconellicoccusHirsutus,,bio/Maconellicoccus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +177184,,"Neoromicia brunneus (Thomas, 1880)",,dark-brown serotine,"Neoromicia brunnea, Eptesicus brunneus, Neoromicia bruneus",Dark-brown pipistrelle,Neoromicia brunneus,bio/NeoromiciaBrunneus,,bio/Neoromicia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +178292,,,,,,,Paragnetina,bio/Paragnetina,,,,,, +178293,,"Paragnetina media (Walker, 1852)",,embossed stone,Paragnetina sp. ROM 2010576 PMO014,embossed stonefly,Paragnetina media,bio/ParagnetinaMedia,,bio/Paragnetina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +179360,,,,,,,Carangoides,bio/Carangoides,,,,,, +179362,,"Caranx otrynter Jordan & Gilbert, 1883",,jurel chicuaca,Caranx otrynter,threadfin jack,Carangoides otrynter,bio/CarangoidesOtrynter,,bio/Carangoides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +179673,,,,,,,Diachrysia,bio/Diachrysia,,,,,, +179674,,"Phalaena chrysitis Linnaeus, 1758",,burnished brass,Phalaena chrysitis,burnished brass moth,Diachrysia chrysitis,bio/DiachrysiaChrysitis,,bio/Diachrysia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +180173,,,,,,,Cylindraspis,bio/Cylindraspis,,,,,, +180174,,"Testudo inepta Gunther, 1873",,saddle-backed Mauritius giant tortoise,Testudo inepta,Mauritius giant domed tortoise,Cylindraspis inepta,bio/CylindraspisInepta,,bio/Cylindraspis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +180214,,"Caloptenus spretus Walsh, 1866",,Rocky Mounatin locust,Caloptenus spretus,Rocky Mountain grasshopper,Melanoplus spretus,bio/MelanoplusSpretus,,bio/Melanoplus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181096,,"Corvus cornix Linnaeus, 1758",,Nebelkraehe,Corvus corone cornix,hooded crow,Corvus cornix,bio/CorvusCornix,,bio/Corvus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181099,,"Oriolus oriolus (Linnaeus, 1758)",,pirol,"Oriolus oriolus oriolus, Coracias oriolus",Eurasian golden-oriole,Oriolus oriolus,bio/OriolusOriolus,,bio/Oriolus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181118,,,,,,,Pseudopodoces,bio/Pseudopodoces,,,,,, +181119,,"Pseudopodoces humilis (Hume, 1871)",,Tibetan ground-jay,"Parus humilis, Pseudopoces humilis, Podoces humilis",Tibetan ground-tit,Pseudopodoces humilis,bio/PseudopodocesHumilis,,bio/Pseudopodoces,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181329,,,,,,,Hypsipyla,bio/Hypsipyla,,,,,, +181330,,"Magiria robusta Moore, 1886",,mahogany shoot borer,Magiria robusta,cedar tip moth,Hypsipyla robusta,bio/HypsipylaRobusta,,bio/Hypsipyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181392,,,,,,,Carapus,bio/Carapus,,,,,, +181398,,,,,,,Sirembo,bio/Sirembo,,,,,, +181399,,"Sirembo imberbis (Temminck & Schlegel, 1846)",,cusk-eel,Brotula imberbis,golden cusk,Sirembo imberbis,bio/SiremboImberbis,,bio/Sirembo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181421,,,,,,,Caulophryne,bio/Caulophryne,,,,,, +181422,,"Melanocetus pelagicus Brauer, 1902",,fanfin,Melanocetus pelagicus,fanfin anglerfish,Caulophryne pelagica,bio/CaulophrynePelagica,,bio/Caulophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181436,,,,,,,Ostichthys,bio/Ostichthys,,,,,, +181437,,"Ostichthys japonicus (Cuvier, 1829)",,Japanese squirrelfish,Myripristis japonicus,Japanese soldierfish,Ostichthys japonicus,bio/OstichthysJaponicus,,bio/Ostichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181442,,,,,,,Zenion,bio/Zenion,,,,,, +181443,,"Zenion japonicum Kamohara, 1934",,Japanese zenion,Zenion japonicus,Japanese dory,Zenion japonicum,bio/ZenionJaponicum,,bio/Zenion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +181473,,,,,,,Arcos,bio/Arcos,,,,,, +182256,,"Simia guariba Humboldt, 1812",,brown howler monkey,"Alouatta fusca, Simia guariba",howler monkey ,Alouatta guariba,bio/AlouattaGuariba,,bio/Alouatta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +182935,,,,,,,Mniotilta,bio/Mniotilta,,,,,, +182936,,"Motacilla varia Linnaeus, 1766",,black and white warbler,Motacilla varia,black-and-white warbler,Mniotilta varia,bio/MniotiltaVaria,,bio/Mniotilta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +182948,,"Setophaga Swainson, 1827",,,Dendroica,,Setophaga,bio/Setophaga,,,,,, +183176,,,,,,,Xiphocolaptes,bio/Xiphocolaptes,,,,,, +183177,,"Picus major Linnaeus, 1758",,great spotted woodpecker,"Dendrocopos major, Picoides major, Dryobates major, Picus major, Dendrocopus major",great rufous woodcreeper,Xiphocolaptes major,bio/XiphocolaptesMajor,,bio/Xiphocolaptes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +183652,,,,,,,Peprilus,bio/Peprilus,,,,,, +183653,,"Stromateus triacanthus Peck, 1804",,sheephead,"Stromateus triacanthus, Poronotus triacanthus",American butterfish,Peprilus triacanthus,bio/PeprilusTriacanthus,,bio/Peprilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +184238,,"Crocodylus palustris Lesson, 1831",,mugger crocodile,Crocodilus palustris,marsh crocodile,Crocodylus palustris,bio/CrocodylusPalustris,,bio/Crocodylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +184439,,,,,,,Centropristis,bio/Centropristis,,,,,, +184440,,"Centropristis striata (Linnaeus, 1758)",,black seabass,Labrus striatus,black sea bass,Centropristis striata,bio/CentropristisStriata,,bio/Centropristis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +184446,,,,,,,Pristigenys,bio/Pristigenys,,,,,, +184539,,"Crioceris duodecimpunctata (Linnaeus, 1758)",,twelve-spotted asparagus beetle,Crioceris duodecempunctata,spotted asparagus beetle,Crioceris duodecimpunctata,bio/CriocerisDuodecimpunctata,,bio/Crioceris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +184780,,"Mecistops cataphractus Cuvier, 1825",,Slender-snouted crocodile,Crocodylus cataphractus,African slender-snouted crocodile,Mecistops cataphractus,bio/MecistopsCataphractus,,bio/Mecistops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +185585,,,,,,,Crex,bio/Crex,,,,,, +185586,,"Rallus crex Linnaeus, 1758",,grass quail,Rallus crex,corn crake,Crex crex,bio/CrexCrex,,bio/Crex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +185747,,,,,,,Quietula,bio/Quietula,,,,,, +185748,,"Quietula y-cauda (Jenkins & Evermann, 1889)",,shadow goby,"Gillichthys y-cauda, Quietula ycauda",American shadow goby,Quietula y-cauda,bio/QuietulaYcauda,,bio/Quietula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +185749,,,,,,,Lythrypnus,bio/Lythrypnus,,,,,, +185875,,,,,,,Anisosticta,bio/Anisosticta,,,,,, +185876,,"Anisosticta novemdecimpunctata (Linnaeus, 1758)",,coccinelle des roseaux,"Anisosticta 19-punctata, water ladybird beetle",water ladybird,Anisosticta novemdecimpunctata,bio/AnisostictaNovemdecimpunctata,,bio/Anisosticta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +186211,,"Goniodes gigas (Taschenberg, 1879)",,large chicken louse,Goniocotes gigas,giant chicken louse,Goniodes gigas,bio/GoniodesGigas,,bio/Goniodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +186463,,,,,,,Ruditapes,bio/Ruditapes,,,,,, +186466,,,,,,,Mizuhopecten,bio/Mizuhopecten,,,,,, +186600,,"Rhynchophis boulengeri Mocquard, 1897",,Vietnamese longnose snake,Rhynchophis boulengeri,Rhinoceros ratsnake,Gonyosoma boulengeri,bio/GonyosomaBoulengeri,,bio/Gonyosoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +186601,,,,,,,Sonora,bio/Sonora,,,,,, +186990,,"Rhinolophus armiger Hodgson, 1835",,great leaf-nosed bat,Rhinolophus armiger,great roundleaf bat,Hipposideros armiger,bio/HipposiderosArmiger,,bio/Hipposideros,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +187007,,"Vespertilio fuliginosa Hodgson, 1835",,Eastern bent-winged bat,"Miniopterus schreibersii fuliginosus, Vespertilio fuliginosa",Japanese long-fingered bat,Miniopterus fuliginosus,bio/MiniopterusFuliginosus,,bio/Miniopterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +187414,,,,,,,Amblyospiza,bio/Amblyospiza,,,,,, +187415,,"Pyrrhula albifrons Vigors, 1831",,thick-billed weaver,Pyrrhula albifrons,grosbeak weaver,Amblyospiza albifrons,bio/AmblyospizaAlbifrons,,bio/Amblyospiza,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +188106,,,,,,,Cetoscarus,bio/Cetoscarus,,,,,, +188107,,"Scarus bicolor Ruppell, 1829",,bicolour parrotfish,Scarus bicolor,bicolor parrotfish,Cetoscarus bicolor,bio/CetoscarusBicolor,,bio/Cetoscarus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +188113,,,,,,,Hipposcarus,bio/Hipposcarus,,,,,, +188374,,,,,,,Ardeola,bio/Ardeola,,,,,, +188380,,"Ixobrychus cinnamomeus (J. F. Gmelin, 1789)",,chestnut bittern,Ardea cinnamomea,cinnamon bittern,Ixobrychus cinnamomeus,bio/IxobrychusCinnamomeus,,bio/Ixobrychus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +188567,,,,,,,Aselliscus,bio/Aselliscus,,,,,, +188568,,"Aselliscus stoliczkanus (Dobson, 1871)",,Stoliczka's Asian trident bat,Asellia stoliczkana,Stoliczka's trident bat,Aselliscus stoliczkanus,bio/AselliscusStoliczkanus,,bio/Aselliscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +188718,,,,,Megalamphodus,,Hyphessobrycon,bio/Hyphessobrycon,,,,,, +188763,PoHV-4,,,,"Pongine herpesvirus 4, Panine herpesvirus 2",Chimpanzee cytomegalovirus,Panine betaherpesvirus 2,bio/PanineBetaherpesvirus2,dcs:BiologicalHostVertebrates,bio/CytomegalovirusPaninebeta2,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +189497,,,,,,,Echidna,bio/Echidna,,,,,, +189919,,,,,,,Pseudacris,bio/Pseudacris,,,,,, +189921,,,,,,,Saurenchelys,bio/Saurenchelys,,,,,, +189922,,"Saurenchelys fierasfer (Jordan & Snyder, 1901)",,bucktail duckbill,Chlopsis fierasfer,blacktail buckbill eel,Saurenchelys fierasfer,bio/SaurenchelysFierasfer,,bio/Saurenchelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +190368,,,,,,,Xanthorhoe,bio/Xanthorhoe,,,,,, +190369,,"Phalaena ferrugata Clerck, 1759",,red twin-spot,Phalaena ferrugata,dark-barred twin-spot carpet,Xanthorhoe ferrugata,bio/XanthorhoeFerrugata,,bio/Xanthorhoe,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +190476,,"Crocodylus latirostris Daudin, 1802",,brown-snouted caiman,"Alligator latirostris, Crocodilus latirostris, Crocodylus latirostris, Jacare latirostris",Broad-snouted caiman,Caiman latirostris,bio/CaimanLatirostris,,bio/Caiman,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191198,,"Rhacophorus oxycephalus Boulenger, 1900",,Hainan stream treefrog,"Rhacophorus oxycephalus, Polypedates oxycephalus, Hylorana oxycephalus, Buergeria ocycephalus, Rana oxycephalus",red-headed flying frog,Buergeria oxycephala,bio/BuergeriaOxycephala,,bio/Buergeria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191206,,"Theloderma asperum (Boulenger, 1886)",,white-banded small treefrog,"Rhacophorus (Philautus) asperrimus, Philautus asper, Rhacophorus asperrimus, Philautus asperrimus, Ixalus asper",hill garden bug-eyed frog,Theloderma asperum,bio/ThelodermaAsperum,,bio/Theloderma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191398,,"Papilio selene Denis & Schiffermuller, 1775",,small pearl-bordered fritillary,"Clossiana selene, Papilio selene",silver meadow fritillary,Boloria selene,bio/BoloriaSelene,,bio/Clossiana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191473,,"Discoglossus montalentii Lanza, Nascetti, Capula, and Bullini, 1984",,Corsica painted frog,Discoglossus montalenti,Corsican painted frog,Discoglossus montalentii,bio/DiscoglossusMontalentii,,bio/Discoglossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191474,,"Discoglossus sardus Tschudi, 1837",,Sardinia painted frog,"Discoglossus pictus var. sardus, Rana sardus, Pseudes sardus, Discoglossus pictus sardus",Tyrrhenian painted frog,Discoglossus sardus,bio/DiscoglossusSardus,,bio/Discoglossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191476,,"Pelodytes caucasicus Boulenger, 1896",,Caucasian parsley frog,Pelodytes punctatus caucasicus,Caucasus parsley frog,Pelodytes caucasicus,bio/PelodytesCaucasicus,,bio/Pelodytes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191477,,"Pelobates fuscus (Laurenti, 1768)",,garlic toad,"Rana fusca, Bufo fuscus, Bombinator fuscus, Bombina fusca",common spadefoot toad,Pelobates fuscus,bio/PelobatesFuscus,,bio/Pelobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191716,,"Phalaena rosana Linnaeus, 1758",,tordeuse des buissons,"Archips rosanus, Phalaena rosana",European leafroller,Archips rosana,bio/ArchipsRosana,,bio/Archips,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191812,,,,,,,Somniosus,bio/Somniosus,,,,,, +191813,,"Squalus microcephalus Bloch & Schneider, 1801",,Greenland shark,Squalus microcephalus,Greenland sleeper shark,Somniosus microcephalus,bio/SomniosusMicrocephalus,,bio/Somniosus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +191873,,"Thylamys pusillus (Desmarest, 1804)",,Common fat-tailed opossum,"Thylamys pusilla, Didelphis pusilla",Common fat-tailed mouse opossum,Thylamys pusillus,bio/ThylamysPusillus,,bio/ThylamysPusillusSpeciesComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +191975,,,,,,,Paralucia,bio/Paralucia,,,,,, +191976,,"Lucia pyrodiscus Doubleday, 1847",,Eltham copper,Lucia pyrodiscus,dull copper,Paralucia pyrodiscus,bio/ParaluciaPyrodiscus,,bio/Paralucia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +192188,,"Laspeyresia molesta Busck, 1916",,oriental peach moth,"Cydia molesta, Laspeyresia molesta",oriental fruit moth,Grapholita molesta,bio/GrapholitaMolesta,,bio/Grapholita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +192190,,"Pandemis Hubner, 1825",,,,,Pandemis,bio/Pandemis,,,,,, +192191,,"Tortrix heparana Denis & Schiffermuller, 1775",,dark fruit-tree tortrix,Tortrix heparana,apple brown tortrix,Pandemis heparana,bio/PandemisHeparana,,bio/Pandemis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +192206,,,,,,,Callaeas,bio/Callaeas,,,,,, +192207,,"Glaucopis cinerea Gmelin, 1788",,kokako,"Glaucopis cinerea cinerea, Callaeas cinerea, Glaucopis cinerea",South Island kokako,Callaeas cinereus,bio/CallaeasCinereus,,bio/Callaeas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +192592,,,,,,,Erpeton,bio/Erpeton,,,,,, +192593,,"Erpeton tentaculatum LaCepede, 1800",,tentacled snake,Herpeton tentaculatum,tentacle snake,Erpeton tentaculatum,bio/ErpetonTentaculatum,,bio/Erpeton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +192736,,"Scinax Wagler, 1830",,,,snouted treefrogs,Scinax,bio/Scinax,,,,,, +192744,,,,,,glass frogs ,Hyalinobatrachium,bio/Hyalinobatrachium,,,,,, +192752,,,,,,,Lithobates,bio/Lithobates,,,,,, +194199,,"Pseudacris ocularis (Bosc & Daudin, 1801)",,least tree frog,"Hyla ocularis, Hylodes ocularis",little grass frog,Pseudacris ocularis,bio/PseudacrisOcularis,,bio/Pseudacris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +194917,,"Ceratitis cosyra (Walker, 1849)",,Marula fly,"Ceratitis (Ceratalaspis) cosyra, Pardalaspis cosyra",mango fruit fly,Ceratitis cosyra,bio/CeratitisCosyra,,bio/Ceratalaspis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +195315,,,,,,,Narcine,bio/Narcine,,,,,, +195593,,,,,,,Ancylopsetta,bio/Ancylopsetta,,,,,, +195595,,,,,,,Aseraggodes,bio/Aseraggodes,,,,,, +195596,,"Solea kobensis Steindachner, 1896",,Kobe sole,"Solea kobensis, Solea (Achirus) kobensis",milky spotted sole,Aseraggodes kobensis,bio/AseraggodesKobensis,,bio/Aseraggodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +195651,,"Symphurus Rafinesque, 1810",,,,,Symphurus,bio/Symphurus,,,,,, +195653,,"Symphurus plagusia (Bloch & Schneider, 1801)",,drab tonguefish,Pleuronectes plagusia,duskycheek tonguefish,Symphurus plagusia,bio/SymphurusPlagusia,,bio/Symphurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +195821,,"Cobitis anableps Linnaeus, 1758",,four eyed fish,Cobitis anableps,largescale foureyes,Anableps anableps,bio/AnablepsAnableps,,bio/Anableps,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +196249,,,,,,,Antaresia,bio/Antaresia,,,,,, +196387,,"Notamacropus irma (Jourdan, 1837)",,black glove wallaby,"Macropus irma, Halmaturus irma",western bush wallaby,Notamacropus irma,bio/NotamacropusIrma,,bio/Notamacropus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +196770,,"Moxostoma macrolepidotum (Lesueur, 1817)",,northern redhorse,Catostomus macrolepidotus,shorthead redhorse,Moxostoma macrolepidotum,bio/MoxostomaMacrolepidotum,,bio/Moxostoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +196774,,"Ptychostomus pappillosus Cope, 1870",,suckermouth redhorse,Ptychostomus pappillosus,v-lip redhorse,Moxostoma pappillosum,bio/MoxostomaPappillosum,,bio/Moxostoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +196781,,"Scartomyzon austrinus (Bean, 1880)",,Mexican jumprock,Scartomyzon austrinus,Mexican redhorse,Moxostoma austrinum,bio/MoxostomaAustrinum,,bio/Moxostoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +197464,,"Hyla callidryas (Cope, 1862)",,red-eyed treefrog,"Hyla callidryas, Phyllomedusa callidryas",red-eyed leaf frog,Agalychnis callidryas,bio/AgalychnisCallidryas,,bio/Agalychnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +198026,,,,,,,Melanitta,bio/Melanitta,,,,,, +198027,,"Melanitta nigra (Linnaeus, 1758)",,common scoter,"Oidemia nigra, Anas nigra",European common scoter,Melanitta nigra,bio/MelanittaNigra,,bio/Melanitta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +198323,,"Cinara tujafilina (Del Guercio, 1909)",,thuja aphid,"Cinara (Cupressobium) tujafilina, Lachniella tujafilina",cypress pine aphid,Cinara tujafilina,bio/CinaraTujafilina,,bio/Cinara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +198633,,,,,,,Eristalis,bio/Eristalis,,,,,, +198635,,"Musca tenax Linnaeus, 1758",,rat-tailed maggot,Musca tenax,drone fly,Eristalis tenax,bio/EristalisTenax,,bio/Eristalis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +198938,,"Emberiza belli Cassin, 1850",,Bell's sparrow,"Amphispiza belli, Emberiza belli",sage sparrow,Artemisiospiza belli,bio/ArtemisiospizaBelli,,bio/Artemisiospiza,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +201800,,,,,,,Pantherophis,bio/Pantherophis,,,,,, +201991,,"Syrnium occidentale Xantus, 1860",,,"Ciccaba occidentalis, Syrnium occidentale",Spotted owl,Strix occidentalis,bio/StrixOccidentalis,,,,,, +201992,,"Syrnium occidentale lucidum Nelson, 1903",,mountain spotted owl,Syrnium occidentale lucidum,Mexican spotted owl,Strix occidentalis lucida,bio/StrixOccidentalisLucida,,bio/StrixOccidentalis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +202063,,"Notothenia neglecta Nybelin, 1951",,Antarctic yellowbelly rockcod,"Notothenia coriiceps neglecta, Notothenia neglecta neglecta",yellowbelly rockcod ,Notothenia neglecta,bio/NototheniaNeglecta,,bio/Notothenia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +202455,,,,,,,Aulacorthum,bio/Aulacorthum,,,,,, +202456,,"Aulacorthum solani (Kaltenbach, 1843)",,foxglove aphid,Acyrthosiphon solani,potato aphid ,Aulacorthum solani,bio/AulacorthumSolani,,bio/Aulacorthum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +202595,,,,,,,Pteragogus,bio/Pteragogus,,,,,, +202839,,"Pachydactylus wahlbergii Peters, 1869",,Kalahari ground gecko,"Colopus wahlbergii, Colopus wahlbergi",Wahlberg's Kalahari gecko,Pachydactylus wahlbergii,bio/PachydactylusWahlbergii,,bio/Pachydactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +203116,,"Schizothorax curvifrons Heckel, 1838",,Satter gaad,"Schizocypris curvifrons, Schizopyge curvifrons",Sattar snowtrout,Schizothorax curvifrons,bio/SchizothoraxCurvifrons,,bio/Schizothorax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +203276,,,,,,,Aboma,bio/Aboma,,,,,, +203277,,"Aboma etheostoma Jordan & Starks, 1895",,scaly boy,Gobiosoma etheostoma,scaly goby,Aboma etheostoma,bio/AbomaEtheostoma,,bio/Aboma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +203558,,"Turdus grayi Bonaparte, 1838",,Yigirro,Turdus grayii,Clay-colored Robin,Turdus grayi,bio/TurdusGrayi,,bio/Turdus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +203786,,,,,,,Bradypterus,bio/Bradypterus,,,,,, +204813,,,,,,,Lagocephalus,bio/Lagocephalus,,,,,, +204814,,"Tetrodon lunaris Bloch & Schneider, 1801",,green rough-backed puffer,"Gastrophysus lunaris, Sphoerodon lunaris, Tetrodon lunaris",lunartail puffer,Lagocephalus lunaris,bio/LagocephalusLunaris,,bio/Lagocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +204942,,"Sacalia bealei (Gray, 1831)",,Beal's four-eyed turtle,"Cistuda bealei, Clemmys bealii",Beal's-eyed turtle,Sacalia bealei,bio/SacaliaBealei,,bio/Sacalia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +204965,,"Cuora flavomarginata (Gray, 1863)",,snake-eating turtle,"Cistoclemmys flavomarginata, Cyclemys flavomarginata",Chinese box turtle,Cuora flavomarginata,bio/CuoraFlavomarginata,,bio/Cuora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +204968,,"Cuora galbinifrons Bourret, 1939",,Vietnamese box turtle,Cistoclemmys galbinifrons,flowerback box turtle,Cuora galbinifrons,bio/CuoraGalbinifrons,,bio/Cuora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +204969,,,,,,,Pelodiscus,bio/Pelodiscus,,,,,, +205083,,,,,,,Dreissena rostriformis,bio/DreissenaRostriformis,,,,,, +205123,,"Ophicephalus marulius Hamilton, 1822",,giant snakehead,"Ophicephalus marulius, Channa marulia",great snakehead,Channa marulius,bio/ChannaMarulius,,bio/Channa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +205131,,,,,,,Mystus,bio/Mystus,,,,,, +205595,,"Genetta rubiginosa Pucheran, 1855",,rusty-spotted genet,Genetta rubiginosa,panther genet,Genetta maculata,bio/GenettaMaculata,,bio/Genetta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +206143,,"Stromateus argenteus Euphrasen, 1788",,zobaidy,"Pampus nozawae, Ishikawa nozawae, Stromateoides argenteus, Stromateus argenteus",silver pomfret,Pampus argenteus,bio/PampusArgenteus,,bio/Pampus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +206427,,"Sitophilus linearis Hustache, 1930",,tamarind seed borer,"Calandra (Sitophilus) linearis, Calandra linearis",tamarind weevil,Sitophilus linearis,bio/SitophilusLinearis,,bio/Sitophilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +206429,,,,,,,Rhabdalestes,bio/Rhabdalestes,,,,,, +208071,,"Motacilla cantillans Pallas, 1764",,subalpine warbler,"Sylvia cantillans, Motacilla cantillans",Eastern subalpine warbler,Curruca cantillans,bio/CurrucaCantillans,,bio/Curruca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +209165,,,,,,,Ompok,bio/Ompok,,,,,, +209478,,"Pseudophilautus femoralis (Guenther, 1864)",,plain green bush frog,"Kirtixalus femoralis, Ixalus femoralis, Philautus femoralis",southwestern bubble-nest frog,Pseudophilautus femoralis,bio/PseudophilautusFemoralis,,bio/Pseudophilautus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +209479,,"Hyla aurifasciata Kuhl & Van Hasselt, 1822",,gold striped tree frog,"Hyla aurifasciatus, Rhacophorus (Philautus) aurifasciatus, Ixalus aurifasciatus, Rhacophorus aurifasciatus, Hyla aurifasciata, Orchestes aurifasciatus",Java bubble-nest frog,Philautus aurifasciatus,bio/PhilautusAurifasciatus,,bio/Philautus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +209480,,"Ixalus signatus Boulenger, 1882",,quartet bush frog,"Pseudophilautus signatus, Philautus signatus, Ixalus signatus",Boulenger's bubble-nest frog,Raorchestes signatus,bio/RaorchestesSignatus,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +209678,,"Proceratophrys Miranda-Ribeiro, 1920",,,,,Proceratophrys,bio/Proceratophrys,,,,,, +209679,,"Proceratophrys boiei (Wied-Neuwied, 1824)",,Bahaia smooth horned frog,"Ceratophrys dorsata boiei, Stombus bojei, Stombus boiei, Ceratophrys boiei",Bioe's frog,Proceratophrys boiei,bio/ProceratophrysBoiei,,bio/Proceratophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +209680,,,,,,,Eupsophus,bio/Eupsophus,,,,,, +210138,,,,,,,Eleutheronema,bio/Eleutheronema,,,,,, +210139,,"Polynemus tetradactylus Shaw, 1804",,blue threadfin,Polynemus tetradactylus,Indian salmon,Eleutheronema tetradactylum,bio/EleutheronemaTetradactylum,,bio/Eleutheronema,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +210202,,"Zhangixalus schlegelii (Gunther, 1858)",,shureger frog,Polypedates schlegelii,Japanese gliding frog,Zhangixalus schlegelii,bio/ZhangixalusSchlegelii,,bio/Zhangixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +210409,,"Portunus trituberculatus (Miers, 1876)",,Japanese blue crab,"Neptunus trituberculatus, Portunus (Portunus) trituberculatus",swimming crab,Portunus trituberculatus,bio/PortunusTrituberculatus,,bio/Portunus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +210425,,,,,,,Proteus ,bio/Proteus_Salamanders,,,,,, +210570,,,,,,,Microstoma ,bio/Microstoma_BonyFishes,,,,,, +210572,,"Parachela Steindachner, 1881",,,,,Parachela ,bio/Parachela_BonyFishes,,,,,, +210578,,,,,,,Centropogon ,bio/Centropogon_BonyFishes,,,,,, +210581,,,,,,,Gouania ,bio/Gouania_BonyFishes,,,,,, +210590,,,,,,,Ophidion ,bio/Ophidion_BonyFishes,,,,,, +210591,,,,,,,Scuticaria ,bio/Scuticaria_BonyFishes,,,,,, +210628,,,,,,,Macrognathus,bio/Macrognathus,,,,,, +211510,,"Thectocercus acuticaudatus (Vieillot, 1818)",,sharp-tailed conure,"Psittacara acuticaudatus, Psittacara acuticaudatus (Vieillot, 1818)",Blue-crowned parakeet,Thectocercus acuticaudatus,bio/ThectocercusAcuticaudatus,,bio/Thectocercus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +211679,,"Crax pipile von Jacquin, 1784",,common piping guan,"Aburria pipile, Crax pipile",Trinidad piping guan,Pipile pipile,bio/PipilePipile,,bio/Pipile,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +211967,,"Centrocercus minimus Young, Braun, Oyler-McCance, Hupp & Quinn, 2000",,Gunnison sage grouse,Centrocercus urophasianus minimus,Gunnison sage-grouse,Centrocercus minimus,bio/CentrocercusMinimus,,bio/Centrocercus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +212358,,"Hypsiboas albomarginatus (Spix, 1824)",,white-edged treefrog,"Hypsiboas albomarginatus, Hyla albomarginata, Hypsiboas albomarginata",white-banded tree frog,Boana albomarginata,bio/BoanaAlbomarginata,,bio/Boana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +213803,,"Trachycephalus venulosus (Laurenti, 1768)",,warty tree frog,Phrynohyas venulosa,veined treefrog,Trachycephalus venulosus,bio/TrachycephalusVenulosus,,bio/Trachycephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +213858,,"Coluber sauromates Pallas, 1811",,Eastern four-line ratsnake,"Coluber quatuorlineatus sauromates, Elaphe quatuorlineata sauromates, Coluber sauromates",Sarmatian rat snake,Elaphe sauromates,bio/ElapheSauromates,,bio/Elaphe,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214017,,"Acronycta dactylina Grote, 1874",,fingered dagger moth,Acronycta dactylina,alder dagger moth,Acronicta dactylina,bio/AcronictaDactylina,,bio/Acronicta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214018,,"Acronycta hasta Guenee, 1852",,speared dagger moth,Acronycta hasta,cherry dagger moth,Acronicta hasta,bio/AcronictaHasta,,bio/Acronicta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214130,,"Euchaetes Harris, 1841",,,,,Euchaetes,bio/Euchaetes,,,,,, +214131,,"Phalaena egle Drury, 1773",,milkweed moth,Phalaena egle,milkweed tussock moth,Euchaetes egle,bio/EuchaetesEgle,,bio/Euchaetes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214132,,,,,,,Eulithis,bio/Eulithis,,,,,, +214133,,"Petrophora diversilineata Hubner, 1813",,grapevine looper,Petrophora diversilineata,lesser grapevine looper,Eulithis diversilineata,bio/EulithisDiversilineata,,bio/Eulithis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214156,,"Grammia virguncula (Kirby, 1837)",,little virgin moth,"Callimorpha virguncula, Grammia virguncula",little virgin tiger moth,Apantesis virguncula,bio/ApantesisVirguncula,,bio/Apantesis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214160,,"Haploa Hubner, 1820",,,,,Haploa,bio/Haploa,,,,,, +214161,,"Haploa confusa (Lyman, 1887)",,Lyman's haploa,Callimorpha confusa,confused haploa,Haploa confusa,bio/HaploaConfusa,,bio/Haploa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214170,,,,,,,Hydraecia,bio/Hydraecia,,,,,, +214171,,"Phalaena micacea Esper, 1789",,potato stem borer,Phalaena micacea,rosy rustic,Hydraecia micacea,bio/HydraeciaMicacea,,bio/Hydraecia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214181,,"Phalaena lupulina Linnaeus, 1758",,garden swift moth,"Phalaena lupulina, Korscheltellus lupulina, Pharmacis lupulina",common swift moth,Korscheltellus lupulinus,bio/KorscheltellusLupulinus,,bio/Korscheltellus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214293,,"Taeniocampa revicta Morrison, 1876",,subdued quaker,Taeniocampa revicta,rusty whitesided caterpillar,Orthosia revicta,bio/OrthosiaRevicta,,bio/Orthosia_Moths,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214331,,"Pyrrharctia Packard, 1864",,,,,Pyrrharctia,bio/Pyrrharctia,,,,,, +214332,,"Phalaena isabella Smith, 1797",,Isabella tiger moth,Phalaena isabella,woolly bear,Pyrrharctia isabella,bio/PyrrharctiaIsabella,,bio/Pyrrharctia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214365,,"Spilosoma Curtis, 1825",,,,,Spilosoma,bio/Spilosoma,,,,,, +214366,,"Spilosoma virginicum (Fabricius, 1798)",,yellow bear,"Spilosoma virginica, Bombyx virginica",Virginian tiger moth,Spilosoma virginicum,bio/SpilosomaVirginicum,,bio/Spilosoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214430,,,,,,,Scortum,bio/Scortum,,,,,, +214431,,"Therapon barcoo McCulloch & Waite, 1917",,jade perch,Therapon barcoo,barcoo grunter,Scortum barcoo,bio/ScortumBarcoo,,bio/Scortum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214449,,"Crocidura olivieri (Lesson, 1827)",,African giant shrew,"Crocidura occidentalis, Crocidura oliveri",Olivier's shrew,Crocidura olivieri,bio/CrociduraOlivieri,,bio/Crocidura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +214486,,"Sebastes schlegelii Hilgendorf, 1880",,Korean rockfish,Sebastes schlegeli,Schlegel's black rockfish,Sebastes schlegelii,bio/SebastesSchlegelii,,bio/Sebastes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +214687,,Musa acuminata var. malaccensis (Ridl.) Nasution,,true apple banana,Musa acuminata var. malaccensis,wild Malaysian banana,Musa acuminata subsp. malaccensis,bio/MusaAcuminataSubspMalaccensis,,bio/MusaAcuminata,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +215328,,,,,,,Halieutaea,bio/Halieutaea,,,,,, +215329,,"Lophius stellatus Vahl, 1797",,starry seabat,Lophius stellatus,batfish,Halieutaea stellata,bio/HalieutaeaStellata,,bio/Halieutaea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +215336,,"Atherinomorus lacunosus (Forster, 1801)",,hardyhead silverside,"Atherina lacunosa, Atherina punctata, Atherinomorus capricornensis, Atherina lacunosus, Atherinomorus lacunosus, Atherinam lacunosam",wide-banded hardyhead silverside,Atherinomorus lacunosus,bio/AtherinomorusLacunosus,,bio/Atherinomorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +215357,,,,,Pseudosciaena,,Larimichthys,bio/Larimichthys,,,,,, +215358,,"Sciaena crocea Richardson, 1846",,croceine croaker,"Pseudosciaena amblyceps, Sciaena crocea, Pseudosciaena crocea",large yellow croaker,Larimichthys crocea,bio/LarimichthysCrocea,,bio/Larimichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +215380,,,,,,,Parapercis,bio/Parapercis,,,,,, +215402,,"Ophiocephalus argus Cantor, 1842",,snakehead,"Ophicephalus argus, Ophiocephalus argus",northern snakehead,Channa argus,bio/ChannaArgus,,bio/Channa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +215440,,"Ommastrephes sloanii Gray, 1849",,arrow squid,"Ommastrephes sloani, Ommastrephes sloanii, Nototodarus sloani",Sloane's squid,Nototodarus sloanii,bio/NototodarusSloanii,,bio/Nototodarus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +216193,,"Sylvia communis Latham, 1787",,Common whitethroat,Sylvia communis,greater whitethroat,Curruca communis,bio/CurrucaCommunis,,bio/Curruca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +217619,,Cucumis melo var. agrestis Naudin,,,"Cucumis melo subsp. melo f. agrestis, Cucumis melo var. agrestis, Cucumis callosus",,Cucumis melo subsp. agrestis,bio/CucumisMeloSubspAgrestis,,,,,, +217634,,Anoplophora nobilis Ganglbauer 1890,,Asian long-horn beetle,"Anoplophora nobilis, Melanauster nobilis, Cerosterna glabripennis",Asian longhorned beetle,Anoplophora glabripennis,bio/AnoplophoraGlabripennis,,bio/Anoplophora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +218470,,,,,,,Philoria,bio/Philoria,,,,,, +218474,,"Philoria kundagungan (Ingram & Corben, 1975)",,red tunnel frog,"Kyarranus kundagungan, Coplandia kundagungan",mountain frog,Philoria kundagungan,bio/PhiloriaKundagungan,,bio/Philoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +218713,,,,,,"swifts ",Borbo,bio/Borbo,,,,,, +218714,,"Hesperia cinnara Wallace, 1866",,Formosan swift,Hesperia cinnara,rice swift,Borbo cinnara,bio/BorboCinnara,,bio/Borbo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +218719,,,,,,,Carterocephalus,bio/Carterocephalus,,,,,, +218720,,"Papilio palaemon Pallas, 1771",,chequered skipper,Papilio palaemon,Arctic skipper,Carterocephalus palaemon,bio/CarterocephalusPalaemon,,bio/Carterocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +218734,,,,,,,Hesperia,bio/Hesperia,,,,,, +218743,,,,,,,Ochlodes,bio/Ochlodes,,,,,, +218747,,,,,,,Pelopidas,bio/Pelopidas,,,,,, +218750,,"Hesperia mathias Fabricius, 1798",,lesser millet swift,Hesperia mathias,small branded swift,Pelopidas mathias,bio/PelopidasMathias,,bio/Pelopidas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +219332,,,,,,,Euclea ,bio/Euclea_Moths,,,,,, +219333,,"Euclea delphinii (Gray, 1832)",,spiny oak slug moth,Limacodes delphinii,spiny oak slug,Euclea delphinii,bio/EucleaDelphinii,,bio/Euclea_Moths,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +219593,,"Anas ferina Linnaeus, 1758",,pochard,Anas ferina,common pochard,Aythya ferina,bio/AythyaFerina,,bio/Aythya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +220671,,,,,,,Plenodomus lingam/Leptosphaeria maculans species complex,bio/PlenodomusLingamleptosphaeriaMaculansSpeciesComplex,,,,,, +220781,,,,,,,Glaphyromorphus,bio/Glaphyromorphus,,,,,, +221568,,"Proteus anguinus Laurenti, 1768",,white salamander,"Apneumona anguina, Caledon anguinus, Hypochthon anguinus",olm,Proteus anguinus,bio/ProteusAnguinus,,bio/Proteus_Salamanders,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +221865,,,,,,,Jenkinsia,bio/Jenkinsia,,,,,, +221866,,"Jenkinsia lamprotaenia (Gosse, 1851)",,dwarf herring,"Jenkinsia sp. BOLD:AAA7900, Clupea lamprotaenia",dwarf round herring,Jenkinsia lamprotaenia,bio/JenkinsiaLamprotaenia,,bio/Jenkinsia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +221904,,,,,Ophyra,,Hydrotaea,bio/Hydrotaea,,,,,, +221905,,"Ophyra aenescens (Wiedemann, 1830)",,dump fly,Ophyra aenescens,black dump fly,Hydrotaea aenescens,bio/HydrotaeaAenescens,,bio/Hydrotaea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +223138,,"Canthigaster Swainson, 1839",,,,,Canthigaster,bio/Canthigaster,,,,,, +223772,,,,,,,Geranoaetus,bio/Geranoaetus,,,,,, +223773,,"Spizaetus melanoleucus Vieillot, 1819",,black-and-white hawk-eagle,"Spizastur melanoleucus, Spizaetus melanoleucus, Spizastur melanoleucus (Vieillot, 1816)",black-chested buzzard-eagle,Geranoaetus melanoleucus,bio/GeranoaetusMelanoleucus,,bio/Geranoaetus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +223805,,"Synagrops japonicus (non Gunther, 1859)",,Japanese splitfin,Melanostoma japonicum,blackmouth cardinalfish,Synagrops japonicus,bio/SynagropsJaponicus,,bio/Synagrops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +223891,,"Solanum xanthocarpum Schrad., 1795",,yellow-fruit nightshade,"Solanum surattense, Solanum xanthocarpum, Solanum ferox Burm.f., 1768",eggplant,Solanum virginianum,bio/SolanumVirginianum,,bio/Solanum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +224340,,"Xenopus epitropicalis Fischberg, Colombelli & Picard, 1982",,southern tropical platanna,"Xenopus (Silurana) epitropicalis, Silurana epitropicalis",Cameroon clawed frog,Xenopus epitropicalis,bio/XenopusEpitropicalis,,bio/Silurana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +224704,,,,,,,Harengula,bio/Harengula,,,,,, +224706,,,,,,,Brevoortia,bio/Brevoortia,,,,,, +224708,,"Clupea tyrannus Latrobe, 1802",,mossbunker,Clupea tyrannus,Atlantic menhaden,Brevoortia tyrannus,bio/BrevoortiaTyrannus,,bio/Brevoortia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +224715,,,,,,,Etrumeus,bio/Etrumeus,,,,,, +224716,,"Etrumeus teres (DeKay, 1842)",,round herring,"Clupea sadina, Etrumeus sadina, Alosa teres",red-eye round herring,Etrumeus teres,bio/EtrumeusTeres,,bio/Etrumeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +224717,,,,,,,Anchoa,bio/Anchoa,,,,,, +224718,,"Engraulis mitchilli Valenciennes, 1848",,common anchovy,Engraulis mitchilli,bay anchovy,Anchoa mitchilli,bio/AnchoaMitchilli,,bio/Anchoa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +225060,,"Micropterus punctulatus (Rafinesque, 1819)",,spotted blackbass,Calliurus punctulatus,spotted bass,Micropterus punctulatus,bio/MicropterusPunctulatus,,bio/Micropterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +225117,,"Pyrus x bretschneideri Rehder, 1915",,bai li,Pyrus bretschneideri,Chinese white pear,Pyrus x bretschneideri,bio/PyrusXBretschneideri,,bio/Pyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +225336,,"Alaus Eschscholtz, 1829",,,,,Alaus,bio/Alaus,,,,,, +225337,,"Alaus myops (Fabricius, 1801)",,small-eyed click beetle,Elater myops,blind click beetle,Alaus myops,bio/AlausMyops,,bio/Alaus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +225390,,"Lepomis miniatus (Jordan, 1877)",,redspotted miniatus,Lepiopomus miniatus,redspotted sunfish,Lepomis miniatus,bio/LepomisMiniatus,,bio/Lepomis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +225391,,"Micropterus floridanus (Lesueur, 1822)",,Florida largemouth bass,"Cichla floridana, Micropterus floridanus floridanus, Micropterus salmoides floridanus, Micropetrus salmoides floridanus",Florida bass,Micropterus floridanus,bio/MicropterusFloridanus,,bio/Micropterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +226820,,,,,,,Ratufa,bio/Ratufa,,,,,, +226889,,"Triton poireti Gervais, 1835",,Algerian salamander,"Triturus poireti, Triton poireti",Algerian ribbed newt,Pleurodeles poireti,bio/PleurodelesPoireti,,bio/Pleurodeles,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +227460,,"Aspidonectes asper Agassiz, 1857",,Gulf Coast spiny softshell turtle,Aspidonectes asper,Gulf Coast spiny softshell,Apalone spinifera aspera,bio/ApaloneSpiniferaAspera,,bio/ApaloneSpinifera,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +227977,,,,,,,Macrodon,bio/Macrodon,,,,,, +227978,,"Macrodon ancylodon (Bloch & Schneider, 1801)",,rock salmon,Lonchurus ancylodon,yellow mouth salmon,Macrodon ancylodon,bio/MacrodonAncylodon,,bio/Macrodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228010,,,,,,,Lampides,bio/Lampides,,,,,, +228011,,"Papilio boeticus Linnaeus, 1767",,pea-pod argus,Papilio boeticus,pea blue,Lampides boeticus,bio/LampidesBoeticus,,bio/Lampides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228029,,"Unio kienerianus Lea, 1852",,Alabama orb,"Amphinaias kieneriana, Unio kienerianus, Quadrula asperata, Cyclonaias asperata, Quadrula kieneriana",Coosa orb,Cyclonaias kieneriana,bio/CyclonaiasKieneriana,,bio/Cyclonaias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228088,,,,,Rotundaria,,Cyclonaias,bio/Cyclonaias,,,,,, +228306,,"Motacilla cyane Pallas, 1776",,Siberian blue chat,"Erithacus cyane, Luscinia cyane, Motacilla cyane",siberian blue robbin,Larvivora cyane,bio/LarvivoraCyane,,bio/Larvivora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228420,,"Cystignathus melanonotus Hallowell, 1861",,Sabinal frog,Cystignathus melanonotus,black-backed frog,Leptodactylus melanonotus,bio/LeptodactylusMelanonotus,,bio/Leptodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228422,,"Pristimantis ridens (Cope, 1866)",,Rio San Juan robber frog,"Eleutherodactylus ridens, Phyllobates ridens",pygmy robber frog,Pristimantis ridens,bio/PristimantisRidens,,bio/Pristimantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228425,,"Eleutherodactylus pantoni Dunn, 1926",,western yellow-bellied eleuth,Euhyas pantoni,western yellow-bellied robber frog,Eleutherodactylus pantoni,bio/EleutherodactylusPantoni,,bio/Euhyas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228429,,"Hylodes augusti Duges, 1879",,robber frog,"Eleutherodactylus augusti, Hylodes augusti, Hylactophryne augustii, Hylactophryne augusti",barking frog,Craugastor augusti,bio/CraugastorAugusti,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228433,,"Eleutherodactylus crassidigitus Taylor, 1952",,Isla Bonita robber frog,"Eleutherodactylus (Craugastor) crassidigitus, Eleutherodactylus crassidigitus",slim-fingered rain frog,Craugastor crassidigitus,bio/CraugastorCrassidigitus,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228434,,"Hylodes longirostris Boulenger, 1898",,longsnout robber frog,"Eleutherodactylus longirostris, Eleutherodactylus (Craugastor) longirostris, Hylodes longirostris",long-snouted whistling frog,Craugastor longirostris,bio/CraugastorLongirostris,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228444,,"Hylodes laticeps Dumeril, 1853",,broad-headed leaf-litter frog,"Hylodes laticeps, Eleutherodactylus laticeps",broad-headed rainfrog,Craugastor laticeps,bio/CraugastorLaticeps,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228445,,"Eleutherodactylus chac Savage, 1987",,Izabal robber frog,Eleutherodactylus chac,Chac's rainfrog,Craugastor chac,bio/CraugastorChac,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228449,,"Hylodes stejnegerianus Cope, 1893",,Stejneger's robber frog,"Eleutherodactylus stejnegerianus, Hylodes stejnegerianus",Stejneger's rainfrog,Craugastor stejnegerianus,bio/CraugastorStejnegerianus,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228452,,"Lithodytes bransfordii Cope, 1886",,Bransford's robber frog,"Eleutherodactylus bransfordii, Lithodytes bransfordii",Bransford's litter frog,Craugastor bransfordii,bio/CraugastorBransfordii,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228563,,,,,,,Petroica,bio/Petroica,,,,,, +228564,,"Miro traversi Buller, 1872",,Chatham robin,Miro traversi,Chatham Islands robin,Petroica traversi,bio/PetroicaTraversi,,bio/Petroica,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228608,,"Xenopus gilli Rose & Hewitt, 1927",,Gill's platanna,"Xenopus gilli gilli, Xenopus laevis gilli",Cape clawed frog,Xenopus gilli,bio/XenopusGilli,,bio/Xenopus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +228648,,,,,,,Euhyas,bio/Euhyas,,,,,, +228649,,,,,,,Craugastor,bio/Craugastor,,,,,, +228670,,"Scaphiopus hammondii Baird, 1859",,Hammond's spadefoot toad,Scaphiopus hammondii,western spadefoot toad ,Spea hammondii,bio/SpeaHammondii,,bio/Spea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +229057,,"Tetrodon sceleratus Gmelin, 1789",,silverstripe blaasop,"Tetrodon sceleratus, Pleuranacanthus sceleratus",silver-cheeked toadfish,Lagocephalus sceleratus,bio/LagocephalusSceleratus,,bio/Lagocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +230655,,"Saxicola dacotiae (Meade-Waldo, 1889)",,Canary Islands bush chat,Pratincola dacotiae,canary chat,Saxicola dacotiae,bio/SaxicolaDacotiae,,bio/Saxicola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +230979,,,,,,,Euryapteryx,bio/Euryapteryx,,,,,, +230980,,"Dinornis curtus Owen, 1846",,coastal moa,Dinornis curtus,little coastal moa,Euryapteryx curtus,bio/EuryapteryxCurtus,,bio/Euryapteryx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +231021,,"Hyla prosoblepon Boettger, 1892",,Nicaragua giant glass frog,"Hyla prosoblepon, Centrolenella prosoblepon, Centrolene prosoblepon",emerald glass frog,Espadarana prosoblepon,bio/EspadaranaProsoblepon,,bio/Espadarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +231224,,"Rana nigrita LeConte, 1825",,swamp tree frog,Rana nigrita,southern chorus frog,Pseudacris nigrita,bio/PseudacrisNigrita,,bio/Pseudacris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +233201,,,,,Iberocypris,,Squalius,bio/Squalius,,,,,, +233775,,"Megophrys feae Boulenger, 1887",,Fea's short-legged toad,"Brachytarsophrys feae, Megalophrys feae",Kakhien Hills spadefoot toad,Megophrys feae,bio/MegophrysFeae,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +233779,,"Scaphiopus bombifrons (Cope, 1863)",,plains spadefoot,Scaphiopus bombifrons,plains spadefoot toad,Spea bombifrons,bio/SpeaBombifrons,,bio/Spea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +233780,,"Scaphiopus intermontanus Cope, 1883",,Great Basin spadefoot,Scaphiopus intermontanus,Great Basin spadefoot toad,Spea intermontana,bio/SpeaIntermontana,,bio/Spea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +234793,,"Trutta letnica Karaman, 1924",,Ohrid trout,Trutta letnica,Lake Ohrid brown trout,Salmo letnica,bio/SalmoLetnica,,bio/Salmo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +235326,,"Phylloscopus chloronotus Gray & Gray, 1847",,lemon-rumped warbler,"Phylloscopus proregulus chloronotus, Abrornis chloronotus",pale-rumped warbler,Phylloscopus chloronotus,bio/PhylloscopusChloronotus,,bio/Phylloscopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +235354,,"Nymphalis vau-album (Denis & Schiffermuller, 1775)",,false comma,"Polygonia vaualbum, Nymphalis lalbum, Papilio l-album, Papilio vau-album, Nymphalis vaualbum l-album, Roddia l-album, Nymphalis vau-album, Roddia vaualbum, Nymphalis vaualbum",Compton tortoiseshell,Nymphalis l-album,bio/NymphalisLalbum,,bio/Roddia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +236742,,"Uromastyx benti (Anderson, 1894)",,Bent's mastigure,"Uromastix (Aporoscelis) benti, Aporoscelis benti",Yemeni spiny-tailed lizard,Uromastyx benti,bio/UromastyxBenti,,bio/Uromastyx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +236793,,"Chilo sacchariphagus (Bojer, 1856)",,spotted stalk borer,Proceras sacchariphagus,spotted sugarcane borer,Chilo sacchariphagus,bio/ChiloSacchariphagus,,bio/Chilo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +238031,,"Leuciscus bambusa Richardson, 1845",,yellowcheek,Leuciscus bambusa,yellowcheek carp,Elopichthys bambusa,bio/ElopichthysBambusa,,bio/Elopichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +238032,,,,,,,Elopichthys,bio/Elopichthys,,,,,, +238840,,"Microstomus stelleri Schmidt, 1904",,Korean flounder,Microstomus stelleri,blackfin flounder,Glyptocephalus stelleri,bio/GlyptocephalusStelleri,,bio/Glyptocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +240164,,,,,,,Johnius,bio/Johnius,,,,,, +240173,,"Syrrhaphus omiltemanus Gunther, 1900",,Gunther's robber frog,"Syrrhaphus omiltemanus, Eleutherodactylus omiltemanus",Guerreran robber frog,Craugastor omiltemanus,bio/CraugastorOmiltemanus,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +240395,,"Rugosa emeljanowi (Nikolskii, 1913)",,Imeinpo Station frog,"Rana rugosa emeljanowi, Rana emeljanovi, Rugosa emeljanowi, Rana emelijanovi, Rugosa emelianjovi",Northeast China rough-skinned frog,Glandirana emeljanovi,bio/GlandiranaEmeljanovi,,bio/Glandirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +240396,,,,,,,Meristogenys,bio/Meristogenys,,,,,, +240405,,,,,,,Staurois,bio/Staurois,,,,,, +240406,,"Staurois latopalmatus (Boulenger, 1887)",,rock skipper,"Ixalus latopalmatus, Simomantis latopalmata",Sabah splash frog,Staurois latopalmatus,bio/StauroisLatopalmatus,,bio/Staurois,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +241069,,Mentha x gracilis Sole,,red mint,"Mentha gracilis, Mentha x cardiaca, Mentha x gentilis, Mentha arvensis x Mentha spicata",Scotch spearmint,Mentha x gracilis,bio/MenthaXGracilis,,bio/Mentha,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +241142,,"Akodon jelskii Thomas, 1894",,Jelski's altiplano mouse,"Akodon jelskii, Chroeomys jelskii",Jelski's South American field mouse,Abrothrix jelskii,bio/AbrothrixJelskii,,bio/Abrothrix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +241267,,,,,Pseudolepidaplois,,Bodianus,bio/Bodianus,,,,,, +241338,,,,,,,Pseudojuloides,bio/Pseudojuloides,,,,,, +241340,,"Pseudojuloides cerasinus (Snyder, 1904)",,smalltail wrasse,Pseudojulis cerasina,smalltail pencil wrasse,Pseudojuloides cerasinus,bio/PseudojuloidesCerasinus,,bio/Pseudojuloides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +241532,,,,,,,Cinnycerthia,bio/Cinnycerthia,,,,,, +241749,,,,,,,Arremon,bio/Arremon,,,,,, +242266,,,,,"Plebulina, Lycaeides",,Plebejus,bio/Plebejus,,,,,, +242581,,"Pseudacris cadaverina (Cope, 1866)",,California chorus frog,"Hyliola cadaverina, Hyla cadaverina",California treefrog,Pseudacris cadaverina,bio/PseudacrisCadaverina,,bio/Pseudacris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +242978,,,,,,,Antennarius,bio/Antennarius,,,,,, +242980,,,,,Pterophryne,,Histrio,bio/Histrio,,,,,, +242981,,"Lophius histrio Linnaeus, 1758",,sargassum frogfish,"Pterophryne histrio, Pterophrynoides histrio, Lophius histrio, Chironectes histrio, Antennarius histrio",sargassumfish,Histrio histrio,bio/HistrioHistrio,,bio/Histrio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +243225,,"Hypochaera codringtoni Neave, 1907",,green indigobird,Hypochaera codringtoni,twinspot Indigobird,Vidua codringtoni,bio/ViduaCodringtoni,,bio/Vidua,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +243561,,,,,,,Plotosus,bio/Plotosus,,,,,, +243562,,"Silurus lineatus Thunberg, 1787",,striped eel-catfish,"Silurus lineatus, Bagrus limbatus, Plotosus limbatus (Richardson, 1846), Plotosus lineatus 'Minami-gonzui'",striped eel catfish,Plotosus lineatus,bio/PlotosusLineatus,,bio/Plotosus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +244289,,,,,,,Peridroma,bio/Peridroma,,,,,, +244290,,"Noctua saucia Hubner, 1808",,variegated cutworm,"Peridroma margaritosa, Noctua saucia",pearly underwing,Peridroma saucia,bio/PeridromaSaucia,,bio/Peridroma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +244447,,"Cynoglossus semilaevis Gunther, 1873",,half-smooth tongue sole,Cynoglossus (Arelia) semilaevis,tongue sole,Cynoglossus semilaevis,bio/CynoglossusSemilaevis,,bio/Cynoglossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +244448,,,,,,,Cleisthenes,bio/Cleisthenes,,,,,, +244449,,"Hippoglossoides herzensteini Schmidt, 1904",,sohachi flounder,"Cleisthenes pinetorum herzensteini, Hippoglossoides herzensteini",sohachi ,Cleisthenes herzensteini,bio/CleisthenesHerzensteini,,bio/Cleisthenes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +244453,,,,,,,Zebrias,bio/Zebrias,,,,,, +245045,,,,,,,Aplonis,bio/Aplonis,,,,,, +245046,,"Eumyias panayensis Sharpe, 1877",,island flycatcher,"Eumyias panayensis, Muscicapa panayensis",Asian glossy starling,Aplonis panayensis,bio/AplonisPanayensis,,bio/Aplonis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +245147,,"Ranodon tsinpaensis Liu & Hu, 1966",,Shaanxi salamander,"Pseudohynobius tsinpaensis, Ranodon tsinpaensis, Ranodon (Pseudohynobius) tsinpaensis",Tsinpa salamander,Liua tsinpaensis,bio/LiuaTsinpaensis,,bio/Liua_Salamanders,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +245712,,"Dianema Cope, 1871",,,,,Dianema ,bio/Dianema_BonyFishes,,,,,, +245776,,"Dianema urostriatum (Miranda Ribeiro, 1912)",,striped-tailed catfish,Decapogon urostriatum,flagtail catfish,Dianema urostriatum,bio/DianemaUrostriatum,,bio/Dianema_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +245847,,"Mimus trifasciatus (Gould, 1837)",,Floreana mockingbird,"Nesomimus trifasciatus (Gould, 1837), Nesomimus trifasciatus",Charles mockingbird,Mimus trifasciatus,bio/MimusTrifasciatus,,bio/Mimus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +245850,,"Mimus macdonaldi Ridgway, 1890",,Espanola mockingbird,"Nesomimus macdonaldi Ridgway, 1890, Nesomimus macdonaldi",hood mockingbird,Mimus macdonaldi,bio/MimusMacdonaldi,,bio/Mimus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +246411,,"Rana microdisca Boettger, 1892",,Pygmy Creek frog,"Euphlyctis microdisca, Dicroglossus microdiscus, Rana microdisca",Indonesian wart frog,Limnonectes microdiscus,bio/LimnonectesMicrodiscus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +246418,,"Rana macrodon macrocephala Inger, 1954",,big-headed wart frog,"Rana macrodon macrocephala, Euphlyctis magna macrocephala",Luzon fanged frog,Limnonectes macrocephalus,bio/LimnonectesMacrocephalus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +247085,,,,,Borneophrys,,Megophrys,bio/Megophrys,,,,,, +247094,,"Xenopus boettgeri Tornier, 1896",,Zaire dwarf clawed frog,Xenopus boettgeri,Congo dwarf clawed frog,Hymenochirus boettgeri,bio/HymenochirusBoettgeri,,bio/Hymenochirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +247538,,"Granatina granatina (Linnaeus, 1766)",,common grenadier,"Fringilla granatina, Uraeginthus granatinus, Estrilda granatina",Violet-eared waxbill,Granatina granatina,bio/GranatinaGranatina,,bio/Granatina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +247977,,,,,,,Aidemosyne,bio/Aidemosyne,,,,,, +247978,,"Amadina modesta Gould, 1837",,cherry finch,"Neochmia modesta, Amadina modesta",Plum-headed finch,Aidemosyne modesta,bio/AidemosyneModesta,,bio/Aidemosyne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +248134,,,,,,,Tenualosa,bio/Tenualosa,,,,,, +248792,,"Gastrophryne olivacea (Hallowell, 1856)",,Texas narrow-mouthed toad,"Microhyla carolinensis olivacea, Engystoma olivaceum, Engystoma texense, Gastrophryne carolinensis olivacea, Gastrophryne texense, Microhyla olivacea",western narrow-mouthed toad,Gastrophryne olivacea,bio/GastrophryneOlivacea,,bio/Gastrophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +248868,,"Phyllomedusa tomopterna (Cope, 1868)",,tiger-sriped leaf frog,Pithecopus tomopternus,tiger-striped leaf frog,Phyllomedusa tomopterna,bio/PhyllomedusaTomopterna,,bio/Phyllomedusa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +248880,,,,,"Tetraprion, Phrynohyas",,Trachycephalus,bio/Trachycephalus,,,,,, +248943,,,,,,tropical bullfrogs,Adenomera,bio/Adenomera,,,,,, +248945,,"Nannophryne variegata Guenther, 1870",,Eden Harbour toad,Bufo variegatus,Patagonian toad,Nannophryne variegata,bio/NannophryneVariegata,,bio/Nannophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +249001,,,,,,,Pseudogobius,bio/Pseudogobius,,,,,, +249002,,"Gobius olorum Sauvage, 1880",,southern goby,Gobius olorum,Swan River goby,Pseudogobius olorum,bio/PseudogobiusOlorum,,bio/Pseudogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +251502,,"Triton vittatus Gray, 1835",,striped eft,"Triturus vittatus, Triton vittatus",southern banded newt,Ommatotriton vittatus,bio/OmmatotritonVittatus,,bio/Ommatotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +254007,,,,,,,decim group,bio/DecimGroup,,,,,, +254361,,,,,,,Autographa,bio/Autographa,,,,,, +254363,,"Phalaena gamma Linnaeus, 1758",,silver Y,Phalaena gamma,silver Y moth,Autographa gamma,bio/AutographaGamma,,bio/Autographa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +254381,,,,,,,Plusia,bio/Plusia,,,,,, +254382,,"Phalaena festucae Linnaeus, 1758",,gold spot moth,Phalaena festucae,rice looper,Plusia festucae,bio/PlusiaFestucae,,bio/Plusia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +254538,,,,,,,Falcunculus,bio/Falcunculus,,,,,, +254539,,"Lanius frontatus Latham, 1801",,Eastern shrike-tit,Lanius frontatus,Eastern shriketit,Falcunculus frontatus,bio/FalcunculusFrontatus,,bio/Falcunculus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +255532,,,,,,,Podothecus,bio/Podothecus,,,,,, +255564,,"Raja trachyderma Krefft & Stehmann, 1975",,ray,Raja trachyderma,roughskin skate,Dipturus trachyderma,bio/DipturusTrachyderma,,bio/Dipturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +255570,,,,,,,Kryptopterus,bio/Kryptopterus,,,,,, +257879,,"Vespertilio cinereus Palisot de Beauvois, 1796",,North American hoary bat,"Vespertilio cinereus, Lasiurus cinereus",hoary bat,Aeorestes cinereus,bio/AeorestesCinereus,,bio/Aeorestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +257884,,"Vespertilio ciliolabrum Merriam, 1886",,western small-footed Myotis,Vespertilio ciliolabrum,western small-footed bat,Myotis ciliolabrum,bio/MyotisCiliolabrum,,bio/Myotis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +257886,,,,,,,Pseudopentaceros,bio/Pseudopentaceros,,,,,, +258452,,"Stegastes leucostictus (Muller & Troschel, 1848)",,beau gregory damselfish,Pomacentrus leucostictus,beaugregory,Stegastes leucostictus,bio/StegastesLeucostictus,,bio/Stegastes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +259990,,,,,,,Lile,bio/Lile,,,,,, +260511,,"Argentina Linnaeus, 1758",,,,,Argentina ,bio/Argentina_BonyFishes,,,,,, +260891,,,,,,,Saproscincus,bio/Saproscincus,,,,,, +261519,,"Percis sexfasciata Temminck & Schlegel, 1843",,saddled weever,"Neopercis sexfasciata, Percis sexfasciata",grubfish,Parapercis sexfasciata,bio/ParapercisSexfasciata,,bio/Parapercis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +261944,,"Egernia inornata Rosen, 1905",,desert-skink,Egernia inornata,unadorned desert-skink,Liopholis inornata,bio/LiopholisInornata,,bio/Liopholis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +262014,,,,,,,Xenopus ,bio/Xenopus_Subgenus,,,,,, +262651,,"Papilio demodocus Esper, 1799",,orange dog,Papilio demodocus demodocus,citrus butterfly,Papilio demodocus,bio/PapilioDemodocus,,bio/Papilio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +262664,,"Papilio thoas Linnaeus, 1771",,thoas swallowtail,Heraclides thoas,king swallowtail,Papilio thoas,bio/PapilioThoas,,bio/Heraclides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +263371,,,,,,,Saucrobotys,bio/Saucrobotys,,,,,, +263372,,"Botys futilalis Lederer, 1863",,dogbane pyralid,Botys futilalis,dogbane pyralid moth,Saucrobotys futilalis,bio/SaucrobotysFutilalis,,bio/Saucrobotys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +263450,,"Lophostoma d'Orbigny, 1836",,,,,Lophostoma ,bio/Lophostoma_Bats,,,,,, +263451,,"Lophostoma silvicolum d'Orbigny, 1836",,white-throated round-eared bat,"Tonatia silvicola, Tonatia sylvicola",D'Orbigny's round-eared bat,Lophostoma silvicolum,bio/LophostomaSilvicolum,,bio/Lophostoma_Bats,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +263700,,,,,,,Asymbolus,bio/Asymbolus,,,,,, +263928,,"Yponomeuta rorrellus (Hubner, 1796)",,willow ermine,"Yponomeuta rorellus, Tinea rorrella",willow ermine moth,Yponomeuta rorrellus,bio/YponomeutaRorrellus,,bio/Yponomeuta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +264213,,"Lutjanus sanguineus (Cuvier, 1828)",,bloodred snapper,Diacope sanguinea,humphead snapper,Lutjanus sanguineus,bio/LutjanusSanguineus,,bio/Lutjanus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +264363,,,,,,,Paragobiodon,bio/Paragobiodon,,,,,, +264364,,"Paragobiodon xanthosomus (Bleeker, 1852)",,yellowskin goby,"Gobius xanthosoma, Paragobiodon xanthosomus",emerald coral goby,Paragobiodon xanthosoma,bio/ParagobiodonXanthosoma,,bio/Paragobiodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +265032,,"Megophrys shapingensis Liu, 1950",,Shaping horned toad,"Atympanophrys shapingensis, Megophrys (Atympanophrys) shapingensis",Shaping frog,Megophrys shapingensis,bio/MegophrysShapingensis,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +265034,,,,,,,Scutiger ,bio/Scutiger_FrogsToads,,,,,, +265035,,"Scutiger boulengeri (Bedriaga, 1898)",,Himalayan stream frog,"Leptobrachium boulengeri, Megalophrys boulengeri",Xizang alpine toad,Scutiger boulengeri,bio/ScutigerBoulengeri,,bio/Scutiger_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +265036,,"Xenophrys minor Stejneger, 1926",,little horned toad,Megophrys minor,tiny spadefoot toad,Xenophrys minor,bio/XenophrysMinor,,bio/Xenophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +265040,,"Vibrissaphora boringii Liu, 1945",,Taosze spiny toad,"Leptobrachium (Leptobrachium) boringii, Vibrissaphora boringi, Leptobrachium (Vibrissaphora) boringii, Vibrissaphora boringii, Leptobrachium boringiae, Vibrissaphora boringiae",Emei moustache toad,Leptobrachium boringii,bio/LeptobrachiumBoringii,,bio/Leptobrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +265041,,"Vibrissaphora liui Pope, 1947",,Pope's spiny toad,Vibrissaphora liui,Chong'an moustache toad,Leptobrachium liui,bio/LeptobrachiumLiui,,bio/Leptobrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +265043,,,,,Scutiger (Oreolalax),,Oreolalax,bio/Oreolalax,,,,,, +265044,,"Scutiger popei Liu, 1947",,Pope's lazy toad,Scutiger popei,Baoxing toothed toad,Oreolalax popei,bio/OreolalaxPopei,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +265359,,,,,"Chalcereia, Epidemia",,Lycaena,bio/Lycaena,,,,,, +266506,,"Oedipus dunni Schmidt, 1933",,Dunn's salamander,"Bolitoglossa (Magnadigita) dunni, Magnadigita dunni, Oedipus dunni",Dunn's mushroomtongue salamander,Bolitoglossa dunni,bio/BolitoglossaDunni,,bio/Magnadigita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +266507,,"Oedipus flavimembris Schmidt, 1936",,yellow-legged salamander,"Magnadigita flavimembris, Bolitoglossa (Magnadigita) flavimembris, Oedipus flavimembris",yellow-legged mushroomtongue salamander,Bolitoglossa flavimembris,bio/BolitoglossaFlavimembris,,bio/Magnadigita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +266509,,"Oedipus lincolni Stuart, 1943",,Lincoln's salamander,"Magnadigita lincolni, Oedipus lincolni, Bolitoglossa (Magnadigita) lincolni",Lincoln's mushroomtongue salamander,Bolitoglossa lincolni,bio/BolitoglossaLincolni,,bio/Magnadigita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +266517,,"Spelerpes rostratum Brocchi, 1883",,long-nose salamander,"Magnadigita rostrata, Spelerpes rostratus, Bolitoglossa (Magnadigita) rostrata, Oedipus rostratum, Spelerpes rostratum",longnose mushroomtongue salamander,Bolitoglossa rostrata,bio/BolitoglossaRostrata,,bio/Magnadigita,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +267130,,"Synechogobius ommaturus (Richardson, 1845)",,Asian freshwater goby,"Synechogobius hasta, Synechogobius hastus, Synechogobius ommaturus, Gobius hasta, Acanthogobius ommaturus, Gobius ommaturus",javeline goby,Acanthogobius hasta,bio/AcanthogobiusHasta,,bio/Acanthogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +267839,,"Pyxicephalus rufescens Jerdon, 1853",,reddish burrowing frog,"Pyxicephalus rufescens, Zakerana rufescens",Malabar wart frog,Minervarya rufescens,bio/MinervaryaRufescens,,bio/Minervarya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +267840,,"Rana brevipalmata Peters, 1871",,short-webbed frog,"Zakerana brevipalmata, Rana brevipalmata",Pegu wart frog,Minervarya brevipalmata,bio/MinervaryaBrevipalmata,,bio/Minervarya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +267844,,"Rana malabarica Tschudi, 1838",,Malabar Hills frog,"Rana malabarica, Hylarana malabarica",Malabar fungoid frog,Hydrophylax malabaricus,bio/HydrophylaxMalabaricus,,bio/Hydrophylax_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +267845,,"Rana aurantiaca Boulenger, 1904",,golden frog,"Sylvirana aurantiaca, Rana aurantiaca, Hylarana aurantiaca",small wood frog,Indosylvirana aurantiaca,bio/IndosylviranaAurantiaca,,bio/Indosylvirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +268489,,,,,,,Lasiodora,bio/Lasiodora,,,,,, +268490,,"Lasiodora parahybana Mello-Leitao, 1917",,salmon pink birdeating spider,Lasiodora parahibana,salmon pink birdeater,Lasiodora parahybana,bio/LasiodoraParahybana,,bio/Lasiodora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +269193,,,,,,Mexican pygmy salamanders,Thorius,bio/Thorius,,,,,, +270251,,,,,,,Pseudemys,bio/Pseudemys,,,,,, +270252,,"Testudo concinna Le Conte, 1830",,Eastern river cooter,"Testudo concinna, Chrysemys concinna",Suwannee river cooter,Pseudemys concinna,bio/PseudemysConcinna,,bio/Pseudemys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +270329,,"Perca gibbosa Linnaeus, 1758",,pumpkinseed,Perca gibbosa,pumpkinseed sunfish,Lepomis gibbosus,bio/LepomisGibbosus,,bio/Lepomis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +270453,,,,,,,Zizina,bio/Zizina,,,,,, +270454,,"Zizina otis (Fabricius, 1787)",,Lucerne blue,Papilio otis,common grass blue,Zizina otis,bio/ZizinaOtis,,bio/Zizina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +270463,,"Vanessa indica (Herbst, 1794)",,Indian red admiral,Papilio indica,Asian admiral,Vanessa indica,bio/VanessaIndica,,bio/Vanessa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +270526,,,,,,,Solenostomus,bio/Solenostomus,,,,,, +270536,,,,,,,Toxotes,bio/Toxotes,,,,,, +270551,,,,,,,Epigonus,bio/Epigonus,,,,,, +270567,,,,,Neoplatycephalus,,Platycephalus,bio/Platycephalus,,,,,, +270573,,,,,,,Labracinus,bio/Labracinus,,,,,, +270574,,"Labracinus cyclophthalmus (Mueller & Troschel, 1849)",,giant dottyback,Cichlops cyclophthalmus,fire-tail devil,Labracinus cyclophthalmus,bio/LabracinusCyclophthalmus,,bio/Labracinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +270577,,,,,,,Pseudanthias,bio/Pseudanthias,,,,,, +270608,,,,,,,Bembrops,bio/Bembrops,,,,,, +271217,,"Mythimna separata (Walker, 1865)",,rice ear-cutting caterpillar,"Pseudaletia separata, Leucania separata",northern armyworm,Mythimna separata,bio/MythimnaSeparata,,bio/Mythimna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +272047,,"Tringa ruficollis Pallas, 1776",,red-necked stint,Tringa ruficollis,rufous-necked stint,Calidris ruficollis,bio/CalidrisRuficollis,,bio/Calidris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +272189,,,,,,,Lankanectes,bio/Lankanectes,,,,,, +272190,,"Rana corrugata Peters, 1863",,Sri Lanka wart frog,"Dicroglossus corrugatus, Limnonectes corrugatus, Rana corrugata",corrugated water frog,Lankanectes corrugatus,bio/LankanectesCorrugatus,,bio/Lankanectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +272789,,"Atypichthys Guenther, 1862",,,"Aypus Guenther, 1860",,Atypichthys,bio/Atypichthys,,,,,, +272797,,"Holacanthus tricolor (Bloch, 1795)",,rock beauty angelfish,Chaetodon tricolor,rock beauty,Holacanthus tricolor,bio/HolacanthusTricolor,,bio/Holacanthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +274457,,"Leiognathus jonesi James, 1971",,splendid ponyfish,Leiognathus jonesi,Jones' pony fish,Eubleekeria jonesi,bio/EubleekeriaJonesi,,bio/Eubleekeria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +274464,,,,,,,Gerres,bio/Gerres,,,,,, +274727,,,,,,,Caracanthus,bio/Caracanthus,,,,,, +274728,,"Micropus maculatus Gray, 1831",,spotted coral croucher goby,Micropus maculatus,spotted coral croucher,Caracanthus maculatus,bio/CaracanthusMaculatus,,bio/Caracanthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +274730,,,,,,,Pseudogramma,bio/Pseudogramma,,,,,, +275431,,,,,,,Ircinia,bio/Ircinia,,,,,, +278733,,,,,,,Menticirrhus,bio/Menticirrhus,,,,,, +278734,,"Menticirrhus americanus (Linnaeus, 1758)",,southern kingfish,Cyprinus americanus,southern kingcroaker,Menticirrhus americanus,bio/MenticirrhusAmericanus,,bio/Menticirrhus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +278736,,"Umbrina littoralis Holbrook, 1847",,Gulf whiting,"Menticirrhus undulatus littoralis, Umbrina littoralis",Gulf kingcroaker,Menticirrhus littoralis,bio/MenticirrhusLittoralis,,bio/Menticirrhus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +278772,,,,,,,Stellifer,bio/Stellifer,,,,,, +278773,,"Stelliferus rastrifer Jordan, 1889",,yellow stardrum,Stelliferus rastrifer,rake stardrum,Stellifer rastrifer,bio/StelliferRastrifer,,bio/Stellifer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +279537,,"Desmognathus folkertsi Camp, Tilley, Austin, and Marshall, 2002",,dwarf black-bellied salamander,Desmognathus folkertsii,dwarf blackbelly salamander,Desmognathus folkertsi,bio/DesmognathusFolkertsi,,bio/Desmognathus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +279931,,"Strepsilas melanocephalus Vigors, 1829",,turnstone,Strepsilas melanocephalus,black turnstone,Arenaria melanocephala,bio/ArenariaMelanocephala,,bio/Arenaria_Birds,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +279961,,"Tringa pusilla Linnaeus, 1766",,semi-palmated sandpiper,"Eurenetes pusillus, Tringa pusilla, Ereunetes pusillus",semipalmated sandpiper,Calidris pusilla,bio/CalidrisPusilla,,bio/Calidris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +279982,,"Hyla baudinii Dumeril & Bibron, 1840",,common Mexican treefrog,Hyla baudinii,Mexican treefrog,Smilisca baudinii,bio/SmiliscaBaudinii,,bio/Smilisca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +280780,,"Rhabdalestes maunensis (Fowler, 1935)",,slender robber,Petersius maunensis,Okavango robber,Rhabdalestes maunensis,bio/RhabdalestesMaunensis,,bio/Rhabdalestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +281757,,,,,Macrotocinclus,,Otocinclus,bio/Otocinclus,,,,,, +282069,,"Phylloscopus yunnanensis (La Touche, 1922)",,Chinese leaf warbler,"Abrornis yunnanensis, Phylloscopus sichuanensi, Phylloscopus proregulus yunnanensis",La Touche's leaf-warbler,Phylloscopus yunnanensis,bio/PhylloscopusYunnanensis,,bio/Phylloscopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +282253,,,,,,,Ogilbyina,bio/Ogilbyina,,,,,, +282254,,"Pseudochromis novaehollandiae Steindachner, 1879",,red and green dottyback,Pseudochromis novaehollandiae,multicolored dottyback,Ogilbyina novaehollandiae,bio/OgilbyinaNovaehollandiae,,bio/Ogilbyina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +282315,,,,,,,Zizeeria,bio/Zizeeria,,,,,, +282316,,"Zizeeria knysna (Trimen, 1862)",,dark grass blue,Lycaena knysna,African grass blue,Zizeeria knysna,bio/ZizeeriaKnysna,,bio/Zizeeria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +282391,,"Papilio phlaeas Linnaeus, 1761",,small copper,Papilio phlaeas,common copper,Lycaena phlaeas,bio/LycaenaPhlaeas,,bio/Lycaena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +283033,,,,,Stizostedion,,Sander,bio/Sander,,,,,, +283035,,"Sander lucioperca (Linnaeus, 1758)",,pike-perch,"Stizostedion lucioperca, Perca lucioperca, Lucioperca lucioperca",pikeperch,Sander lucioperca,bio/SanderLucioperca,,bio/Sander,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +283213,,"Leptobrachium hasseltii Tschudi, 1838",,Hasselt's litter frog,Leptobrachium hasselti,Java spadefoot toad,Leptobrachium hasseltii,bio/LeptobrachiumHasseltii,,bio/Leptobrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +283215,,"Xenophrys omeimontis (Liu, 1950)",,Omei horned toad,Xenophrys omeimontis,Mount Omei spadefoot toad,Megophrys omeimontis,bio/MegophrysOmeimontis,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +283217,,"Ophryophryne microstoma Boulenger, 1903",,Asian mountain toad,"Ophryophryne poilani, Ophryophryne microstoma",narrow-mouthed horned toad,Megophrys microstoma,bio/MegophrysMicrostoma,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +283373,,"Cypselurus opisthopus hiraii Abe, 1953",,Japanese flying fish,Cypselurus opisthopus hiraii,Japanese flyingfish ,Cypselurus hiraii,bio/CypselurusHiraii,,bio/Cypselurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +283843,,"Sphinx gallii Rottemburg, 1775",,madder hawk-moth,Sphinx gallii,bedstraw hawk-moth,Hyles gallii,bio/HylesGallii,,bio/Hyles,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +283868,,"Hippotion Hubner, 1819",,,,,Hippotion,bio/Hippotion,,,,,, +283870,,"Sphinx celerio Linnaeus, 1758",,silver striped hawk,Sphinx celerio,silver-striped hawk-moth,Hippotion celerio,bio/HippotionCelerio,,bio/Hippotion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +284583,,"Perccottus glenii Dybowski, 1877",,Amur sleeper,Percottus glehni,Chinese sleeper,Perccottus glenii,bio/PerccottusGlenii,,bio/Perccottus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +284584,,,,,Percottus,,Perccottus,bio/Perccottus,,,,,, +284700,,,,,,,Dicrossus,bio/Dicrossus,,,,,, +285991,,,,,,,Homopus,bio/Homopus,,,,,, +285992,,"Testudo signata Walbaum, 1782",,Speckled Cape tortoise,"Testudo signata, Homopus signatus",Speckled padloper,Chersobius signatus,bio/ChersobiusSignatus,,bio/Chersobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +285996,,"Testudo areolata Thunberg, 1787",,beaked Cape tortoise,"Homopus aerolatus, Testudo areolata",common padloper,Homopus areolatus,bio/HomopusAreolatus,,bio/Homopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +286016,,Homopus solus Branch 2007,,Berger's Cape tortoise,"Homopus bergeri, Homopus solus",Nama padloper,Chersobius solus,bio/ChersobiusSolus,,bio/Chersobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +286536,,,,,,,Coilia,bio/Coilia,,,,,, +286537,,"Coilia mystus (Linnaeus, 1758)",,phoenix-tailed anchovy,Clupea mystus,Osbeck's grenadier anchovy,Coilia mystus,bio/CoiliaMystus,,bio/Coilia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +288314,,,,,,,Salamandrella,bio/Salamandrella,,,,,, +288315,,"Salamandrella keyserlingii Dybowski, 1870",,Siberian newt,"Manchurian salamander, Salamandrella keyserlingii",Siberian salamander ,Salamandrella keyserlingii,bio/SalamandrellaKeyserlingii,,bio/Salamandrella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +288316,,,,,,,Pachyhynobius,bio/Pachyhynobius,,,,,, +288317,,"Pachyhynobius shangchengensis Fei, Qu, and Wu, 1983",,Shangcheng salamander,Hynobius yunanicus,Shangcheng stout salamander,Pachyhynobius shangchengensis,bio/PachyhynobiusShangchengensis,,bio/Pachyhynobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +288645,,,,,,,Enoplometopus,bio/Enoplometopus,,,,,, +288646,,"Nephrops occidentalis Randall, 1840",,red reef lobster,Nephrops occidentalis,Hawaiian reef lobster,Enoplometopus occidentalis,bio/EnoplometopusOccidentalis,,bio/Enoplometopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +288788,,"Lechriodus Boulenger, 1882",,,,cannibal frogs,Lechriodus,bio/Lechriodus,,,,,, +288789,,"Lechriodus melanopyga (Doria, 1875)",,black-rumped southern frog,Asterophrys melanopyga,Wokan cannibal frog,Lechriodus melanopyga,bio/LechriodusMelanopyga,,bio/Lechriodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +290154,,"Bactericera Puton, 1876",,,,,Bactericera,bio/Bactericera,,,,,, +290155,,"Bactericera cockerelli (Sulc, 1909)",,potato psyllid,"Paratrioza cockerelli, Bactericera (Paratrioza) cockerelli",potato/tomato psyllid,Bactericera cockerelli,bio/BactericeraCockerelli,,bio/Bactericera,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +291688,,"Papilio comma Linnaeus, 1758",,silver-spotted skipper,Papilio comma,common branded skipper,Hesperia comma,bio/HesperiaComma,,bio/Hesperia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +291689,,"Pamphila juba Scudder, 1872",,Yuba skipper,Pamphila juba,jagged-border skipper,Hesperia juba,bio/HesperiaJuba,,bio/Hesperia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +291690,,"Erynnis lindseyi Holland, 1930",,Lindsey's skipper,Erynnis lindseyi,lost-egg skipper,Hesperia lindseyi,bio/HesperiaLindseyi,,bio/Hesperia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +291691,,"Hesperia nevada (Scudder, 1874)",,montane skipper,Pamphila nevada,Nevada skipper,Hesperia nevada,bio/HesperiaNevada,,bio/Hesperia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +291694,,,,,,,Polites,bio/Polites,,,,,, +291695,,"Polites sabuleti (Boisduval, 1852)",,saltgrass skipper,Hesperia sabuleti,sandhill skipper,Polites sabuleti,bio/PolitesSabuleti,,bio/Polites,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +291793,,,,,Erythroculter,,Chanodichthys,bio/Chanodichthys,,,,,, +291939,,"Rana fragilis Liu & Hu, 1973",,fragile large-headed frog,Rana fragilis,fragile wart frog,Limnonectes fragilis,bio/LimnonectesFragilis,,bio/LimnonectesKuhliiSpeciesComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +293340,,,,,,,Grapholita,bio/Grapholita,,,,,, +293908,,,,,,,Cheilopogon,bio/Cheilopogon,,,,,, +294366,,,,,,dwarf sirens,Pseudobranchus,bio/Pseudobranchus,,,,,, +294758,,"Dicamptodon aterrimus (Cope, 1868)",,Rocky Mountain salamander,Amblystoma aterrimum,Idaho giant salamander,Dicamptodon aterrimus,bio/DicamptodonAterrimus,,bio/Dicamptodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +295659,,,,,,,Lasioderma,bio/Lasioderma,,,,,, +295660,,"Lasioderma serricorne Fabricius, 1792",,tobacco beetle,Lasioderma sp. MSL2007,cigarette beetle,Lasioderma serricorne,bio/LasiodermaSerricorne,,bio/Lasioderma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +297009,,,,,,,Lyciasalamandra,bio/Lyciasalamandra,,,,,, +297528,,"Saproscincus mustelinus (O'Shaugnessy, 1874)",,weasel shadeskink,"Lampropholis mustelina, Mocoa mustelina",weasel skink,Saproscincus mustelinus,bio/SaproscincusMustelinus,,bio/Saproscincus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +299648,,"Rana maculata Brocchi, 1877",,masked mountain frog,"Sierrana maculata, Rana maculata, Lithobates maculata",highland frog,Lithobates maculatus,bio/LithobatesMaculatus,,bio/Lithobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +299668,,"Rana pustulosa Boulenger,1883",,Cascade frog,Rana pustulosa,Mexican Cascade frog,Lithobates pustulosus,bio/LithobatesPustulosus,,bio/Lithobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +299683,,"Rana sevosa Goin & Netting, 1940",,St. Tammany gopher frog,Rana sevosa,dusky gopher frog,Lithobates sevosus,bio/LithobatesSevosus,,bio/Lithobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +299684,,"Lithobates capito (LeConte, 1855)",,Carolina gopher frog,"Pantherana capito, Rana capito LeConte, 1855",Florida gopher frog,Lithobates capito,bio/LithobatesCapito,,bio/Lithobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +299727,,"Ranoidea dahlii (Boulenger, 1896)",,northern waterfrog,"Chiroleptes dahlii, Litoria dahlii",Dahl's olive treefrog,Ranoidea dahlii,bio/RanoideaDahlii,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +300230,,"Tetrodon patoca Hamilton, 1822",,Gangetic pufferfish,"Tetraodon patoca, Tetrodon patoca, Chelonodon patoca, Chelonodontops patoca (Hamilton, 1822)",milkspotted puffer,Chelonodontops patoca,bio/ChelonodontopsPatoca,,bio/Chelonodontops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +300297,,,,,,,Chilatherina,bio/Chilatherina,,,,,, +300304,,"Labidesthes sicculus (Cope, 1865)",,,Chirostoma sicculum,brook silverside,Labidesthes sicculus,bio/LabidesthesSicculus,,,,,, +300414,,,,,,,Variola,bio/Variola,,,,,, +300415,,"Variola louti (Fabricius, 1775)",,yellowedge coronation trout,Perca louti,yellow-edged lyretail,Variola louti,bio/VariolaLouti,,bio/Variola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +300855,,,,,,,Bembecia,bio/Bembecia,,,,,, +300877,,"Prionailurus bengalensis euptilurus (Elliot, 1871)",,Tsushima leopard cat,"Prionailurus bengalensis euptilura, Felis bengalensis euptilura",Amur leopard cat,Prionailurus bengalensis euptilurus,bio/PrionailurusBengalensisEuptilurus,,bio/PrionailurusBengalensis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionMammals,True, +301030,,,,,,,Pennisetia,bio/Pennisetia,,,,,, +301031,,"Sesia hylaeiformis Laspeyres, 1801",,raspberry clearwing moth,Sesia hylaeiformis,raspberry clearwing,Pennisetia hylaeiformis,bio/PennisetiaHylaeiformis,,bio/Pennisetia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +301037,,"Sphinx ichneumoniformis Denis & Schiffermuller, 1775",,six-belted clearwing moth,Sphinx ichneumoniformis,six-belted clearwing,Bembecia ichneumoniformis,bio/BembeciaIchneumoniformis,,bio/Bembecia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +301040,,,,,Synansphecia,,Pyropteron,bio/Pyropteron,,,,,, +301041,,"Pyropteron chrysidiforme (Esper, 1782)",,fiery clearwing moth,"Pyropteron chrysidiformis, Sphinx chrysidiformis",fiery clearwing,Pyropteron chrysidiforme,bio/PyropteronChrysidiforme,,bio/Pyropteron,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +301166,,"Lycaena battoides Behr, 1867",,buckwheat blue,Lycaena battoides,square-spotted blue,Euphilotes battoides,bio/EuphilotesBattoides,,bio/Euphilotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +301283,,,,,,,Neosilurus,bio/Neosilurus,,,,,, +301299,,"Rhinella atacamensis (Cei, 1962)",,Vallenar toad,"Bufo spinulosus atacamensis, Bufo atacamensis",Atacama toad,Rhinella atacamensis,bio/RhinellaAtacamensis,,bio/Rhinella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +302418,,"Smutsia temminckii (Smuts, 1832)",,Temminck's pangolin,"Manis temminckii, Manis temmincki",ground pangolin,Smutsia temminckii,bio/SmutsiaTemminckii,,bio/Smutsia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +302537,,"Bufo hemiophrys baxteri Porter, 1968",,Baxter's toad,"Bufo baxteri, Bufo hemiophrys baxteri",Wyoming toad,Anaxyrus baxteri,bio/AnaxyrusBaxteri,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +302540,,"Bufo hemiophrys Cope, 1886",,Dakota toad,Bufo hemiophrys,Canadian toad,Anaxyrus hemiophrys,bio/AnaxyrusHemiophrys,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +302541,,"Bufo cognatus californicus Camp, 1915",,Mexican arroyo toad,"Bufo cognatus californicus, Bufo californicus",arroyo toad,Anaxyrus californicus,bio/AnaxyrusCalifornicus,,bio/Anaxyrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +302544,,"Incilius marmoreus (Wiegmann, 1833)",,Wiegmann's toad,"Ollotis marmorea, Cranopsis marmorea, Bufo marmoreus",marbled toad ,Incilius marmoreus,bio/InciliusMarmoreus,,bio/Incilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +302546,,"Incilius melanochlorus (Cope, 1877)",,west forest toad,"Ollotis melanochlora, Bufo melanochlorus",dark green toad,Incilius melanochlorus,bio/InciliusMelanochlorus,,bio/Incilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +302776,,,,,,,Pristolepis,bio/Pristolepis,,,,,, +302777,,"Pristolepis fasciata (Bleeker, 1851)",,Nandid perch,Catopra fasciata,Malayan leaffish,Pristolepis fasciata,bio/PristolepisFasciata,,bio/Pristolepis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +303304,,"Ara glaucogularis Dabbene, 1921",,Caninde macaw,Ara caninde,Blue-throated macaw,Ara glaucogularis,bio/AraGlaucogularis,,bio/Ara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +303694,,,,,,,Pseudobalistes,bio/Pseudobalistes,,,,,, +303695,,"Pseudobalistes fuscus (Bloch & Schneider, 1801)",,brown triggerfish,Balistes fuscus,yellow-spotted triggerfish,Pseudobalistes fuscus,bio/PseudobalistesFuscus,,bio/Pseudobalistes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +303738,,,,,,,Aracana,bio/Aracana,,,,,, +303747,,,,,,,Torquigener,bio/Torquigener,,,,,, +303935,,"Platypodon perezii Poey, 1876",,reef shark,"Carcharhinus perezi, Carcharhinus springeri, Platypodon perezii, Eulamia springeri",Caribbean reef shark,Carcharhinus perezii,bio/CarcharhinusPerezii,,bio/Carcharhinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +304009,,"Hydrocyon brevis Gunther, 1864",,tiger fish,Hydrocyon brevis,tiger-fish,Hydrocynus brevis,bio/HydrocynusBrevis,,bio/Hydrocynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +304017,,"Hyphessobrycon serpae Durbin, 1908",,serpae tetra,"Megalamphodus eques, Cheirodon eques, Characiformes sp. BOLD:AAC1024, Hyphessobrycon serpae",jewel tetra,Hyphessobrycon eques,bio/HyphessobryconEques,,bio/Hyphessobrycon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +305659,,,,,,,Dioryctria,bio/Dioryctria,,,,,, +305662,,"Tinea abietella Denis & Schiffermuller, 1775",,fir coneworm,Tinea abietella,spruce coneworm,Dioryctria abietella,bio/DioryctriaAbietella,,bio/Dioryctria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +305819,,"Pseudophilautus leucorhinus (Lichtenstein & Martens, 1856)",,whitenose bubble-nest frog,"Philautus leucorhinus, Ixalus leucorhinus",white-nosed bush frog,Pseudophilautus leucorhinus,bio/PseudophilautusLeucorhinus,,bio/Pseudophilautus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +305821,,"Philautus neelanethrus Gururaja, Aravind, Ali, Ramachandra, Velavan, Krishnakumar & Aggarwal, 2007",,blue-eyed bush frog,"Pseudophilautus sp. 'neelanethrus', Philautus sp. 'neelanethrus'",blue-eyed yellow bush frog,Philautus neelanethrus,bio/PhilautusNeelanethrus,,bio/Philautus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +306578,,"Serranus chlorostigma Valenciennes, 1828",,brown spotted reef cod,Serranus chlorostigma,brownspotted grouper,Epinephelus chlorostigma,bio/EpinephelusChlorostigma,,bio/Epinephelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +306589,,,,,,,Cophixalus,bio/Cophixalus,,,,,, +306590,,"Cophixalus ornatus (Fry, 1912)",,ornate rainforest frog,Austrochaperina ornata,ornate frog ,Cophixalus ornatus,bio/CophixalusOrnatus,,bio/Cophixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +307205,,"Musca canicularis Linnaeus, 1761",,lesser house fly,Musca canicularis,little house fly,Fannia canicularis,bio/FanniaCanicularis,,bio/Fannia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +307978,,"Siren striata LeConte, 1824",,dwarf siren,Siren striata,slender dwarf siren,Pseudobranchus striatus,bio/PseudobranchusStriatus,,bio/Pseudobranchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +308091,,,,,,,Milyeringa,bio/Milyeringa,,,,,, +308092,,"Milyeringa veritas Whitley, 1945",,blind gudgeon,Milyeringa brooksi,cave gudgeon,Milyeringa veritas,bio/MilyeringaVeritas,,bio/Milyeringa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +309541,,"Takifugu obscurus (Abe, 1949)",,obscure pufferfish,"Sphoeroides ocellatus obscurus, Fugu obscurus, Sphoeroides ocellatus f. obscurus",mefugu,Takifugu obscurus,bio/TakifuguObscurus,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +309910,,,,,,,Pseudoplatystoma,bio/Pseudoplatystoma,,,,,, +309911,,"Pseudoplatystoma corruscans (Spix & Agassiz, 1829)",,spotted sorubim,"Siluriformes sp. BOLD:AAD0242, Platystoma corruscans",spotted shovelnose,Pseudoplatystoma corruscans,bio/PseudoplatystomaCorruscans,,bio/Pseudoplatystoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +310513,,"Ochlerotatus sollicitans (Walker, 1856)",,eastern salt marsh mosquito,"Aedes sollicitans, Ochlerotatus (Ochlerotatus) sollicitans",eastern saltmarsh mosquito,Ochlerotatus sollicitans,bio/OchlerotatusSollicitans,,bio/Ochlerotatus_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +310571,,"Holocentrus lanceolatus Bloch, 1790",,Queensland grouper,"Promicrops lanceolatus, Holocentrus lanceolatus",giant grouper,Epinephelus lanceolatus,bio/EpinephelusLanceolatus,,bio/Epinephelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +310664,,"Rana swinhoana Boulenger, 1903",,Bangkimtsing frog,"Rana swinhoana, Huia swinhoana",brown-backed odorous frog,Odorrana swinhoana,bio/OdorranaSwinhoana,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +310666,,"Rana hosii Boulenger, 1891",,poisonous rock frog,Rana hosii,Mount Dulit frog,Odorrana hosii,bio/OdorranaHosii,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +310668,,"Rana alticola Boulenger, 1882",,pointed-headed frog,"Nasirana alticola, Rana alticola, Hylorana alticola",Assam Hills frog,Clinotarsus alticola,bio/ClinotarsusAlticola,,bio/Clinotarsus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +310713,,"Rhinoceros cottoni Lydekker, 1908",,northern square-lipped rhinoceros,Rhinoceros cottoni,northern white rhinoceros,Ceratotherium simum cottoni,bio/CeratotheriumSimumCottoni,,bio/CeratotheriumSimum,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +310804,,"Heliconius peruvianus (Felder & Felder, 1859)",,Peruvian zebra longwing,"Heliconius peruviana, Heliconius charithonia peruviana, Heliconius charithonia peruvianus",Peruvian longwing,Heliconius peruvianus,bio/HeliconiusPeruvianus,,bio/Heliconius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +310915,,"Pangasianodon hypophthalmus (Sauvage, 1878)",,Thailand catfish,"Helicophagus hypophthalmus, Pangasius hypophthalmus, Pangasius sutchi",striped catfish,Pangasianodon hypophthalmus,bio/PangasianodonHypophthalmus,,bio/Pangasianodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +311037,,"Kallima inachus (Boisduval, 1846)",,dead leaf,Kallima inachus eucerca,orange oakleaf,Kallima inachus,bio/KallimaInachus,,bio/Kallima,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +311327,,"Tortrix Linnaeus, 1758",,,,,Tortrix,bio/Tortrix,,,,,, +311328,,"Tortrix viridana (Linnaeus, 1758)",,green oak tortrix,Phalaena viridana,green oak leaf roller,Tortrix viridana,bio/TortrixViridana,,bio/Tortrix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +311576,,,,,,,Gracixalus,bio/Gracixalus,,,,,, +311577,,"Kurixalus carinensis (Boulenger, 1893)",,Burmese bubble-nest frog,"Ixalus carinensis, Kurixalus carinensis, Aquixalus carinensis, Philautus carinensis",Karin Hills bushfrog,Gracixalus carinensis,bio/GracixalusCarinensis,,bio/Gracixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +311778,,,,,Aquixalus,,Kurixalus,bio/Kurixalus,,,,,, +311779,,"Rana eiffingeri Boettger, 1895",,Eiffinger's tree frog,"Chirixalus eiffingeri, Rhacophorus eiffingeri, Rana eiffingeri",big-thumbed treefrog,Kurixalus eiffingeri,bio/KurixalusEiffingeri,,bio/Kurixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +311820,,"Pseudophilautus schmarda (Kelaart, 1854)",,conical wart pygmy tree frog,"Rhacophorus schmardanus, Ixalus schmardanus, Theloderma schmarda, Polypedates schmarda, Philautus schmarda",Sri Lanka bug-eyed frog,Pseudophilautus schmarda,bio/PseudophilautusSchmarda,,bio/Pseudophilautus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +314003,,"Lythrypnus dalli (Gilbert, 1890)",,Catalina goby,Gobius dalli,bluebanded goby,Lythrypnus dalli,bio/LythrypnusDalli,,bio/Lythrypnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +314240,,,,,,,Idiacanthus ,bio/Idiacanthus_BonyFishes,,,,,, +314248,,,,,,,Lophiodes,bio/Lophiodes,,,,,, +314334,,"Hyla avivoca Viosca, 1928",,whistling tree frog,Hyla avivoca,bird-voiced treefrog,Dryophytes avivoca,bio/DryophytesAvivoca,,bio/Dryophytes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +315381,,"Picus leucolaemus Natterer & Malherbe, 1845",,white-throated woodpecker,Picus leucolaemus,Rufous-winged woodpecker,Piculus leucolaemus,bio/PiculusLeucolaemus,,bio/Piculus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +315409,,,,,,,Iniistius,bio/Iniistius,,,,,, +316131,,,,,,,Schedophilus,bio/Schedophilus,,,,,, +316160,,"Pseudobarbus quathlambae (Barnard, 1938)",,Maluti minnow,"Labeo quathlambae, Oreodaimon quathlambae",Maluti redfin,Pseudobarbus quathlambae,bio/PseudobarbusQuathlambae,,bio/Pseudobarbus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +316162,,,,,,,Nematalosa,bio/Nematalosa,,,,,, +316163,,Nematalosa erebi (Guenther 1868),,bony bream,Chatoessus erebi,Australian river gizzard shad,Nematalosa erebi,bio/NematalosaErebi,,bio/Nematalosa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317167,,"Atticora nitens Cassin, 1857",,square-tailed sawwing,Atticora nitens,square-tailed saw-wing,Psalidoprocne nitens,bio/PsalidoprocneNitens,,bio/Psalidoprocne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317171,,"Psalidoprocne obscura (Hartlaub, 1855)",,Fanti sawwing,Hirundo obscura,Fanti saw-wing,Psalidoprocne obscura,bio/PsalidoprocneObscura,,bio/Psalidoprocne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317174,,"Psalidoprocne pristoptera (Rueppell, 1840)",,blue sawwing,Hirundo pristoptera,blue saw-wing,Psalidoprocne pristoptera,bio/PsalidoprocnePristoptera,,bio/Psalidoprocne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317299,,,,,,,Acris,bio/Acris,,,,,, +317301,,"Rana gryllus LeConte, 1825",,southern cricket frog,Rana gryllus,Florida cricket frog,Acris gryllus,bio/AcrisGryllus,,bio/Acris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317303,,"Phyllomedusa litodryas Duellman & Trueb, 1967",,pink-sided leaf frog,"Agalychnis litodryas, Phyllomedusa litodryas, Phyllomedusa spurrelli",gliding leaf frog,Agalychnis spurrelli,bio/AgalychnisSpurrelli,,bio/Agalychnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317308,,,,Cuban treefrogs,Calyptahyla,West Indian treefrogs,Osteopilus,bio/Osteopilus,,,,,, +317312,,,,water-holding frogs,,,Cyclorana,bio/Cyclorana,,,,,, +317313,,"Ranoidea brevipes (Peters, 1871)",,short-footed frog,"Chiroleptes brevipes, Cyclorana brevipes, Litoria brevipes",savannah water-holding frog,Ranoidea brevipes,bio/RanoideaBrevipes,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317319,,"Hyla marsupiata Dumeril & Bibron, 1841",,marsupian frog,Hyla marsupiata,common marsupial frog,Gastrotheca marsupiata,bio/GastrothecaMarsupiata,,bio/Gastrotheca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317327,,"Rana boans Linnaeus, 1758",,giant gladiator treefrog,"Hypsiboas boans, Hyla boans, Rana boans",rusty treefrog,Boana boans,bio/BoanaBoans,,bio/Boana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317335,,"Tlalocohyla loquax (Gaige & Stuart, 1934)",,loquacious treefrog,Hyla loquax,mahogany treefrog,Tlalocohyla loquax,bio/TlalocohylaLoquax,,bio/Tlalocohyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317336,,"Hyla melanomma Taylor, 1940",,blackeye treefrog,Hyla melanomma,black-eyed treefrog,Exerodonta melanomma,bio/ExerodontaMelanomma,,bio/Exerodonta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317344,,"Isthmohyla rivularis (Taylor, 1952)",,American Cinchona Plantation treefrog,Hyla rivularis,Cinchona Plantation treefrog,Isthmohyla rivularis,bio/IsthmohylaRivularis,,bio/Isthmohyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317360,,,,big-headed frogs,,,Ischnocnema,bio/Ischnocnema,,,,,, +317363,,"Litoria peronii (Tschudi, 1838)",,Peron's treefrog,"Litoria peroni, Dendrohyas peronii, Hyla peronii",emerald-spotted treefrog,Litoria peronii,bio/LitoriaPeronii,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317382,,"Phyllomedusa lemur Boulenger, 1882",,lemur frog,"Phyllomedusa lemur, Hylomantis lemur",lemur leaf frog,Agalychnis lemur,bio/AgalychnisLemur,,bio/Agalychnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317388,,"Pternohyla fodiens Boulenger, 1882",,northern casque-headed frog,Pternohyla fodiens,lowland burrowing treefrog,Smilisca fodiens,bio/SmiliscaFodiens,,bio/Smilisca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317398,,"Smilisca cyanosticta (Smith, 1953)",,blue-spotted Mexican treefrog,Hyla phaeota cyanosticta,blue-spotted treefrog,Smilisca cyanosticta,bio/SmiliscaCyanosticta,,bio/Smilisca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317402,,,,casquehead treefrogs,,shovel-headed treefrogs,Triprion,bio/Triprion,,,,,, +317403,,"Triprion petasatus (Cope, 1865)",,Yucatecan casquehead treefrog,Pharyngodon petasatus,Yucatecan shovel-headed treefrog,Triprion petasatus,bio/TriprionPetasatus,,bio/Triprion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317899,,"Squalius danilewskii Kessler, 1877",,Danilevskii's dace,Squalius danilewskii,Danilewski's dace,Leuciscus danilewskii,bio/LeuciscusDanilewskii,,bio/Leuciscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +317942,,,,,,,Microbatrachella,bio/Microbatrachella,,,,,, +317943,,"Phrynobatrachus capensis Boulenger, 1910",,Cape Flats frog,Phrynobatrachus capensis,micro frog,Microbatrachella capensis,bio/MicrobatrachellaCapensis,,bio/Microbatrachella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318254,,"Nyctimantis brunoi (Pombal, 1993)",,Bruno's bony-headed frog,Aparasphenodon brunoi,Bruno's casque-headed frog,Nyctimantis brunoi,bio/NyctimantisBrunoi,,bio/Nyctimantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318255,,,,,,canebrake treefrogs,Aplastodiscus,bio/Aplastodiscus,,,,,, +318302,,"Hyla callipygia Cruz and Peixoto, 1985",,Bocaina treefrog,"Aplastodiscus callipygius, Hyla callipygia, Hyla albosignata",Lutz's treefrog,Aplastodiscus albosignatus,bio/AplastodiscusAlbosignatus,,bio/Aplastodiscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318367,,"Litoria meiriana (Tyler, 1969)",,rockhole frog,Hyla meiriana,Australian cross-banded treefrog,Litoria meiriana,bio/LitoriaMeiriana,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318376,,"Trachycephalus resinifictrix (Goeldi, 1907)",,blue milk frog,"Phrynohyas resinifictrix, Hyla resinifictrix",mission golden-eyed treefrog,Trachycephalus resinifictrix,bio/TrachycephalusResinifictrix,,bio/Trachycephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318396,,"Scinax staufferi (Cope, 1865)",,Stauffer's treefrog,Hyla staufferi,Stauffer's longnosed treefrog,Scinax staufferi,bio/ScinaxStaufferi,,bio/Scinax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318402,,,,,,brown-eyed treefrogs,Nyctimantis,bio/Nyctimantis,,,,,, +318405,,,,,,,Phasmahyla,bio/Phasmahyla,,,,,, +318408,,,,,Somuncuria,four-eyed frogs,Pleurodema,bio/Pleurodema,,,,,, +318412,,,,,,Amazon treefrogs,Tepuihyla,bio/Tepuihyla,,,,,, +318413,,"Tepuihyla edelcae (Ayarzaguena, Senaris & Gorzula, 1993)",,Ayarzaguena's treefrog,Osteocephalus edelcae,white-lipped bog-frog,Tepuihyla edelcae,bio/TepuihylaEdelcae,,bio/Tepuihyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318551,,"Staurois loloensis Liu, 1950",,Lolokou sucker frog,"Staurois loloensis, Amolops liangshanensis, Staurois liangshanensis",rufous-spotted torrent frog,Amolops loloensis,bio/AmolopsLoloensis,,bio/Amolops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +318742,,"Mayaheros Rican & Pialek, 2016",,,,,Mayaheros,bio/Mayaheros,,,,,, +318743,,"Nandopsis urophthalmus (Gunther, 1862)",,Mexican mojarra,"Herichthys urophthalmus, Nandopsis urophthalma, Parapetenia urophthalma, Cichlasoma uropthalmus, Cichlasoma urophthalmum, Cichlasoma uropthalmum, Nandopsis urophthalmus, Heros urophthalmus, Cichlasoma urophthtalmus, Cichlasoma urophthalmus, Astronotus urophthalmus",Mayan cichlid,Mayaheros urophthalmus,bio/MayaherosUrophthalmus,,bio/Mayaheros,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +319323,,"Puntius semifasciolatus (Gunther, 1868)",,gold barb,"Puntius semifasciolatus, Capoeta semifasciolata",Chinese barb,Barbodes semifasciolatus,bio/BarbodesSemifasciolatus,,bio/Barbodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +319443,,,,,,,Melamphaes,bio/Melamphaes,,,,,, +319444,,"Melamphaes lugubris Gilbert, 1891",,highsnout melamphid,Melamphaes sp. CBM:ZF:15231,highsnout bigscale,Melamphaes lugubris,bio/MelamphaesLugubris,,bio/Melamphaes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +319543,,"Myliobatis californica Gill, 1865",,bat ray,Myliobatis californicus,bat eagle ray,Myliobatis californica,bio/MyliobatisCalifornica,,bio/Myliobatis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +319817,,"Oryzorictes hova Grandidier, 1870",,mole tenrec,Oryzorictes talpoides,Hova rice tenrec,Oryzorictes hova,bio/OryzorictesHova,,bio/Oryzorictes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +320016,,,,,,,Xestia,bio/Xestia,,,,,, +320266,,,,,,,Catopsilia,bio/Catopsilia,,,,,, +320267,,"Papilio pomona Fabricius, 1775",,lemon emigrant,Papilio pomona,lemon migrant,Catopsilia pomona,bio/CatopsiliaPomona,,bio/Catopsilia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +320293,,,,,,,Pyrisitia,bio/Pyrisitia,,,,,, +320294,,"Papilio proterpia Fabricius, 1775",,little jaune,"Papilio proterpia, Eurema proterpia",tailed orange,Pyrisitia proterpia,bio/PyrisitiaProterpia,,bio/Pyrisitia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +320472,,"Pseudoeurycea belli sierraoccidentalis Lowe, Jones & Wright, 1968",,pine-oak salamander,"Pseudoeurycea bellii sierraoccidentalis, Pseudoeurycea sierraoccidentalis, Pseudoeurycea belli sierraoccidentalis, Isthmura bellii sierraoccidentalis",Sonoran false brook salamander,Isthmura sierraoccidentalis,bio/IsthmuraSierraoccidentalis,,bio/Isthmura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +320587,,,,,,,Prionotus,bio/Prionotus,,,,,, +320612,,"Podothecus accipenserinus (Tilesius, 1813)",,sturgeon-like sea-poacher,"Podothecus acipenserinus, Agonus accipenserinus, Phalangistes acipenserinus, Agonus acipenserinus, Phalangistes accipenserinus",sturgeon poacher,Podothecus accipenserinus,bio/PodothecusAccipenserinus,,bio/Podothecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +321043,,"Hibiscus kokio Hillebr. ex Wawra, 1873",,red rosemallow,Hibiscus kokia,koki`o ula,Hibiscus kokio,bio/HibiscusKokio,,bio/Hibiscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +321806,,"Incilius cycladen (Lynch & Smith, 1966)",,northern roughgland toad,"Ollotis cycladen, Bufo cycladen",northern rough-gland toad,Incilius cycladen,bio/InciliusCycladen,,bio/Incilius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +322711,,"Peromyscus lepturus Merriam, 1898",,Zempoaltepec deermouse,Peromyscus lepturus,slender-tailed deer mouse,Habromys lepturus,bio/HabromysLepturus,,bio/Habromys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +323737,,,,,,,Trachylepis,bio/Trachylepis,,,,,, +323754,,"Triturus montandoni (Boulenger, 1880)",,Montandon's newt,"Triturus montandoni, Triton montandoni",Carpathian newt,Lissotriton montandoni,bio/LissotritonMontandoni,,bio/Lissotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +323755,,"Triturus italicus (Peracca, 1898)",,Italian newt,"Molge italica, Triturus italicus, Triton italicus",South Italian newt,Lissotriton italicus,bio/LissotritonItalicus,,bio/Lissotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +324348,,"Paradactylodon persicus (Eiselt & Steiner, 1970)",,Persian cave salamander,"Iranodon persicus, Batrachuperus gorganensis, Paradactylodon gorganensis, Batrachuperus persicus",Persian mountain salamander,Paradactylodon persicus,bio/ParadactylodonPersicus,,bio/Paradactylodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +324349,,"Pseudotriton montanus Baird, 1850",,,,mud salamander,Pseudotriton montanus,bio/PseudotritonMontanus,,,,,, +325165,,,,,,,Nomascus,bio/Nomascus,,,,,, +325167,,Hoolock Mootnick & Groves 2005,,,Bunopithecus,,Hoolock,bio/Hoolock,,,,,, +325554,,"Rana sauteri Boulenger, 1909",,Sauter's brown frog,Pseudoamolops sauteri,Taiwan groove-toed frog,Rana sauteri,bio/RanaSauteri,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +325556,,"Rana chunganensis Pope, 1929",,Chungan sucker frog,"Staurois chunganensis, Rana chunganensis, Hylorana chunganensis",Chungan torrent frog,Amolops chunganensis,bio/AmolopsChunganensis,,bio/Amolops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +325557,,"Staurois granulosus Liu & Hu, 1961",,Sichuan sucker frog,Staurois granulosus,granular torrent frog,Amolops granulosus,bio/AmolopsGranulosus,,bio/Amolops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +325558,,"Staurois lifanensis Liu, 1945",,Lifan sucker frog,Staurois lifanensis,Lifan torrent frog,Amolops lifanensis,bio/AmolopsLifanensis,,bio/Amolops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +326431,,,,,,,Kryptolebias,bio/Kryptolebias,,,,,, +326940,,"Rana versabilis Liu & Hu, 1962",,Kwangsi frog,"Huia versabilis, Rana versabilis",bamboo leaf odorous frog,Odorrana versabilis,bio/OdorranaVersabilis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +326968,,"Ziziphus jujuba Mill., 1768",,zao,"Zizyphus jujuba, Rhamnus zizyphus",common jujube,Ziziphus jujuba,bio/ZiziphusJujuba,,bio/Ziziphus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +326975,,,,,,grainy frogs,Kalophrynus,bio/Kalophrynus,,,,,, +327781,,"Pseudogramma gregoryi (Breder, 1927)",,reef bass,Caribrhegma gregoryi,foureye basslet,Pseudogramma gregoryi,bio/PseudogrammaGregoryi,,bio/Pseudogramma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +327803,,"Serranus acutirostris Valenciennes, 1828",,western comb grouper,Serranus acutirostris,comb grouper ,Mycteroperca acutirostris,bio/MycteropercaAcutirostris,,bio/Mycteroperca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +327806,,"Serranus fuscus Lowe, 1838",,comb grouper,Serranus fuscus,island grouper,Mycteroperca fusca,bio/MycteropercaFusca,,bio/Mycteroperca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +327815,,,,,,,Acanthistius,bio/Acanthistius,,,,,, +327941,,"Serranus interstitialis Poey, 1860",,salmon rockfish,Serranus interstitialis,yellowmouth grouper,Mycteroperca interstitialis,bio/MycteropercaInterstitialis,,bio/Mycteroperca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +327944,,"Serranus daemelii Gunther, 1876",,black rockcod,"Serranus daemelii, Epinephelus daemeli",saddletail grouper,Epinephelus daemelii,bio/EpinephelusDaemelii,,bio/Epinephelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +327958,,"Rana angolensis Bocage, 1866",,dusky-throated frog,"Rana angolensis, Afrana angolensis",Angola river frog,Amietia angolensis,bio/AmietiaAngolensis,,bio/Amietia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +327960,,"Staurois hainanensis Boulenger, 1900",,Hainan torrent frog,"Rana hainanensis, Amolops hainanensis, Staurois hainanensis",Hainan sucker frog,Amolops hainanensis,bio/AmolopsHainanensis,,bio/Amolops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +327965,,"Stenorhynchus natalensis Smith, 1849",,snoring puddle frog,Stenorhynchus natalensis,Natal puddle frog,Phrynobatrachus natalensis,bio/PhrynobatrachusNatalensis,,bio/PhrynobatrachusNatalensisSpeciesComplex,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +329116,,"Tor tambroides (Bleeker, 1854)",,Malaysian mahseer,"Labeobarbus tambroides, Barbus tambroides",Thai mahseer,Tor tambroides,bio/TorTambroides,,bio/Tor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +329257,,"Rana glandulosa Boulenger, 1882",,Sarawak frog,"Hylarana glandulosa, Rana glandulosa",glandular frog,Pulchrana glandulosa,bio/PulchranaGlandulosa,,bio/Pulchrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +329258,,"Rana baramica Boettger, 1900",,masked frog,"Rana baramica, Hylarana baramica",masked rough-sided frog,Pulchrana baramica,bio/PulchranaBaramica,,bio/Pulchrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +330459,,,,,,,Hyperomyzus,bio/Hyperomyzus,,,,,, +330460,,"Hyperomyzus lactucae (Linnaeus, 1758)",,sow thistle aphid,Nasonovia lactucae,sowthistle aphid,Hyperomyzus lactucae,bio/HyperomyzusLactucae,,bio/Hyperomyzus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +332575,,"Salamandra cirrigera Green, 1831",,southeastern two-lined salamander,"Eurycea bislineata cirrigera, Salamandra cirrigera",southern two-lined salamander,Eurycea cirrigera,bio/EuryceaCirrigera,,bio/Eurycea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +332576,,"Eurycea guttolineata Holbrook, 1838",,southern long-tailed salamander,Eurycea longicauda guttolineata,three-lined salamander,Eurycea guttolineata,bio/EuryceaGuttolineata,,bio/Eurycea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +332578,,"Plethodon angusticlavius Grobman, 1944",,Ozark zigzag salamander,"Plethodon cinereus angusticlavius, Plethodon dorsalis angusticlavius",Ozark salamander,Plethodon angusticlavius,bio/PlethodonAngusticlavius,,bio/Plethodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +333424,,"Fierasfer boraborensis Kaup, 1856",,small-finned messmate-fish,"Encheliophis boraborensis, Fierasfer boraborensis",pinhead pearlfish,Carapus boraborensis,bio/CarapusBoraborensis,,bio/Carapus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +333676,,"Rana albolabris Hallowell, 1856",,forest white-lipped frog,"Amnirana longipes, Amnirana albolbaris, Limnodytes albolabris, Rana albolabris, Hydrophylax albolabris, Hylarana albolabris, Hyla albolabris",white-lipped frog,Amnirana albolabris,bio/AmniranaAlbolabris,,bio/Amnirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +333684,,"Petropedetes martiensseni (Nieden, 1911)",,Usambara montane torrent frog,Petropedetes martiensseni,Usambara torrent frog,Arthroleptides martiensseni,bio/ArthroleptidesMartiensseni,,bio/Arthroleptides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +333686,,"Staurois acridoides Cope, 1867",,Zanzibar river frog,Staurois acridoides,Zanzibar puddle frog,Phrynobatrachus acridoides,bio/PhrynobatrachusAcridoides,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +333694,,"Strongylopus grayii (Smith, 1849)",,Gray's spotted frog,Rana grayii,Gray's stream frog,Strongylopus grayii,bio/StrongylopusGrayii,,bio/Strongylopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +334384,,,,,,,Diapterus,bio/Diapterus,,,,,, +334885,,"Pseudopentaceros richardsoni (Smith, 1844)",,southern boarfish,Pentaceros richardsoni,pelagic armorhead,Pseudopentaceros richardsoni,bio/PseudopentacerosRichardsoni,,bio/Pseudopentaceros,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +334892,,"Atypus strigatus Gunther, 1860",,maso sweep,Atypus strigatus,Australian mado,Atypichthys strigatus,bio/AtypichthysStrigatus,,bio/Atypichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +334915,,"Variola albimarginata Baissac, 1953",,white-edge coronation trout,Variola albomarginata,white-edged lyretail,Variola albimarginata,bio/VariolaAlbimarginata,,bio/Variola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +334930,,,,,,,Cymbacephalus,bio/Cymbacephalus,,,,,, +334938,,,,,,,Pterygotrigla,bio/Pterygotrigla,,,,,, +334942,,"Trigla kumu Cuvier, 1829",,red gurnard,Trigla kumu,bluefin gurnard,Chelidonichthys kumu,bio/ChelidonichthysKumu,,bio/Chelidonichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +334986,,"Hydrolagus ogilbyi (Waite, 1898)",,Waite's ghost shark,Chimaera ogilbyi,Ogilby's ghostshark,Hydrolagus ogilbyi,bio/HydrolagusOgilbyi,,bio/Hydrolagus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +334999,,"Trygon jenkinsii Annandale, 1909",,roughback stingray,"Himantura jenkinsii, Trygon jenkinsii",Jenkins' whipray,Pateobatis jenkinsii,bio/PateobatisJenkinsii,,bio/Pateobatis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +335394,,,,,,,Actinemys,bio/Actinemys,,,,,, +335395,,"Emys marmorata Baird & Girard, 1852",,Western pond turtle,"Emys marmorata, Clemmys marmorata",Northwestern pond turtle,Actinemys marmorata,bio/ActinemysMarmorata,,bio/Actinemys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +335999,,"Sphinx quinquemaculata Haworth, 1803",,five-spotted hawkmoth,"Manduca cinquemaculata, Sphinx quinquemaculata",tomato hornworm ,Manduca quinquemaculata,bio/ManducaQuinquemaculata,,bio/Manduca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336072,,"Litoria microbelos (Cogger, 1966)",,javelin frog,Hyla dorsalis microbelos,pygmy rocketfrog,Litoria microbelos,bio/LitoriaMicrobelos,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336074,,"Litoria rothii (De Vis, 1884)",,Roth's tree frog,"Litoria rothi, Hyla rothii",rust-eyed treefrog,Litoria rothii,bio/LitoriaRothii,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336075,,"Litoria bicolor (Gray, 1842)",,northern sedgefrog,Hyla bicolor,northern dwarf treefrog,Litoria bicolor,bio/LitoriaBicolor,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336077,,"Pelodytes nasutus Gray, 1842",,striped rocketfrog,"Hyla nasuta, Pelodytes nasutus",Australian rocketfrog,Litoria nasuta,bio/LitoriaNasuta,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336078,,"Litoria inermis (Peters, 1867)",,fleck-lipped treefrog,Chiroleptes inermis,bumpy rocketfrog,Litoria inermis,bio/LitoriaInermis,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336080,,"Litoria coplandi (Tyler, 1968)",,sandstone frog,Hyla coplandi,Copland's rock frog,Litoria coplandi,bio/LitoriaCoplandi,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336081,,"Litoria watjulumensis (Copland, 1957)",,Watjulum Mission treefrog,"Litoria wotjulumensis, Hyla latopalmata watjulumensis, Hyla wotjulumensis, Hyla watjulumensis",giant rocketfrog,Litoria watjulumensis,bio/LitoriaWatjulumensis,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336082,,"Cyclorana longipes Tyler and Martin, 1977",,Kimberley water-holding frog,Litoria longipes,long-footed frog,Cyclorana longipes,bio/CycloranaLongipes,,bio/Cyclorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +336083,,"Ranoidea alboguttata (Gunther, 1867)",,striped burrowing frog,"Litoria alboguttata, Chiroleptes alboguttatus, Cyclorana alboguttata",green-striped burrowing frog,Ranoidea alboguttata,bio/RanoideaAlboguttata,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +337631,,,,,,,Brachyplatystoma,bio/Brachyplatystoma,,,,,, +337742,,,,,,,Belodontichthys,bio/Belodontichthys,,,,,, +337775,,"Kryptopterus macrocephalus (Bleeker, 1858)",,poor man's glass catfish,"Cryptopterus macrocephalus, Kryptopterichthys macrocephalus",striped glass catfish,Kryptopterus macrocephalus,bio/KryptopterusMacrocephalus,,bio/Kryptopterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +337883,,"Trygonorrhina fasciata Muller & Henle, 1841",,eastern fiddler ray,"Trygonorrhina sp. A PRL-1994, Trygonorrhina sp. A RDW-2008",eastern fiddler,Trygonorrhina fasciata,bio/TrygonorrhinaFasciata,,bio/Trygonorrhina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +338093,,"Pterygoplichthys scrophus (Cope, 1874)",,chocolate pleco,"Liposarcus scrophus, Glyptoperichthys scrophus, Liposcarus scrophus",rhino pleco,Pterygoplichthys scrophus,bio/PterygoplichthysScrophus,,bio/Pterygoplichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +339868,,,,,,,Lissotriton,bio/Lissotriton,,,,,, +340506,,,,,,,Lepidosaphes,bio/Lepidosaphes,,,,,, +341695,,,,,,,Oreocryptophis,bio/Oreocryptophis,,,,,, +341696,,"Elaphe poryphyracea Cantor, 1839",,red bamboo snake,"Elaphe porphyracea, Coluber porphyraceus, Elaphe poryphyracea, Oreophis porphyraceus",black-banded trinket snake,Oreocryptophis porphyraceus,bio/OreocryptophisPorphyraceus,,bio/Oreocryptophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +342440,,,,,,,Heteropriacanthus,bio/Heteropriacanthus,,,,,, +342441,,"Priacanthus boops (Forster, 1801)",,glasseye snapper,"Priacanthus cruentatus, Labrus cruentatus, Anthias boops, Cookeolus boops, Priacanthus boops",glasseye,Heteropriacanthus cruentatus,bio/HeteropriacanthusCruentatus,,bio/Heteropriacanthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +342442,,,,,,,Mulloidichthys,bio/Mulloidichthys,,,,,, +342569,,,,,,European brook newts,Calotriton,bio/Calotriton,,,,,, +342815,,"Rana exilispinosa Liu & Hu, 1975",,little spiny frog,"Rana exilispinosa, Paa exilispinosa",Hong Kong spiny frog,Quasipaa exilispinosa,bio/QuasipaaExilispinosa,,bio/Quasipaa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +342817,,"Rana liebigii Gunther, 1860",,Sikkim spiny frog,"Paa liebigii, Rana liebigii, Chaparana liebigii",spiny-armed frog,Nanorana liebigii,bio/NanoranaLiebigii,,bio/Nanorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +342819,,"Rana maculosa Liu, Hu & Yang, 1960",,spotted paa frog,"Chaparana maculosa, Paa maculosa, Rana maculosa",piebald spiny frog,Nanorana maculosa,bio/NanoranaMaculosa,,bio/Nanorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +343929,,"Gracula saularis Linnaeus, 1758",,Oriental Magpie Robin,Gracula saularis,Oriental magpie-robin,Copsychus saularis,bio/CopsychusSaularis,,bio/Copsychus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +345721,,"Pontia beckerii (Edwards, 1871)",,Great Basin white,Pieris beckerii,sagebrush white,Pontia beckerii,bio/PontiaBeckerii,,bio/Pontia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +346248,,,,,,,Dosidicus,bio/Dosidicus,,,,,, +346249,,"Ommastrephes gigas d'Orbigny, 1835",,jumbo squid,Ommastrephes gigas,jumbo flying squid,Dosidicus gigas,bio/DosidicusGigas,,bio/Dosidicus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +346448,,"Rhaebo guttatus (Schneider, 1799)",,spotted toad,Bufo guttatus,smooth-sided toad,Rhaebo guttatus,bio/RhaeboGuttatus,,bio/Rhaebo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +346451,,"Phrynoidis juxtasper (Inger, 1964)",,giant river toad,"Phrynoidis juxtaspera, Bufo juxtasper",Sungei Tawan toad,Phrynoidis juxtasper,bio/PhrynoidisJuxtasper,,bio/Phrynoidis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +349641,,,,,,,Plectorhinchus,bio/Plectorhinchus,,,,,, +351164,,"Papilio polyctor Boisduval, 1836",,common peacock butterfly,Papilio bianor polyctor,common peacock,Papilio polyctor,bio/PapilioPolyctor,,bio/Papilio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +351416,,,,,"Sumalia, Lamasia, Pandita, Tarattia",,Athyma,bio/Athyma,,,,,, +352245,,"Hippoglossoides pinetorum (Jordan and Starks, 1904)",,sohachi flounder,Hippoglossoides pinetorum,sohachi ,Cleisthenes pinetorum,bio/CleisthenesPinetorum,,bio/Cleisthenes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +354129,,"Rhyacosiredon rivularis Taylor, 1940",,Michoacan stream siredon,Rhyacosiredon rivularis,Michoacan stream salamander ,Ambystoma rivulare,bio/AmbystomaRivulare,,bio/Ambystoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +354432,,,,,,,Polytus,bio/Polytus,,,,,, +354433,,"Polytus mellerborgi Heller, 1927",,minute banana weevil,Polytus mellerborgii,small banana weevil,Polytus mellerborgi,bio/PolytusMellerborgi,,bio/Polytus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +354943,,"Gesta Evans, 1953",,,,,Gesta,bio/Gesta,,,,,, +354944,,"Thanaos gesta Herrich-Schaffer, 1863",,false duskywing,Thanaos gesta,blue-banded skipper,Gesta gesta,bio/GestaGesta,,bio/Gesta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +355513,,,,,,,Leuresthes,bio/Leuresthes,,,,,, +355514,,"Leuresthes tenuis (Ayres, 1860)",,grunion,Atherinopsis tenuis,California grunion,Leuresthes tenuis,bio/LeuresthesTenuis,,bio/Leuresthes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +355677,,"Hydrus stokesii Gray, 1846",,Stokes's sea snake,"Hydrus stokesii, Disteira stokesi, Astrotia stokesi, Astrotia stokesii",Stokes's seasnake,Hydrophis stokesii,bio/HydrophisStokesii,,bio/Hydrophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +355912,,,,,,,Gnorimoschema,bio/Gnorimoschema,,,,,, +355915,,"Gnorimoschema gallaesolidaginis (Riley, 1869)",,goldenrod stem gall,Gelechia gallaesolidaginis,goldenrod stem gall moth,Gnorimoschema gallaesolidaginis,bio/GnorimoschemaGallaesolidaginis,,bio/Gnorimoschema,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356210,,"Hylella fleischmanni Boettger, 1893",,Fleischmann's glass frog,"Hylella fleischmanni, Cochranella fleischmanni, Centrolenella fleischmanni",northern glassfrog,Hyalinobatrachium fleischmanni,bio/HyalinobatrachiumFleischmanni,,bio/Hyalinobatrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356215,,"Phanerotis fletcheri Boulenger, 1890",,Fletchers cannibal frog,Phanerotis fletcheri,Fletchers frog,Lechriodus fletcheri,bio/LechriodusFletcheri,,bio/Lechriodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356218,,"Leptopelis bocagii (Guenter, 1865)",,horseshoe forest treefrog,"Hylambates bocagii, Hylambates bocagei, Cystignathus bocagii, Leptopelis bocagei",Bocage's burrowing frog,Leptopelis bocagii,bio/LeptopelisBocagii,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356228,,"Ingerana baluensis (Boulenger, 1896)",,Balu eastern frog,"Cornufer baluensis, Ingerana baluensis",Balu oriental frog,Alcalus baluensis,bio/AlcalusBaluensis,,bio/Alcalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356243,,"Rana cooperi Parker, 1930",,Cooper's grassland frog,Rana cooperi,dark-bellied grass frog,Ptychadena cooperi,bio/PtychadenaCooperi,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356264,,,,,,,Calluella,bio/Calluella,,,,,, +356265,,"Megalophrys guttulata Blyth, 1856",,striped spadefoot frog,"Calluella guttata, Megalophrys guttulata",orange burrowing frog,Calluella guttulata,bio/CalluellaGuttulata,,bio/Calluella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356300,,,,,,,Heleioporus,bio/Heleioporus,,,,,, +356301,,"Rana australiaca Shaw & Nodder, 1795",,spiny-footed frog,Rana australiaca,giant burrowing frog,Heleioporus australiacus,bio/HeleioporusAustraliacus,,bio/Heleioporus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356314,,"Sylvirana daemeli (Steindachner, 1868)",,wood frog,"Hylorana daemeli, Rana daemeli, Sylvirana daemeli, Hylarana daemeli",Australian wood frog,Papurana daemeli,bio/PapuranaDaemeli,,bio/Papurana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +356329,,,,,Nesomantis,,Sooglossus,bio/Sooglossus,,,,,, +357280,,,,,,,Acantopsis,bio/Acantopsis,,,,,, +357281,,"Cobitis choirorhynchos Bleeker, 1854",,horseface loach,Cobitis choirorhynchos,longnose loach,Acantopsis choirorhynchos,bio/AcantopsisChoirorhynchos,,bio/Acantopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +357811,,"Mullus imberbis Linnaeus, 1758",,king of the mullets,Mullus imberbis,cardinalfish,Apogon imberbis,bio/ApogonImberbis,,bio/Apogon_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +359533,,"Rhacophorus naso Annandale, 1912",,uphill tree frog,"Polypedates naso, Rhacophorus naso",long-snouted treefrog,Kurixalus naso,bio/KurixalusNaso,,bio/Kurixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +359535,,"Rhacophorus appendiculatus (Guenther, 1858)",,South-east Asian tree frog,"Rhacophorus appendiculatus, Polypedates appendiculatus",Philippine flying frog,Kurixalus appendiculatus,bio/KurixalusAppendiculatus,,bio/Kurixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +359538,,"Rhacophorus bisacculus Taylor, 1962",,Taylor's tree frog,Rhacophorus bisacculus,green-limbed tree frog,Kurixalus bisacculus,bio/KurixalusBisacculus,,bio/Kurixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +359668,,"Rana shuchinae Liu, 1950",,Sichuan frog,"Hylarana shuchinae, Pelophylax shuchinae",gland-shanked pond frog,Rana shuchinae,bio/RanaShuchinae,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +360504,,"Hapalogenys Richardson, 1844",,,,,Hapalogenys,bio/Hapalogenys,,,,,, +360505,,"Hapalogenys mucronatus (Eydoux & Souleyet, 1850)",,setodai,Hapalogenys mucronatus,broadbanded velvetchin,Hapalogenys analis,bio/HapalogenysAnalis,,bio/Hapalogenys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +363190,,"Coilia grayii Richardson, 1845",,pointed-tailed anchovy,Coilia grayi,Gray's grenadier anchovy,Coilia grayii,bio/CoiliaGrayii,,bio/Coilia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +364768,,"Rhinoderma signifera Girard, 1853",,Otavio's robber frog,"Paludicola signifer, Paludicola signifera, Rhinoderma signifera",Girard's dwarf frog,Physalaemus signifer,bio/PhysalaemusSignifer,,bio/Physalaemus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +365053,,,,,,,Ilisha,bio/Ilisha,,,,,, +365059,,"Coilia nasus Temminck & Schlegel, 1846",,lake anchovy,"Coilia nasus taihuensis, Coilia ectenes taihuensis, Coilia taihuensis, Coilia ectenes",Japanese grenadier anchovy,Coilia nasus,bio/CoiliaNasus,,bio/Coilia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +365581,,"Pangasius sanitwongsei Smith, 1931",,Paroon shark,"Pangasius beani, Pangasius sanitwangsei",giant pangasius,Pangasius sanitwongsei,bio/PangasiusSanitwongsei,,bio/Pangasius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +367642,,"Hyperolius dorsalis Peters, 1875",,striped spiny reed frog,Hyperolius dorsalis,brown banana frog,Afrixalus dorsalis,bio/AfrixalusDorsalis,,bio/Afrixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +367647,,"Rana ovalis Schneider, 1799",,slate burrowing frog,"Nelsonophryne aterrima A AJC-2009, Engystoma ovale, Microps ovalis, Rana ovalis, Gastrophryne ovalis, Dactylethra ovalis, Engystoma ovalis",common oval frog,Elachistocleis ovalis,bio/ElachistocleisOvalis,,bio/Elachistocleis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +367648,,"Wijayarana masonii (Boulenger, 1884)",,Javan torrent frog,"Rana masonii, Hylorana massonii, Huia masoni, Huia masonii, Huia javana",Java torrent frog,Wijayarana masonii,bio/WijayaranaMasonii,,bio/Wijayarana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +367669,,"Strongylopus bonaespei (Dubois, 1981)",,Jonkersberg frog,Rana bonaespei,banded stream frog,Strongylopus bonaespei,bio/StrongylopusBonaespei,,bio/Strongylopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +367674,,"Platymantis guppyi (Boulenger, 1884)",,Treasury wrinkled ground frog,"Discodeles guppyi, Platymantis guppyi, Rana guppyi",Shortland Island webbed frog,Cornufer guppyi,bio/CornuferGuppyi,,bio/Cornufer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +369509,,"Rana weiningensis Liu, Hu, and Yang, 1962",,Weining frog,Rana weiningensis,Weining groove-toed frog,Pseudorana weiningensis,bio/PseudoranaWeiningensis,,bio/Pseudorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +369511,,"Rana pleuraden Boulenger, 1904",,Yunkwei plateau frog,"Babina pleuraden, Rana pleuraden",Yunnan pond frog,Nidirana pleuraden,bio/NidiranaPleuraden,,bio/Nidirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +369514,,"Rana andersonii Boulenger, 1882",,Yunnan odorous frog,Rana andersonii,golden crossband frog,Odorrana andersonii,bio/OdorranaAndersonii,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +369515,,"Rana spinulosa Smith, 1923",,spiny frog,"Hylarana spinulosa, Rana spinulosa",fine-spined frog,Sylvirana spinulosa,bio/SylviranaSpinulosa,,bio/Sylvirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +369626,,,,,,,Balantiocheilos,bio/Balantiocheilos,,,,,, +369627,,"Barbus melanopterus Bleeker, 1850",,Bala shark,Barbus melanopterus,tricolor sharkminnow,Balantiocheilos melanopterus,bio/BalantiocheilosMelanopterus,,bio/Balantiocheilos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +369633,,,,,,,Crossocheilus,bio/Crossocheilus,,,,,, +370040,,"Planiliza haematocheilus (Temminck & Schlegel, 1845)",,redlip mullet,"Planiliza haematocheila, Liza haematocheila, Liza haematocheilus, Chelon haematocheilus, Mugil haematocheilus",so-iny mullet,Planiliza haematocheilus,bio/PlanilizaHaematocheilus,,bio/Planiliza,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +370356,,,,,,,Neolissochilus,bio/Neolissochilus,,,,,, +370357,,"Neolissochilus hexagonolepis (McClelland, 1839)",,chocolate mahseer,"Barbodes hexagonolepis, Neolissochilus sp. SKG-2012d, Neolissochilus sp. SKG-2012b, Barbus hexagonolepis",copper masheer,Neolissochilus hexagonolepis,bio/NeolissochilusHexagonolepis,,bio/Neolissochilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +371028,,Polygonum perfoliatum (L.) L.,,mile-a-minute weed,"Polygonum perforliatum, Polygonum perfoliatum",mile-a-minute vine ,Persicaria perfoliata,bio/PersicariaPerfoliata,,bio/Persicaria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True,dcs:TaxonTopLevelCategoryEukaryota +371673,,"Perca adscensionis Osbeck, 1765",,wenchman,Perca adscensionis,longjaw squirrelfish,Holocentrus adscensionis,bio/HolocentrusAdscensionis,,bio/Holocentrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +371709,,"Osteopilus marianae (Dunn, 1926)",,Spaldings treefrog,Hyla marianae,yellow bromeliad frog,Osteopilus marianae,bio/OsteopilusMarianae,,bio/Osteopilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +371864,,"Melanitta fusca (Linnaeus, 1758)",,white-winged scoter,Anas fusca,velvet scoter,Melanitta fusca,bio/MelanittaFusca,,bio/Melanitta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +374066,,"Bokermannohyla Faivovich et al., 2005",,,,,Bokermannohyla,bio/Bokermannohyla,,,,,, +374069,,"Dendropsophus Fitzinger, 1843",,,,,Dendropsophus,bio/Dendropsophus,,,,,, +374082,,"Exerodonta Broddhi, 1879",,,,,Exerodonta,bio/Exerodonta,,,,,, +374083,,"Isthmohyla Faivovich et al., 2005",,,,,Isthmohyla,bio/Isthmohyla,,,,,, +374085,,"Tlalocohyla Faivovich et al., 2005",,,,,Tlalocohyla,bio/Tlalocohyla,,,,,, +374458,,"Alaus oculatus (Linnaeus, 1758)",,red oak borer,Elater oculatus,big-eyed click beetle,Alaus oculatus,bio/AlausOculatus,,bio/Alaus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +374600,,"Papilio glandon de Prunner, 1798",,poco brillo,"Papilio glandon, Plebejus glandon",Glandon blue,Agriades glandon,bio/AgriadesGlandon,,bio/Agriades,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +374649,,"Hypsipetes amaurotis (Temminck, 1830)",,chestnut-eared bulbul,"Microscelis amaurotis, Microscelis amaurotis (Temminck, 1830)",brown-eared bulbul,Hypsipetes amaurotis,bio/HypsipetesAmaurotis,,bio/Hypsipetes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +375434,,"Leptodactylus fallax Muller, 1926",,mountain chicken,"Leptodactylus dominicensis, Leptodactylus fallax",mountain chicken frog,Leptodactylus fallax,bio/LeptodactylusFallax,,bio/Leptodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +376636,,,,,,,Gollum,bio/Gollum,,,,,, +376637,,"Triakis attenuata Garrick, 1954",,slender smooth hound,Triakis attenuata,slender smooth-hound,Gollum attenuatus,bio/GollumAttenuatus,,bio/Gollum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +376738,,,,,,,Acentrogobius,bio/Acentrogobius,,,,,, +376739,,"Gobius janthinopterus Bleeker, 1852",,pupilspot goby,Gobius janthinopterus,robust mangrove goby,Acentrogobius janthinopterus,bio/AcentrogobiusJanthinopterus,,bio/Acentrogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +376895,,"Scomber ignobilis Forsskal, 1775",,yellow fin trevally,"Scomber ignobilis, Carangoides ignobilis",giant trevally,Caranx ignobilis,bio/CaranxIgnobilis,,bio/Caranx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +377265,,,,,,,Taudactylus,bio/Taudactylus,,,,,, +377266,,"Taudactylus acutirostris (Andersson, 1913)",,sharp-snouted dayfrog,Crinia acutirostris,sharp-snouted torrent frog,Taudactylus acutirostris,bio/TaudactylusAcutirostris,,bio/Taudactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +377306,,,,,,,Assa,bio/Assa,,,,,, +377307,,"Crinia darlingtoni Loveridge, 1933",,hip-pocket frog,Crinia darlingtoni,pouched frog ,Assa darlingtoni,bio/AssaDarlingtoni,,bio/Assa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +377316,,"Atelopus zeteki Dunn, 1933",,Panamanian golden frog,Atelopus varius zeteki,golden arrow poison frog,Atelopus zeteki,bio/AtelopusZeteki,,bio/Atelopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +377347,,,,,,,Thoropa,bio/Thoropa,,,,,, +377348,,"Thoropa miliaris (Spix, 1824)",,military river frog,Rana miliaris,rock river frog,Thoropa miliaris,bio/ThoropaMiliaris,,bio/Thoropa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +377352,,,,,,,Chacophrys,bio/Chacophrys,,,,,, +377353,,"Chacophrys pierottii (Vellard, 1948)",,lesser chini frog,Ceratophrys pierottii,Chaco horned frog,Chacophrys pierottii,bio/ChacophrysPierottii,,bio/Chacophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +378387,,"Pieris albina Boisduval, 1836",,white albatross,Pieris albina,white albatross butterfly,Appias albina,bio/AppiasAlbina,,bio/Appias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +379421,,,,,,,Plioreocepta,bio/Plioreocepta,,,,,, +381124,,"Zea saccharata Sturtev., 1885",,Indian corn,"Zea saccharata, Zea mays var. saccharata (Sturtev.) L.H.Bailey, 1902, Zea mays subsp. saccharata, Zea mays subsp. tunicata, Zea mays var. saccharata, Zea mays subsp. indurata, Zea mays subsp. ceratina, Zea mays subsp. amylacea, Zea mays subsp. sacharata, Zea mays subsp. everta, Zea mays subsp. ramosa, Zea ramosa, Zea mays var. mays, Zea mays subsp. saccharata (Sturtev.) Zhuk., 1950",maize ,Zea mays subsp. mays,bio/ZeaMaysSubspMays,,bio/ZeaMays,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +382769,,,,,,,Lycodonomorphus,bio/Lycodonomorphus,,,,,, +383841,,"Rana mascareniensis uzungwensis Loveridge, 1932",,Uzungwe grassland frog,"Rana mascareniensis uzungwensis, Rana uzungwensis",Uzungwe ridged frog,Ptychadena uzungwensis,bio/PtychadenaUzungwensis,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +384871,,"Phyllobates pulchripectus Silverstone, 1976",,Silverstone's poison frog,"Epipedobates pulchripectus, Colostethus pulchripectus, Phyllobates pulchripectus, Dendrobates pulchripectus",blue-breasted poison frog,Ameerega pulchripecta,bio/AmeeregaPulchripecta,,bio/Ameerega,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +384895,,"Phyllobates truncatus Cope, 1861",,yellow-striped poison-arrow frog,"Phyllobates truncatus, Hylaplesia trunctata",yellow-striped poison frog,Dendrobates truncatus,bio/DendrobatesTruncatus,,bio/Dendrobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +384899,,"Phyllobates espinosai Funkhouser, 1956",,turquoise-bellied poison-arrow frog,Phyllobates espinosai,turquoise-bellied poison frog,Epipedobates espinosai,bio/EpipedobatesEspinosai,,bio/Epipedobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +384902,,"Phyllobates petersi Silverstone, 1976",,Peruvian poison-arrow frog,"Epipedobates smaragdinus, Phyllobates smaragdinus, Ameerega smaragdina, Epipedobates petersi, Ameerega smarigdinus, Phyllobates petersi, Dendrobates smaragdinus",Peruvian poison frog,Ameerega petersi,bio/AmeeregaPetersi,,bio/Ameerega,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +384907,,,,,,,Allobates,bio/Allobates,,,,,, +385652,,,,,,mountain newts,Echinotriton,bio/Echinotriton,,,,,, +385654,,"Tylototriton chinhaiensis Chang, 1932",,Chinhai newt,Tylototriton chinhaiensis,Chinhai spiny newt,Echinotriton chinhaiensis,bio/EchinotritonChinhaiensis,,bio/Echinotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +385657,,"Notophthalmus meridionalis (Cope, 1880)",,Texas triton,Diemyctylus miniatus meridionalis,black-spotted newt,Notophthalmus meridionalis,bio/NotophthalmusMeridionalis,,bio/Notophthalmus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +385674,,"Tylototriton asperrimus Unterstein, 1930",,Mount Yao newt,Yaotriton asperrimus,black knobby newt,Tylototriton asperrimus,bio/TylototritonAsperrimus,,bio/Tylototriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +385676,,"Tylototriton kweichowensis Fang and Chang, 1932",,Kweichow crocodile newt,"Pleurodeles kweichowensis, Pleurodeles (Tylototriton) kweichowensis, Tylototriton (Tylototriton) kweichowensis",red-tailed knobby newt,Tylototriton kweichowensis,bio/TylototritonKweichowensis,,bio/Tylototriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +385678,,"Tylototriton wenxianensis Fei, Ye & Yang, 1984",,Wenxian knobby salamander,"Pleurodeles (Tylototrion) asperrimus wenxianensis, Pleurodeles asperrimus wenxianensis, Echinotriton asperrimus wenxianensis, Tylototriton asperrimus wenxianensis, Tylototriton (Yaotriton) wenxianensis",Wenxian knobby newt,Tylototriton wenxianensis,bio/TylototritonWenxianensis,,bio/Tylototriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +386281,,"Brassica rapa var. purpuraria (L.H.Bailey) Kitam., 1950",,zi cai tai,"Brassica campestris var. purpurea, Brassica compestris subsp. chinensis var. pupurea, Brassica campestris var. purpurea L.H.Bailey, Brassica rapa subsp. campestris var. purpuraria, Brassica rapa (Purpuraria Group), Brassica campestris subsp. chinensis var. pupurea, Brassica rapa subsp. chinensis var. purpuraria",purple stem mustard,Brassica rapa var. purpuraria,bio/BrassicaRapaVarPurpuraria,,bio/BrassicaRapaSubspChinensis,dcs:BiologicalTaxonomicRankVarietas,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +389261,,"Crocidura aleksandrisi Vesmanis, 1977",,Alexandrian shrew,Crocidura suaveolens aleksandrisi,Cyrenaica shrew,Crocidura aleksandrisi,bio/CrociduraAleksandrisi,,bio/Crocidura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +389288,,"Pseudepidalea sicula (Stock, Sicilia, Belfiore, Buckley, Lo Brutto, Lo Valvo & Arculeo, 2008)",,Sicilian green toad,"Bufo boulengeri, Pseudepidalea boulengeri, Pseudepidalea sicula, Bufotes siculus, Bufotes boulengeri, Bufo siculus, Bufo sp. MS-2006",African green toad,Bufotes boulengeri,bio/BufotesBoulengeri,,bio/Bufotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +389293,,"Pseudepidalea latastii (Boulenger, 1882)",,vertebral-banded toad,"Bufo latastii, Pseudepidalea latastii",Ladakh toad,Bufotes latastii,bio/BufotesLatastii,,bio/Bufotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +389298,,"Pseudepidalea zamdaensis (Fei, Ye & Huang, 1999)",,Swati gauk,"Bufotes zamdaensis, Pseudepidalea zamdaensis, Bufo viridis pseudoraddei, Pseudepidalea pseudoraddei, Bufo pseudoraddei, Bufo zamdaensis, Bufo pseudoraddei pseudoraddei",Swat green toad,Bufotes pseudoraddei,bio/BufotesPseudoraddei,,bio/Bufotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +389299,,"Pseudepidalea baturae (Stoeck, Schmidt, Steinlein & Grosse, 1999)",,Batura toad,"Bufo baturae Stoeck, Schmidt, Steinlein & Grosse, 1999, Bufo pseudoraddei baturae, Pseudepidalea baturae",Batura glacier toad,Bufotes baturae,bio/BufotesBaturae,,bio/Bufotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +389303,,"Pseudepidalea surda (Boulenger, 1891)",,Pakistan toad,"Bufo surdus, Pseudepidalea surda",Luristan toad,Bufotes surdus,bio/BufotesSurdus,,bio/Bufotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +389874,,"Megophrys baluensis (Boulenger, 1899)",,Balu spadefoot toad,"Xenophrys baluensis, Leptobrachium baluense",Kinabulu horned frog,Megophrys baluensis,bio/MegophrysBaluensis,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +390297,,,,,Dajaus,,Agonostomus,bio/Agonostomus,,,,,, +390299,,,,perchlets,,common glassfishes,Ambassis,bio/Ambassis,,,,,, +390307,,"Cottus australis White, 1790",,southern fortescue,"Centropogon australis, Cottus australis, bony fishes",fortesque waspfish,"Centropogon australis (White, 1790)",bio/CentropogonAustralisWhite1790,,bio/Centropogon_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +390342,,,,,,,Inimicus,bio/Inimicus,,,,,, +390363,,"Peprilus alepidotus (Linnaeus, 1766)",,harvestfish,Chaetodon alepidotus,star butterfish,Peprilus alepidotus,bio/PeprilusAlepidotus,,bio/Peprilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +390369,,,,,,,Plagiotremus,bio/Plagiotremus,,,,,, +390464,,,,,,,Bagrus,bio/Bagrus,,,,,, +390465,,"Silurus docmak Forsskal, 1775",,Sudan catfish,"Silurus docmak, Porcus docmac, Silurus docmac, Porcus docmak, Bagrus docmac",semutundu,Bagrus docmak,bio/BagrusDocmak,,bio/Bagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +390484,,"Neosilurus ater (Perugia, 1894)",,narrow-fronted tandan,Lambertia atra,narrowfoot tandan,Neosilurus ater,bio/NeosilurusAter,,bio/Neosilurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +390718,,"Meristogenys amoropalamus (Matsui, 1986)",,Borneo mountain frog,"Amolops amoropalamus, Meristogenys sp. 05B245, Meristogenys cf. amoropalamus TS-2008a",mountain Borneo frog,Meristogenys amoropalamus,bio/MeristogenysAmoropalamus,,bio/Meristogenys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +390976,,,,,,,Diaphania,bio/Diaphania,,,,,, +390977,,"Eudioptes indica Saunders, 1851",,pumpkin caterpillar,Eudioptes indica,cucumber moth,Diaphania indica,bio/DiaphaniaIndica,,bio/Diaphania,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +391187,,,,,,,Scolecenchelys,bio/Scolecenchelys,,,,,, +391205,,,,,,,Heteroconger,bio/Heteroconger,,,,,, +391206,,"Xarifania hassi Klausewitz & Eibl-Eibesfeldt, 1959",,spotted garden eel,"Xarifania hassi, Taenioconger hassi",spotted garden-eel,Heteroconger hassi,bio/HeterocongerHassi,,bio/Heteroconger,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +391220,,"Scuticaria tigrina (Lesson, 1828)",,tiger reef-eel,"Uropterygius tigrinus, Ichthyophis tigrinus",spotted snake moray,Scuticaria tigrina,bio/ScuticariaTigrina,,bio/Scuticaria_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +391223,,"Moringua javanica (Kaup, 1856)",,Java worm eel,Aphthalmichthys javanicus,Java spaghetti eel,Moringua javanica,bio/MoringuaJavanica,,bio/Moringua,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +391864,,"Rana raniceps (Peters, 1871)",,hydrophylax raniceps,"Polypedates raniceps, Hylarana raniceps, Polypedates raniceps Peters, 1871, Rana raniceps",Peters' Malaysian frog,Chalcorana raniceps,bio/ChalcoranaRaniceps,,bio/Chalcorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +391866,,"Rana cubitalis Smith, 1917",,Siam frog,"Hylarana cubitalis, Rana cubitalis",yellow stream frog,Sylvirana cubitalis,bio/SylviranaCubitalis,,bio/Sylvirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +392815,,,,,,,Chlorocebus,bio/Chlorocebus,,,,,, +392903,,"Pseudobalistes flavimarginatus (Rueppell, 1829)",,yellowface triggerfish,Balistes flavimarginatus,yellowmargin triggerfish,Pseudobalistes flavimarginatus,bio/PseudobalistesFlavimarginatus,,bio/Pseudobalistes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +392922,,,,,,,Paramonacanthus,bio/Paramonacanthus,,,,,, +394460,,"Notodelphys ovifera Lichtenstein & Weinland, 1854",,pouched frog,"Nototrema oviferum, Notodelphys ovifera, Opisthodelphys ovifera",giant marsupial frog,Gastrotheca ovifera,bio/GastrothecaOvifera,,bio/Gastrotheca,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +396790,,,,,,,Macolor,bio/Macolor,,,,,, +396791,,"Sciaena nigra Forsskal, 1775",,black snapper,Sciaena nigra,black and white snapper,Macolor niger,bio/MacolorNiger,,bio/Macolor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +397597,,,,,,,Siphamia,bio/Siphamia,,,,,, +399177,,"Rana luctuosa (Peters, 1871)",,purple frog,"Hylarana luctuosa, Limnodytes luctuosus, Pulchrana luctuosa, Rana luctuosa",mahogany frog,Abavorana luctuosa,bio/AbavoranaLuctuosa,,bio/Abavorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +399316,,,,,,,Necromys,bio/Necromys,,,,,, +400053,,,,,,,Sylvaemus group,bio/SylvaemusGroup,,,,,, +400187,,"Nisoniades propertius Scudder & Burgess, 1870",,western oak dusky wing,Nisoniades propertius,propertius duskywing,Erynnis propertius,bio/ErynnisPropertius,,bio/Erynnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +400502,,"Sympetrum vicinum (Hagen, 1861)",,yellow-legged meadowhawk,Diplax vicina,autumn meadowhawk,Sympetrum vicinum,bio/SympetrumVicinum,,bio/Sympetrum,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +401547,,"Hemidactylus fasciatus Gray, 1842",,carrot-tailed viper gecko,Teratolepis fasciata,banded leaf-toed gecko,Hemidactylus fasciatus,bio/HemidactylusFasciatus,,bio/Hemidactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +402710,,"Mystus oculatus (Valenciennes, 1840)",,koorie,Bagrus oculatus,Malabar mystus,Mystus oculatus,bio/MystusOculatus,,bio/Mystus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +403223,,,,,,,Clupanodon,bio/Clupanodon,,,,,, +403224,,"Clupanodon thrissa (Linnaeus, 1758)",,gizzard shad,Clupea thrissa,Chinese gizzard shad,Clupanodon thrissa,bio/ClupanodonThrissa,,bio/Clupanodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +404976,,"Rana sakuraii Matsui & Matsui, 1990",,stream brown frog,Rana (Rana) sakuraii,Japanese brown frog,Rana sakuraii,bio/RanaSakuraii,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +405016,,"Papilio laodice Pallas, 1771",,Pallas' fritillary,"Papilio laodice, Argyronome laodice",eastern silverstripe,Argynnis laodice,bio/ArgynnisLaodice,,bio/Argynnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +405018,,"Papilio pandora Schiffermuller, 1775",,cardinal,Papilio pandora,cardinal fritillary,Argynnis pandora,bio/ArgynnisPandora,,bio/Argynnis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +405022,,"Papilio eunomia Esper, 1800",,ocellate bog fritillary,"Papilio eunomia, Proclossiana eunomia",bog fritillary,Boloria eunomia,bio/BoloriaEunomia,,bio/Boloria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +405189,,"Sphenomorphus fuscicaudis Greer, 1979",,brown-tailed bar-lipped skink,Sphenomorphus fuscicaudis,grey-tailed skink,Glaphyromorphus fuscicaudis,bio/GlaphyromorphusFuscicaudis,,bio/Glaphyromorphus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +410297,,,,,,,Gerbilliscus,bio/Gerbilliscus,,,,,, +410301,,"Tatera kempii Wroughton, 1906",,Kemp's gerbil,"Tatera kempii, Tatera kempi",Northern savanna gerbil,Gerbilliscus kempi,bio/GerbilliscusKempi,,bio/Gerbilliscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +410303,,"Gerbilliscus robustus (Cretzschmar, 1826)",,fringe-tailed gerbil,Tatera robusta,Fringe-tailed gerbil,Gerbilliscus robustus,bio/GerbilliscusRobustus,,bio/Gerbilliscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +411568,,,,,,,Setipinna,bio/Setipinna,,,,,, +411962,,,,,,,Schrankia,bio/Schrankia,,,,,, +411963,,"Schrankia costaestrigalis (Stephens, 1834)",,pinion-streaked snout,Cledeobia costaestrigalis,pinion-streaked snout moth,Schrankia costaestrigalis,bio/SchrankiaCostaestrigalis,,bio/Schrankia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +412675,,,,,Cucumis melo subsp. melo f. melo,,Cucumis melo subsp. melo,bio/CucumisMeloSubspMelo,,,,,, +415320,,,,,,,Euchloe ,bio/Euchloe_Subgenus,,,,,, +415322,,,,,Euchloe (Elphinstonia),,Elphinstonia,bio/Elphinstonia,,,,,, +415323,,"Euchloe charlonia (Donzel, 1842)",,lemon white,"Anthocharis charlonia, Euchloe (Elphinstonia) charlonia, Elphinstonia charlonia",greenish black-tip,Euchloe charlonia,bio/EuchloeCharlonia,,bio/Elphinstonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +415331,,"Papilio ausonia Hubner, 1803",,pearl white,"Euchloe (Euchloe) ausonia, Papilio ausonia",dappled white,Euchloe ausonia,bio/EuchloeAusonia,,bio/Euchloe_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +416556,,"Dendrolimus tabulaeformis Tsai & Liu, 1962",,Chinese pine caterpillar,Dendrolimus punctatus tabulaeformis,Chinese pine moth,Dendrolimus tabulaeformis,bio/DendrolimusTabulaeformis,,bio/Dendrolimus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +416559,,,,,,,Galerucella nymphaeae complex,bio/GalerucellaNymphaeaeComplex,,,,,, +417459,,,,,,,Heterophallus,bio/Heterophallus,,,,,, +417944,,,,,,,Brotula,bio/Brotula,,,,,, +418657,,"Paramurexia rothschildi (Tate, 1938)",,broad-striped dasyure,Paramurexia rothschildi,short-haired marsupial mouse,Murexia rothschildi,bio/MurexiaRothschildi,,bio/Murexia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +418659,,"Phascomurexia naso (Jentink, 1911)",,long-nosed antechinus,"Phascomurexia naso, Antechinus naso, Phascogale naso",Long-nosed dasyure,Murexia naso,bio/MurexiaNaso,,bio/Murexia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +418663,,"Murexia melanurus Thomas, 1866",,broad-footed marsupial mouse,"Phascogale melanura, Antechinus melanurus, Murexechinus melanurus",Black-tailed dasyure,Murexia melanurus,bio/MurexiaMelanurus,,bio/Murexia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +419645,,"Microhyla borneensis Parker, 1928",,Borneo narrow-mouthed frog,"Microhyla sp. KUHE 53033, Microhyla sp. KUHE NNL M13, Microhyla sp. KUHE NNL M14, Microhyla sp. SM:081126, Microhyla sp. KUHE 53165, Microhyla sp. SM 081126, Microhyla sp. KUHE:53033, Microhyla sp. KUHE:53020, Microhyla sp. KUHE:53165, Microhyla sp. KUHE 53020",Borneo rice frog,Microhyla borneensis,bio/MicrohylaBorneensis,,bio/Microhyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +419646,,"Ramanella variegata (Stoliczka, 1872)",,Eluru dot frog,Hylaedactylus carnaticus,termite nest frog,Ramanella variegata,bio/RamanellaVariegata,,bio/Ramanella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +419956,,"Calvia quattuordecimguttata (Linnaeus, 1758)",,fourteen-spotted lady beetle,"Agrabia sicardi, Calvia quatuordecimguttata, Calvia 14-guttata, Coccinella 14-guttata",cream-spotted lady beetle,Calvia quattuordecimguttata,bio/CalviaQuattuordecimguttata,,bio/Calvia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +420420,,"Litoria maini (Tyler & Martin, 1977)",,sheep frog,Litoria maini,western collared-frog,Cyclorana maini,bio/CycloranaMaini,,bio/Cyclorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +420422,,"Necturus punctatus (Gibbes, 1850)",,southern water dog,Menobranchus punctatus,dwarf waterdog,Necturus punctatus,bio/NecturusPunctatus,,bio/Necturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +420445,,,,,,,Leptophryne,bio/Leptophryne,,,,,, +420446,,"Leptophryne borbonica (Tschudi, 1838)",,slender-legged toad,"Cacophryne borbonica, Hysaplesia borbonica, Bufo borbonicus",Java tree toad,Leptophryne borbonica,bio/LeptophryneBorbonica,,bio/Leptophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +420447,,,,,Bufo (Mertensophryne),,Mertensophryne,bio/Mertensophryne,,,,,, +420460,,"Raja flossada Risso, 1827",,grey skate,"Raja flossada, Raja batis, Dipturus batis 1 SPI-2007, Dipturus flossada",blue skate ,Dipturus batis,bio/DipturusBatis,,bio/Dipturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +420590,,"Odonestis superans Butler, 1877",,white-lined silk moth,Odonestis superans,Japanese hemlock caterpillar,Dendrolimus superans,bio/DendrolimusSuperans,,bio/Dendrolimus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +423320,,"Phalaena nupta Linnaeus, 1767",,red underwing moth,Phalaena nupta,red underwing,Catocala nupta,bio/CatocalaNupta,,bio/Catocala,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +423492,,,,,,,Mecistops,bio/Mecistops,,,,,, +423606,,Fukomys Kock et al. 2006,,,,,Fukomys,bio/Fukomys,,,,,, +423607,,"Coetomys mechowi (Peters, 1881)",,Angolan giant mole-rat,"Fukomys mechowi, Cryptomys mechowi, Cryptomys mechowii, Coetomys mechowi",Mechow's mole rat,Fukomys mechowii,bio/FukomysMechowii,,bio/Fukomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +425200,,"Lycalopex Burmeister, 1854",,,,,Lycalopex,bio/Lycalopex,,,,,, +426091,,,,,,,Enchelycore,bio/Enchelycore,,,,,, +427924,,"Dreissena rostriformis bugensis Andrusov, 1897",,guagga mussel,"Dreissena bugensis, Dreissena bugensis var. profunda, Dreissena rostriformis bugensis var. profunda",quagga mussel,Dreissena rostriformis bugensis,bio/DreissenaRostriformisBugensis,,bio/DreissenaRostriformis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True, +428035,,,,,,,Lumpenus,bio/Lumpenus,,,,,, +428445,,,,,,,Datnioides,bio/Datnioides,,,,,, +428446,,"Datnioides quadrifasciatus (Sevastianof, 1809)",,four-barred tigerfish,"Chaetodon quadrifasciatus, Coius polota, Datnioides quadrifasciatus",four-banded tigerfish,Datnioides polota,bio/DatnioidesPolota,,bio/Datnioides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +428466,,"Vibrissaphora echinata (Dubois & Ohler, 1998)",,Ailao spiny toad,"Vibrissaphora ailaonica, Leptobrachium (Vibrissaphora) echinatum, Leptobrachium ailaonicum echinatum, Vibrissaphora echinata, Leptobrachium echinatum, Leptobrachium (Leptobrachium) ailaonicum, Leptobrachium (Vibrissaphora) ailaonicum",Yunnan mustache toad,Leptobrachium ailaonicum,bio/LeptobrachiumAilaonicum,,bio/Leptobrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +430793,,"Nyctibatrachus beddomii (Boulenger, 1882)",,Tirunvelveli's hill frog,Nannobatrachus beddomii,pigmy wrinkled frog,Nyctibatrachus beddomii,bio/NyctibatrachusBeddomii,,bio/Nyctibatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +431941,,"Rana megatympanum Bain, Lathrop, Murphy, Orlov & Ho, 2003",,tobacco frog,"Odorrana megatympanum, Rana (Odorrana) megatympanum, Rana tabaca, Huia megatympanum",megatympanum frog,Rana megatympanum,bio/RanaMegatympanum,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +432164,,"Enchelyopus barbatus Bloch & Schneider, 1801",,deep water soapfish,Enchelyopus barbatus,bearded brotula,Brotula barbata,bio/BrotulaBarbata,,bio/Brotula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +432528,,"Grammostola rosea (Walckenaer, 1837)",,Chilean red-back,"Mygale rosea, Grammostola cala, Grammostola spatulata, Lasiodora rosea, Eurypelma rosea",Chilean rose tarantula,Grammostola rosea,bio/GrammostolaRosea,,bio/Grammostola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +433684,,"Takifugu flavidus (Li, Wang & Wang, 1975)",,towny puffer,Fugu flavidus,sansaifugu,Takifugu flavidus,bio/TakifuguFlavidus,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +433688,,"Takifugu niphobles (Jordan & Snyder, 1901)",,kusafugu,"Fugu niphobles, Fugu alboplumbeus, Tetrodon alboplumbeus, Spheroides niphobles, Takifugu niphobles",komon-damashi,Takifugu alboplumbeus,bio/TakifuguAlboplumbeus,,bio/Takifugu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +435003,,,,,,,Plicofollis,bio/Plicofollis,,,,,, +435155,,"Osmerus nehereus Hamilton, 1822",,Bombay-duck,Osmerus nehereus,Bombay duck fish,Harpadon nehereus,bio/HarpadonNehereus,,bio/Harpadon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +435225,,"Sillago sihama (Fabricius, 1775)",,silver sillago,Atherina sihama,northern whiting,Sillago sihama,bio/SillagoSihama,,bio/Sillago,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +435228,,,,,,,Thryssa,bio/Thryssa,,,,,, +435239,,,,,Valamugil,,Osteomugil,bio/Osteomugil,,,,,, +435638,,"Phoenicopterus ruber roseus (Pallas, 1811)",,red flamingo,Phoenicopterus ruber roseus,Greater flamingo,Phoenicopterus roseus,bio/PhoenicopterusRoseus,,bio/Phoenicopterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +435999,,"Trachinotus blochii (Lacepede, 1801)",,golden pompano,Caesiomorus blochii,snubnose pompano,Trachinotus blochii,bio/TrachinotusBlochii,,bio/Trachinotus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +436885,,"Scopelarchus analis (Brauer, 1902)",,deep-sea pearleye,Dissomma anale,short fin pearleye,Scopelarchus analis,bio/ScopelarchusAnalis,,bio/Scopelarchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +437330,,"Danio feegradei Hora, 1937",,Burma danio,Danio sp. 'yoma',Yoma danio,Danio feegradei,bio/DanioFeegradei,,bio/Danio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +439704,,"Porphyrio hochstetteri (Meyer, 1883)",,takahe,"Notornis hochstetteri, Porphyrio mantelli hochstetteri",South Island takahe,Porphyrio hochstetteri,bio/PorphyrioHochstetteri,,bio/Porphyrio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +439832,,,,,,,Devario,bio/Devario,,,,,, +439892,,"Siganus sutor (Valenciennes, 1835)",,cordonnier,Amphacanthus sutor,shoemaker spinefoot,Siganus sutor,bio/SiganusSutor,,bio/Siganus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +441319,,"Papilio scylla Linnaeus, 1763",,orange emigrant,Papilio scylla,yellow migrant,Catopsilia scylla,bio/CatopsiliaScylla,,bio/Catopsilia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +441366,,"Lepadogaster willdenowi Risso, 1810",,chafaroccas,Lepadogaster willdenowi,blunt-snouted clingfish,Gouania willdenowi,bio/GouaniaWilldenowi,,bio/Gouania_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +441663,,"Parachromis friedrichsthalii (Heckel, 1840)",,yellow-jacket cichlid,"Cichlasoma friedrichsthalii, Heros friedrichsthalii, Parapetenia friedrichsthalii, Astronotus friedrichsthalii",yellowjacket cichlid,Parachromis friedrichsthalii,bio/ParachromisFriedrichsthalii,,bio/Parachromis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +442324,,,,,,,Nymphalis ,bio/Nymphalis_Subgenus,,,,,, +442325,,,,,,,Euvanessa,bio/Euvanessa,,,,,, +442327,,,,,,,Roddia,bio/Roddia,,,,,, +443710,,"Parapercis colias (Forster, 1801)",,blue cod,Enchelyopus colias,New Zealand blue cod,Parapercis colias,bio/ParapercisColias,,bio/Parapercis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +443716,,"Schedophilus labyrinthicus McAllister & Randall, 1975",,ocean blue-eyed trevalla,Schedophilus labyrinthica,African barrelfish ,Schedophilus labyrinthicus,bio/SchedophilusLabyrinthicus,,bio/Schedophilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +443751,,,,,,,Bidyanus,bio/Bidyanus,,,,,, +443761,,"Chiloscyllium indicum (Gmelin, 1789)",,lip shark,"Chiloscyllium colax, Squalus indicus, Squalus colax",slender bamboo shark,Chiloscyllium indicum,bio/ChiloscylliumIndicum,,bio/Chiloscyllium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +443773,,,,,,,Chrysochir,bio/Chrysochir,,,,,, +443774,,"Otolithus aureus Richardson, 1846",,yellow croaker,Otolithus aureus,yellowfin corvina,Chrysochir aureus,bio/ChrysochirAureus,,bio/Chrysochir,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +443787,,,,,,,Hephaestus,bio/Hephaestus,,,,,, +443788,,"Mesopristes jenkinsi Whitley, 1945",,Jenkins' grunter,Mesopristes jenkinsi,western sooty grunter,Hephaestus jenkinsi,bio/HephaestusJenkinsi,,bio/Hephaestus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +443809,,,,,,,Rhombosolea,bio/Rhombosolea,,,,,, +445152,,,,,,,Hypopachus,bio/Hypopachus,,,,,, +445153,,"Hypopachus variolosus (Cope, 1866)",,Mexican narrow-mouthed toad,"Engystoma variolosum, Systoma variolosum",sheep frog ,Hypopachus variolosus,bio/HypopachusVariolosus,,bio/Hypopachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445438,,"Vespa simillima Smith, 1868",,,,,Vespa simillima,bio/VespaSimillima,,,,,, +445506,,"Pseudotropheus crabro (Ribbink & Lewis, 1982)",,bumblebee mbuna,Melanochromis crabro,bumblebee mouthbrooder,Pseudotropheus crabro,bio/PseudotropheusCrabro,,bio/Pseudotropheus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445771,,"Oreolalax chuanbeiensis Tian, 1983",,Chuanbei toothed toad,Scutiger chuanbeiensis,Sichuan lazy toad,Oreolalax chuanbeiensis,bio/OreolalaxChuanbeiensis,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445772,,"Oreolalax jingdongensis Ma, Yang, and Li, 1983",,Jingdong toothed toad,Scutiger jingdongensis,Jingdong lazy toad,Oreolalax jingdongensis,bio/OreolalaxJingdongensis,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445774,,"Scutiger major Liu & Hu, 1960",,large toothed toad,Scutiger major,common lazy toad,Oreolalax major,bio/OreolalaxMajor,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445777,,"Scutiger omeimontis Liu & Hu, 1960",,Omei toothed toad,Scutiger omeimontis,Omei lazy toad,Oreolalax omeimontis,bio/OreolalaxOmeimontis,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445778,,"Scutiger pingii Liu, 1943",,Ping's toothed toad,Scutiger pingii,Chinese lazy toad,Oreolalax pingii,bio/OreolalaxPingii,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445779,,"Scutiger rugosus Liu, 1943",,Chaochiao lazy toad,Scutiger rugosus,warty toothed toad,Oreolalax rugosus,bio/OreolalaxRugosus,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445780,,"Scutiger schmidti Liu, 1947",,Schmidt's lazy toad,Scutiger schmidti,webless toothed toad,Oreolalax schmidti,bio/OreolalaxSchmidti,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445782,,"Oreolalax xiangchengensis Fei and Huang, 1983",,Xiangcheng toothed toad,Scutiger xiangchengensis,Xiangcheng lazy toad,Oreolalax xiangchengensis,bio/OreolalaxXiangchengensis,,bio/Oreolalax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445783,,"Scutiger glandulatus (Liu, 1950)",,Hopachai lazy toad,Aelurophryne glandulata,chest gland cat-eyed toad,Scutiger glandulatus,bio/ScutigerGlandulatus,,bio/Scutiger_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445784,,"Scutiger mammatus (Guenther, 1896)",,Tungsolo lazy toad,"Cophophryne mammata, Bufo mammatus, Aelurophryne mammata",chest spiny cat-eyed toad,Scutiger mammatus,bio/ScutigerMammatus,,bio/Scutiger_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +445787,,"Vibrissaphora leishanensis Liu & Hu, 1973",,Leishan moustache toad,Vibrissaphora leishanensis,Leishan spiny toad,Leptobrachium leishanense,bio/LeptobrachiumLeishanense,,bio/Leptobrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +446415,,"Salmo silus Ascanius, 1775",,Atlantic argentine,Salmo silus,greater argentine,Argentina silus,bio/ArgentinaSilus,,bio/Argentina_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +446489,,"Crinia riparia Littlejohn and Martin, 1965",,streambank froglet,"Australocrinia riparia, Ranidella riparia, Littlejohnophryne riparia",Flinders Range froglet,Crinia riparia,bio/CriniaRiparia,,bio/Crinia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +446501,,,,,,,Plataplochilus,bio/Plataplochilus,,,,,, +446502,,"Plataplochilus ngaensis (Ahl, 1924)",,aplochilichthys ngaensis,"Plaplochilus ngaensis, Haplochilichthys ngaensis, Aplocheilichthys ngaensis, Procatopus ngaensis",Nga lampeye,Plataplochilus ngaensis,bio/PlataplochilusNgaensis,,bio/Plataplochilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +447134,,"Myodes Pallas, 1811",,,,,Myodes,bio/Myodes,,,,,, +447135,,"Mus glareolus Schreber, 1780",,bank vole,"Mus glareolus, Clethrionomys glareolus",Bank vole,Myodes glareolus,bio/MyodesGlareolus,,bio/Myodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +447236,,,,,Parnassius (Parnassius),,Parnassius ,bio/Parnassius_Subgenus,,,,,, +447920,,"Xenocichla nigriceps Shelley, 1889",,Mountain greenbul,"Andropadus tephrolaemus nigriceps, Andropadus nigriceps, Xenocichla nigriceps",Eastern mountain greenbul,Arizelocichla nigriceps,bio/ArizelocichlaNigriceps,,bio/Arizelocichla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448029,,"Argyrosomus japonicus (Temminck & Schlegel, 1843)",,kingfish,"Nibea japonica, Sciaena japonica",mulloway,Argyrosomus japonicus,bio/ArgyrosomusJaponicus,,bio/Argyrosomus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448039,,"Paragobiodon echinocephalus (Ruppell, 1830)",,warty-headed goby,Gobius echinocephalus,redhead goby,Paragobiodon echinocephalus,bio/ParagobiodonEchinocephalus,,bio/Paragobiodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448113,"Odorrana tiannanensis (Yang and Li, 1980)","Rana tiannanensis Yang & Li, 1980",,Tiannan odorous frog,"Rana tiannanensis, Huia tiannanensis",Dawei frog,Odorrana tiannanensis,bio/OdorranaTiannanensis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448114,,"Rana tormotus Wu, 1977",,Anhui sucker frog,"Rana tormotus, Wurana tormota, Amolops tormotus",concave-eared torrent frog,Odorrana tormota,bio/OdorranaTormota,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448381,,"Oligosoma homalonotum Boulenger, 1906",,New Zealand chevron skink,Lygosoma homalonotum,chevron skink,Oligosoma homalonotum,bio/OligosomaHomalonotum,,bio/Oligosoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448438,,"Hylodes dimidiatus Cope, 1862",,black whiskered frog,"Hylodes dimidiatus, Euhyas dimidiata",miniature robber frog,Eleutherodactylus dimidiatus,bio/EleutherodactylusDimidiatus,,bio/Euhyas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448469,,"Litoria luteola Gosse, 1851",,little yellow tree-frog,"Litoria luteola, Hylodes luteolus, Euhyas luteola",light robber frog,Eleutherodactylus luteolus,bio/EleutherodactylusLuteolus,,bio/Euhyas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448482,,"Eleutherodactylus pinarensis Dunn, 1926",,Pinos robber frog,Euhyas pinarensis,Isla de Pinos robber frog,Eleutherodactylus pinarensis,bio/EleutherodactylusPinarensis,,bio/Euhyas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448486,,"Hylodes ricordii Dumeril & Bibron, 1841",,Bahamian frog,"Euhyas ricordii, Hylodes ricordii",Ricordi's robber frog,Eleutherodactylus ricordii,bio/EleutherodactylusRicordii,,bio/Euhyas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +448676,,"Ischnocnema guentheri (Steindachner, 1864)",,Guenther's frog,"Eleutherodactylus guentheri, Hylodes guentheri, Hylodes guntheri",Steindachner's robber frog,Ischnocnema guentheri,bio/IschnocnemaGuentheri,,bio/Ischnocnema,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +449102,,,,,"Paramophrynella, Mucubatrachus",,Pristimantis,bio/Pristimantis,,,,,, +449221,,"Eleutherodactylus sandersoni Schmidt, 1941",,Sanderson's rainfrog,Eleutherodactylus sandersoni,Sanderson's streamfrog,Craugastor sandersoni,bio/CraugastorSandersoni,,bio/Craugastor,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +451696,,,,,,,Opsaridium,bio/Opsaridium,,,,,, +452076,,"Ophiocephalus stewartii Playfair, 1867",,Annamese snakehead,Ophiocephalus stewartii,golden snakehead,Channa stewartii,bio/ChannaStewartii,,bio/Channa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +452081,,"Ophiocephalus diplogramma Day, 1865",,Indian giant snakehead,"Ophiocephalus diplogramma, Channa diplogramme",Malabar snakehead,Channa diplogramma,bio/ChannaDiplogramma,,bio/Channa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +452646,,"Neogale vison (von Schreber, 1776)",,mink,"Mustela vison, Neovison vison",American mink,Neogale vison,bio/NeogaleVison,,bio/Neogale,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +453924,,"Oncorhynchus clarkii pleuriticus (Cope, 1872)",,Colorado River cutthroat trout,Oncorhynchus clarki pleuriticus,Colorado cutthroat trout,Oncorhynchus clarkii pleuriticus,bio/OncorhynchusClarkiiPleuriticus,,bio/OncorhynchusClarkii,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +454142,,"Mesoprion purpureus Poey, 1876",,Carribean red snapper,Mesoprion purpureus,southern red snapper,Lutjanus purpureus,bio/LutjanusPurpureus,,bio/Lutjanus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +454751,,,,,,,Ommatotriton,bio/Ommatotriton,,,,,, +455156,,"Paralichthys adspersus (Steindachner, 1867)",,Chilean flounder,Pseudorhombus adspersus,fine flounder,Paralichthys adspersus,bio/ParalichthysAdspersus,,bio/Paralichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +457511,,"Cobitis choii Kim & Son, 1984",,Miho spine loach,Iksookimia choii,Choi's spiny loach,Cobitis choii,bio/CobitisChoii,,bio/Cobitis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +458026,,"Opisthoproctus grimaldii Zugmayer, 1911",,Grimaldi's barreleye,"Grimaldia grimaldii, Monacoa grimaldi, Grimaldia grimaldi, Opisthoproctus grimaldii",mirrorbelly,Monacoa grimaldii,bio/MonacoaGrimaldii,,bio/Monacoa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +458604,,,,,,,Raneya,bio/Raneya,,,,,, +458605,,"Raneya brasiliensis (Kaup, 1856)",,minami-shimaashiro,Ophidium brasiliense,banded cusk eel,Raneya brasiliensis,bio/RaneyaBrasiliensis,,bio/Raneya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +460200,,"Emberiza calandra Linnaeus, 1758",,Grauammer,Miliaria calandra,Corn bunting,Emberiza calandra,bio/EmberizaCalandra,,bio/Emberiza,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +460622,,"Gymnodactylus albogularis Dumeril & Bibron, 1836",,white-throated gecko,Gymnodactylus albogularis,yellow-headed gecko,Gonatodes albogularis,bio/GonatodesAlbogularis,,bio/Gonatodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +461231,,"Pitohui tenebrosus (Hartlaub & Finsch, 1868)",,Sooty shrike-thrush,"Pachycephala tenebrosa, Colluricincla umbrina, Melanorhectes umbrinus, Pitohui tenebrosus",Palau morningbird,Colluricincla tenebrosa,bio/ColluricinclaTenebrosa,,bio/Colluricincla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +461241,,,,,,,Psophodes,bio/Psophodes,,,,,, +461284,,"Leptolalax liui Fei & Ye, 1991",,Fujian metacarpal-tubercled toad,Leptolalax liui,Fujian Asian toad,Leptobrachella liui,bio/LeptobrachellaLiui,,bio/Leptobrachella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +461400,,"Atalapha egregia Peters, 1870",,big red bat,"Atalapha egregia, Lasiurus egregius",giant red bat,Aeorestes egregius,bio/AeorestesEgregius,,bio/Aeorestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +461409,,"Marmosops invictus (Goldman, 1912)",,slaty slender mouse opossum,Marmosa invicta,Panama slendeer opossum,Marmosops invictus,bio/MarmosopsInvictus,,bio/Marmosops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +462318,,"Philautus jinxiuensis Hu, 1978",,Jingxiu small treefrog,"Philautus jinxiuensis, Kurixalus jinxiuensis",Jinxiu bubble-nest frog,Gracixalus jinxiuensis,bio/GracixalusJinxiuensis,,bio/Gracixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +462319,,"Philautus romeri Smith, 1953",,Romer's small treefrog,"Chiromantis romeri, Philautus romeri, Chirixalus romeri",Romer's bubble-nest frog,Liuixalus romeri,bio/LiuixalusRomeri,,bio/Liuixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +462321,,"Zhangixalus dugritei (David, 1872)",,Dugrite's whipping frog,"Ingerixalus dugritei, Rhacophorus dugritei, Polypedates dugritei",Sichuan whipping frog,Zhangixalus dugritei,bio/ZhangixalusDugritei,,bio/Zhangixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +462322,,"Zhangixalus feae (Boulenger, 1893)",,Fea's treefrog,"Ingerixalus feae, Rhacophorus feae, Zhangixalus sp. f TTN-2020, Polypedates feae",Thao whipping frog,Zhangixalus feae,bio/ZhangixalusFeae,,bio/Zhangixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +462324,,"Zhangixalus maximus (Gunther, 1858)",,yellow-spotted tree frog,Rhacophorus maximus,Nepal flying frog,Zhangixalus maximus,bio/ZhangixalusMaximus,,bio/Zhangixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +462328,,"Zhangixalus omeimontis (Stejneger, 1924)",,Omei whipping frog,"Ingerixalus omeimontis, Rhacophorus omeimontis, Polypedates omeimontis",Omei tree frog,Zhangixalus omeimontis,bio/ZhangixalusOmeimontis,,bio/Zhangixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +463597,,"Gerres oyena (Fabricius, 1775)",,common mojarra,"Smaris oyena, Xystaema oyena, Diapterus oyena, Cichla argyrea, Labrus oyena, Gerres argyreus",common silver-biddy,Gerres oyena,bio/GerresOyena,,bio/Gerres,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +464359,,"Grammia doris (Boisduval, 1869)",,Michabo moth,"Grammia doris, Chelonia doris",Doris tiger moth,Apantesis doris,bio/ApantesisDoris,,bio/Apantesis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +464373,,"Grammia phyllira (Drury, 1773)",,Phyllira moth,"Grammia phyllira, Bombyx phyllira",Phyllira tiger moth,Apantesis phyllira,bio/ApantesisPhyllira,,bio/Apantesis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +464718,,"Grammia Rambur, 1866",,,"Mimarctia, Orodemnias, Holarctia, Grammia",,Apantesis,bio/Apantesis,,,,,, +464720,,"Rhyparioides Butler, 1877",,,"Rhyparioides, Rhyparia",,Diacrisia,bio/Diacrisia,,,,,, +464721,,"Phalaena sannio Linnaeus, 1758",,clouded ermine,Phalaena sannio,clouded buff,Diacrisia sannio,bio/DiacrisiaSannio,,bio/Diacrisia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +464756,,,,,,,Schizopyge,bio/Schizopyge,,,,,, +465452,,"Neodon Horsfield, 1849",,,,,Neodon ,bio/Neodon_Rodents,,,,,, +466149,,,,,,,Prognathodes,bio/Prognathodes,,,,,, +467031,,"Psittacus ambiguus Bechstein, 1811",,Buffon's macaw,"Psittacus ambiguus, Ara ambigua",great green macaw,Ara ambiguus,bio/AraAmbiguus,,bio/Ara,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +467706,,"Dendrobates captivus Myers, 1982",,Santiago poison frog,"Dendrobates captivus, Adelphobates captivus, Ranitomeya captiva",Rio Santiago poison frog,Excidobates captivus,bio/ExcidobatesCaptivus,,bio/Excidobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +467740,,"Phrynobatrachus parvulus (Boulenger, 1905)",,Loanda river frog,Arthroleptis parvulus,dwarf puddle frog ,Phrynobatrachus parvulus,bio/PhrynobatrachusParvulus,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +467741,,"Phrynobatrachus rungwensis (Loveridge, 1932)",,Rungwe river frog,Arthroleptis rungwensis,Rungwe puddle frog,Phrynobatrachus rungwensis,bio/PhrynobatrachusRungwensis,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +467742,,"Phrynobatrachus ukingensis (Loveridge, 1932)",,Ukinga puddle frog,Arthroleptis ukingensis,Ukinga river frog,Phrynobatrachus ukingensis,bio/PhrynobatrachusUkingensis,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +467775,,"Spongia strobilina Lamarck, 1816",,pillow stinking sponge,Spongia strobilina,black-ball sponge,Ircinia strobilina,bio/IrciniaStrobilina,,bio/Ircinia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +469796,,"Ovis orientalis Gmelin, 1774",,,Ovis aries orientalis,Asiatic mouflon,Ovis orientalis,bio/OvisOrientalis,,,,,, +471713,,"Plyctolophus leadbeateri Vigors, 1831",,pink cockatoo,"Cacatua leadbeateri, Plyctolophus leadbeateri",Major Mitchell's cockatoo,Lophochroa leadbeateri,bio/LophochroaLeadbeateri,,bio/Lophochroa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +472225,,"Rhabdocalyptus dawsoni (Lambe, 1892)",,sharp-lipped boot sponge,"Rhabdocalyptus dawsoni, Bathydorus dawsoni, Acanthascus (Rhabdocalyptus) dawsoni, Bathydorus dawsoni Lambe, 1892",boot sponge,Acanthascus dawsoni,bio/AcanthascusDawsoni,,bio/Rhabdocalyptus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +472706,,,,,,,Micaelamys,bio/Micaelamys,,,,,, +472707,,"Micaelamys namaquensis (Smith, 1834)",,Namaqua rock rat,Aethomys namaquensis,Namaqua Micaelamys,Micaelamys namaquensis,bio/MicaelamysNamaquensis,,bio/Micaelamys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +472711,,"Maxomys hellwaldii (Jentink, 1878)",,Hellwald's spiny rat,Maxomys hellwaldi,Hellwald's Sulawesi Maxomys,Maxomys hellwaldii,bio/MaxomysHellwaldii,,bio/Maxomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +473129,,"Kerria Targioni-Tozzetti, 1884",,,,,Kerria ,bio/Kerria_ScaleInsects,,,,,, +473130,,"Kerria lacca (Kerr, 1782)",,common lac insect,Coccus lacca,common lac scale,Kerria lacca,bio/KerriaLacca,,bio/Kerria_ScaleInsects,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +473183,,"Epichoristodes Diakonoff, 1960",,,,,Epichoristodes,bio/Epichoristodes,,,,,, +473184,,"Epichoristodes acerbella (Walker, 1864)",,African carnation tortrix,Depressaria acerbella,South African carnation tortrix,Epichoristodes acerbella,bio/EpichoristodesAcerbella,,bio/Epichoristodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +473345,,,,,,,Antimora,bio/Antimora,,,,,, +473346,,"Haloporphyrus rostratus Gunther, 1878",,violet cod,Haloporphyrus rostratus,blue antimora,Antimora rostrata,bio/AntimoraRostrata,,bio/Antimora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +473458,,"Gymnothorax meleagris (Shaw, 1795)",,white-mouth moray,"Lycodontis meleagris, Muraena meleagris",turkey moray,Gymnothorax meleagris,bio/GymnothoraxMeleagris,,bio/Gymnothorax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +474494,,,,,,,Ceratalaspis,bio/Ceratalaspis,,,,,, +475180,,,,,,,Gymnapogon,bio/Gymnapogon,,,,,, +476017,,"Hyperolius marmoratus Rapp, 1842",,variegated rush frog,"Hyperolius marmoratus aposematicus, Hyperolius viridiflavus verrucosus, Hyperolius viridiflavus marmoratus, Hyperolius viridiflavus aposematicus",marbled rush frog,Hyperolius marmoratus,bio/HyperoliusMarmoratus,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +476251,,"Salamandrella tridactyla (Nikolskii, 1906)",,Schrenck Siberian newt,"Salamandrella keyserlingii tridactyla, Isodactylium schrenckii, Salamandrella keyserlingii var. tridactyla, Salamandrella schrenckii",Schrenck's Siberian newt,Salamandrella tridactyla,bio/SalamandrellaTridactyla,,bio/Salamandrella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +476506,,"Heteronotia spelea Kluge, 1963",,desert cave gecko,Heteronota spelea,cave prickly gecko,Heteronotia spelea,bio/HeteronotiaSpelea,,bio/Heteronotia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +477932,,"Corvus cornix capellanus Sclater, PL, 1877",,Iraqi pied crow,"Corvus corone capellanus, Corvus capellanus",Mesopotamian crow,Corvus cornix capellanus,bio/CorvusCornixCapellanus,,bio/CorvusCornix,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +478982,,"Duttaphrynus scaber (Schneider, 1799)",,Boulenger's burrowing toad,"Bufo fergusonii, Bufo scaber",Ferguson's toad,Duttaphrynus scaber,bio/DuttaphrynusScaber,,bio/Duttaphrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +479651,,"Planiliza affinis (Gunther, 1861)",,grey mullet,"Liza affinis, Chelon affinis, Mugil affinis",eastern keelback mullet,Planiliza affinis,bio/PlanilizaAffinis,,bio/Planiliza,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +479705,,"Antechinus bilarni Johnson, 1954",,broad-footed marsupial mouse,"Antechinus bilarni, Parantechinus bilarni",Sandstone dibbler,Pseudantechinus bilarni,bio/PseudantechinusBilarni,,bio/Pseudantechinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +480210,,,,,,,Austrochaperina,bio/Austrochaperina,,,,,, +481308,,,,,,,Loxostege,bio/Loxostege,,,,,, +481309,,"Pyralis sticticalis Linnaeus, 1761",,diamond-spot pearl,"Pyrausta sticticalis, Pyralis sticticalis",beet webworm,Loxostege sticticalis,bio/LoxostegeSticticalis,,bio/Loxostege,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +481462,,"Gasterosteus aculeatus williamsoni Girard, 1854",,unarmored three-spined stickleback,Gasterosteus williamsoni,unarmored threespine stickleback,Gasterosteus aculeatus williamsoni,bio/GasterosteusAculeatusWilliamsoni,,bio/GasterosteusAculeatus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +482143,,"Speleomantes strinatii (Aellen, 1958)",,western cave salamander,Hydromantes strinatii,Strinati's cave salamander,Speleomantes strinatii,bio/SpeleomantesStrinatii,,bio/Speleomantes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +482374,,,,,,,Ornipholidotos,bio/Ornipholidotos,,,,,, +482375,,"Pentila peucetia Hewitson, 1866",,white mimic,Pentila peucetia,large glasswing,Ornipholidotos peucetia,bio/OrnipholidotosPeucetia,,bio/Ornipholidotos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +482536,,,,,,,Galeopterus,bio/Galeopterus,,,,,, +482537,,"Galeopithecus variegatus Audebert, 1799",,Malayan flying lemur,"Cynocephalus variegatus, Galeopithecus variegatus",Sunda flying lemur,Galeopterus variegatus,bio/GaleopterusVariegatus,,bio/Galeopterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +482914,,"Querimana gyrans Jordan & Gilbert, 1884",,fantail mullet,Querimana gyrans,whirligig mullet,Mugil gyrans,bio/MugilGyrans,,bio/Mugil,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +483428,,"Macrocelides revoilii Huet, 1881",,Somali sengi,"Elephantulus revoili, Elephantulus revoilii, Macrocelides revoilii",Somali elephant shrew,Galegeeska revoilii,bio/GalegeeskaRevoilii,,bio/Galegeeska,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +484165,,"Rutilus frisii kutum (Kamensky, 1901)",,kutum,"Leuciscus frisii kutum, Rutilus frisii kutum",Caspian kutum,Rutilus kutum,bio/RutilusKutum,,bio/Rutilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +485636,,,,,,,Hethemia,bio/Hethemia,,,,,, +485637,,"Nemoria pistasciaria Guenee, 1857",,pistachio emerald,Nemoria pistasciaria,pistachio emerald moth,Hethemia pistasciaria,bio/HethemiaPistasciaria,,bio/Hethemia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +486151,,"Heliases notatus Temminck & Schlegel, 1843",,whitesaddled reeffish,Heliases notatus,pearl-spot chromis,Chromis notata,bio/ChromisNotata,,bio/Chromis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +486220,,"Platymantis boulengeri (Boettger, 1892)",,Boulenger's platymantis,"Rana (Platymantis) boulengeri, Rana boulengeri, Cornufer boulengeri, Platymantis boulengeri",Boulenger's wrinkled ground frog,Cornufer boulengeri,bio/CornuferBoulengeri,,bio/Cornufer,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +486473,,,,,,,Speleomantes,bio/Speleomantes,,,,,, +487618,,"Danio margaritatus (Roberts, 2007)",,galaxy rasbora,"Microrasbora sp. Galaxy, Danio (Celestichthys) margaritatus, Celestichthys margaritatus",celestial pearl danio,Danio margaritatus,bio/DanioMargaritatus,,bio/Danio,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +488224,,"Nyctixalus margaritifer Boulenger, 1882",,Java Indonesian treefrog,"Nyctixalus pictus margaritifer, Philautus pictus margaritifer",pearly tree frog,Nyctixalus margaritifer,bio/NyctixalusMargaritifer,,bio/Nyctixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +488246,,"Rhacophorus macrotis Boulenger, 1891",,forest bush frog,Rhacophorus macrotis,Baram whipping frog,Polypedates macrotis,bio/PolypedatesMacrotis,,bio/Polypedates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +488249,,,,,,,Ghatixalus,bio/Ghatixalus,,,,,, +488252,,"Rhacophorus variabilis (Jerdon, 1854)",,green frog of the Neelgherries,"Polypedates variabilis, Rhacophorus variabilis",green tree frog ,Ghatixalus variabilis,bio/GhatixalusVariabilis,,bio/Ghatixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +490056,,,,,Cryptophyllobates,,Hyloxalus,bio/Hyloxalus,,,,,, +490305,,,,,,,Makalata,bio/Makalata,,,,,, +490727,,,,,,,Tandanus,bio/Tandanus,,,,,, +491159,,"Psychrophrynella wettsteini (Parker, 1932)",,LaPlaca's Andes frog,"Eupsophus wettsteini, Psychrophrynella wettsteini, Niceforonia wettsteini, Phrynopus laplacai, Phrynopus wettsteini",Wettstein's Andes frog,Microkayla wettsteini,bio/MicrokaylaWettsteini,,bio/Microkayla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +491200,,"Anser fabalis middendorffii Severtsov, 1873",,Middendorff's bean goose,Anser middendorffii,Eastern taiga bean goose,Anser fabalis middendorffii,bio/AnserFabalisMiddendorffii,,bio/AnserFabalis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +491871,,,,,,,Chiromyscus,bio/Chiromyscus,,,,,, +491955,,"Saxicola caprata (Linnaeus, 1766)",,pied bush chat,Motacilla caprata,pied bushchat,Saxicola caprata,bio/SaxicolaCaprata,,bio/Saxicola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +492764,,"Sesamia inferens (Walker, 1856)",,sugarcane pink borer,Leucania inferens,purple stem borer,Sesamia inferens,bio/SesamiaInferens,,bio/Sesamia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +493409,,,,,,arrowfin gobies,Oxyurichthys,bio/Oxyurichthys,,,,,, +493413,,"Oxyurichthys papuensis (Valenciennes, 1837)",,spangled arrowfin goby,Gobius papuensis,frogface goby,Oxyurichthys papuensis,bio/OxyurichthysPapuensis,,bio/Oxyurichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +495042,,,,,,,Cetengraulis,bio/Cetengraulis,,,,,, +495824,,"Scyliorhinus platyrhynchus Tanaka, 1909",,flatnose catshark,"Apristurus sp. B PRL-1994, Apristurus sp. B RDW-2008, Scyliorhinus platyrhynchus",Borneo catshark,Apristurus platyrhynchus,bio/ApristurusPlatyrhynchus,,bio/Apristurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +495863,,"Trygon walga Mueller & Henle, 1841",,Bengal whipray,"Himantura walga, Trygon walga",dwarf whipray,Brevitrygon walga,bio/BrevitrygonWalga,,bio/Brevitrygon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +495865,,"Hydrolagus trolli Didier & Seret, 2002",,Ray Troll's chimaera,Hydrolagus n. sp. (aby MS) BOLD:AAB7269,pointy-nosed blue chimaera,Hydrolagus trolli,bio/HydrolagusTrolli,,bio/Hydrolagus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +496013,,,,,,,Glaucostegus,bio/Glaucostegus,,,,,, +496087,,"Glyphis Agassiz, 1843",,,,,Glyphis ,bio/Glyphis_SharksRays,,,,,, +496089,,,,,,,Hemipristis,bio/Hemipristis,,,,,, +496090,,"Hemipristis elongata (Klunzinger, 1871)",,fossil shark,Dirrhizodon elongatus,snaggletooth shark,Hemipristis elongata,bio/HemipristisElongata,,bio/Hemipristis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +496415,,"Zearaja maugeana Last & Gledhill, 2007",,Maugean skate,"Dipturus maugenus, Zearaja maugeana",Port Davey skate,Dipturus maugeanus,bio/DipturusMaugeanus,,bio/Dipturus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +497004,,,,,Gonoproktopterus,,Hypselobarbus,bio/Hypselobarbus,,,,,, +498270,,,,,,,Trimma,bio/Trimma,,,,,, +498271,,"Trimma okinawae (Aoyagi, 1949)",,red-spotted dwarfgoby,Eviota caesiura okinawae,Okinawa rubble goby,Trimma okinawae,bio/TrimmaOkinawae,,bio/Trimma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +498517,,,,,,,Clava,bio/Clava,,,,,, +498518,,"Hydra multicornis Fabricius, 1775",,club-headed hydroid,Hydra multicornis,club hydroid,Clava multicornis,bio/ClavaMulticornis,,bio/Clava,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +499857,,,,,,,Thyrsites,bio/Thyrsites,,,,,, +499858,,"Thyrsites atun (Euphrasen, 1791)",,barracouta,"Scomber atun, Leionura atun",snoek,Thyrsites atun,bio/ThyrsitesAtun,,bio/Thyrsites,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +501720,,"Thryssa baelama (Fabricius, 1775)",,little priest,"Thrissocles baelama, Thrissina baelama, Scutengraulis baelama, Clupea baelama, Engraulis baelama",Baelama anchovy,Thryssa baelama,bio/ThryssaBaelama,,bio/Thryssa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +505324,,,,,,,Sigmops,bio/Sigmops,,,,,, +505396,,,,,,,Callistoctopus,bio/Callistoctopus,,,,,, +505953,,"Virbia Walker, 1854",,,Holomelina,,Virbia,bio/Virbia,,,,,, +505955,,"Virbia ferruginosa (Walker, 1854)",,five-spotted holomelina,"Holomelina ferruginosa, Crocota ferruginosa",rusty holomelina,Virbia ferruginosa,bio/VirbiaFerruginosa,,bio/Virbia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +505961,,"Gyrinophilus palleucus McCrady, 1954",,Sinking Cove cave salamander,Pseudotriton palleucus,Tennessee cave salamander,Gyrinophilus palleucus,bio/GyrinophilusPalleucus,,bio/Gyrinophilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +507706,,,,,,,Ameerega,bio/Ameerega,,,,,, +507971,,,,,,,Ptilopsis,bio/Ptilopsis,,,,,, +507973,,"Strix leucotis Temminck, 1820",,white-faced scops-owl,"Otus leucotis, Strix leucotis",Northern white-faced owl,Ptilopsis leucotis,bio/PtilopsisLeucotis,,bio/Ptilopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +509078,,"Hypsiglena slevini Tanner, 1943",,Baja California night snake,Eridiphas slevini,Baja California nightsnake,Hypsiglena slevini,bio/HypsiglenaSlevini,,bio/Hypsiglena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +510768,,"Otocinclus affinis Steindachner, 1877",,golden otocinclus,Macrotocinclus affinis,midget sucker fish,Otocinclus affinis,bio/OtocinclusAffinis,,bio/Otocinclus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +512429,,"Austrochaperina robusta Fry, 1912",,robust frog,Sphenophryne robusta,chirping land frog,Austrochaperina robusta,bio/AustrochaperinaRobusta,,bio/Austrochaperina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +512457,,"Microhyla achatina Tschudi, 1838",,Javanese narrow-mouthed frog,"Hyla achatina, Dendromanes achatinus, Hysaplesia achatina",Java rice frog,Microhyla achatina,bio/MicrohylaAchatina,,bio/Microhyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +512458,,"Microhyla malcolmi Cochran, 1927",,Berdmore's narrow-mouthed frog,"Diplopelma berdmorei, Engystoma berdmorei, Microhyla malcolmi",Pegu rice frog,Microhyla berdmorei,bio/MicrohylaBerdmorei,,bio/Microhyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +512777,,"Tandanus tandanus (Mitchell, 1838)",,Tandan catfish,Plotosus tandanus,eel-tailed catfish,Tandanus tandanus,bio/TandanusTandanus,,bio/Tandanus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +515824,,"Callistoctopus minor (Sasaki, 1920)",,Korean common octopus,Octopus minor,long arm octopus,Callistoctopus minor,bio/CallistoctopusMinor,,bio/Callistoctopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +516037,,"Sewellia Hora, 1932",,,,,Sewellia ,bio/Sewellia_BonyFishes,,,,,, +516038,,"Sewellia lineolata (Valenciennes, 1846)",,reticulated hillstream loach,Balitora lineolata,tiger hillstream loach,Sewellia lineolata,bio/SewelliaLineolata,,bio/Sewellia_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +516811,,"Raiamas senegalensis (Steindachner, 1870)",,silver fish,Barilius senegalensis,Senegal minnow,Raiamas senegalensis,bio/RaiamasSenegalensis,,bio/Raiamas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +518105,,,,,,,Culex pipiens complex,bio/CulexPipiensComplex,,,,,, +520854,,"Philautus glandulosus (Jerdon, 1854)",,rough-skinned bush frog,"Rhacophorus glandulosus, Ixalus glandulosa, Philautus glandulosus, Ixalis glandulosa",southern bubble-nest frog,Raorchestes glandulosus,bio/RaorchestesGlandulosus,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +520858,,"Philautus beddomii (Gunther, 1876)",,Beddome's bush frog,"Ixalus beddomii, Rhacophorus beddomii, Philautus beddomii",Beddome's bubble-nest frog,Raorchestes beddomii,bio/RaorchestesBeddomii,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +520860,,"Philautus bombayensis (Annandale, 1919)",,Maharashtra bush frog,"Rhacophorus bombayensis, Philautus bombayensis, Ixalus bombayensis",Bombay bubble-nest frog,Raorchestes bombayensis,bio/RaorchestesBombayensis,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +520875,,"Philautus travancoricus (Boulenger, 1891)",,Travancore tree frog,"Rhacophorus travancoricus, Philautus travancoricus, Ixalus travancoricus",Travancore bubble-nest frog,Raorchestes travancoricus,bio/RaorchestesTravancoricus,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +521022,,"Cetengraulis edentulus (Cuvier, 1829)",,whalebone anchovy,Engraulis edentulus,Atlantic anchoveta,Cetengraulis edentulus,bio/CetengraulisEdentulus,,bio/Cetengraulis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +521099,,"Micropterus punctulatus punctulatus (Rafinesque, 1819)",,northern spotted blackbass,Calliurus punctulatus punctulatus,northern spotted bass,Micropterus punctulatus punctulatus,bio/MicropterusPunctulatusPunctulatus,,bio/MicropterusPunctulatus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +521259,,,,,,,Phoebastria,bio/Phoebastria,,,,,, +521382,,"Oedipus robustus Cope, 1894",,ringtail salamander,"Magnadigita robusta, Oedipus robustus",robust mushroomtongue salamander,Bolitoglossa robusta,bio/BolitoglossaRobusta,,bio/Eladinea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +521416,,"Nannobranchium macdonaldi Goode & Bean, 1896",,rakery lanternfish,"Nanobrachium macdonaldi, Nannobranchium macdonaldi",rakery beaconlamp,Lampanyctus macdonaldi,bio/LampanyctusMacdonaldi,,bio/Lampanyctus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +521419,,"Ctenogobius tortugae Jordan, 1904",,brindled goby,Ctenogobius tortugae,patch-reef goby,Coryphopterus tortugae,bio/CoryphopterusTortugae,,bio/Coryphopterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +525815,,"Clossiana Reuss, 1920",,,,,Clossiana,bio/Clossiana,,,,,, +526129,,"Sachatamia ilex (Savage, 1967)",,ghost glass frog,"Centrolenella ilex, Centrolene ilex",Limon giant glass frog,Sachatamia ilex,bio/SachatamiaIlex,,bio/Sachatamia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +526138,,"Sachatamia albomaculata (Taylor, 1949)",,yellow-flecked glassfrog,"Centrolenella albomaculata, Cochranella albomaculata",white-spotted cochran frog,Sachatamia albomaculata,bio/SachatamiaAlbomaculata,,bio/Sachatamia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +530166,,,,,,,Cerradomys,bio/Cerradomys,,,,,, +532072,,"Astrochelys Gray, 1873",,,,,Astrochelys,bio/Astrochelys,,,,,, +532073,,"Testudo yniphora Vaillant, 1885",,ploughshare tortoise,"Testudo yniphora, Angonoka yniphora, Madagascar angulated tortoise, Geochelone yniphora",Madagascan plowshare tortoise,Astrochelys yniphora,bio/AstrochelysYniphora,,bio/Astrochelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +533315,,"Plectorhinchus gibbosus (Lacepede, 1802)",,gibbus thicklip,Holocentrus gibbosus,Harry hotlips,Plectorhinchus gibbosus,bio/PlectorhinchusGibbosus,,bio/Plectorhinchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +536571,,"Phrynobatrachus gutturosus (Chabanaud, 1921)",,Chabanaud's river frog,Arthroleptis gutturosus,guttural river frog,Phrynobatrachus gutturosus,bio/PhrynobatrachusGutturosus,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +542827,,,,,,,Rhinopithecus,bio/Rhinopithecus,,,,,, +544411,,"Chlorurus bowersi (Snyder, 1909)",,orange-blotch parrotfish,Callyodon bowersi,Bower's parrotfish,Chlorurus bowersi,bio/ChlorurusBowersi,,bio/Chlorurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +544413,,"Chlorurus japanensis (Bloch, 1789)",,pale bullethead parrotfish,Scarus japanensis,palecheek parrotfish,Chlorurus japanensis,bio/ChlorurusJapanensis,,bio/Chlorurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +544415,,"Scarus altipinnis (Steindachner, 1879)",,highfinned parrotfish,Pseudoscarus altipinnis,filament-finned parrotfish,Scarus altipinnis,bio/ScarusAltipinnis,,bio/Scarus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +545688,,"Exocoetus poecilopterus Valenciennes, 1847",,yellowfin flying fish,Exocoetus poecilopterus,yellow-wing flyingfish,Cypselurus poecilopterus,bio/CypselurusPoecilopterus,,bio/Cypselurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +546548,,,,,Helotes,,Pelates,bio/Pelates,,,,,, +546549,,"Pelates quadrilineatus (Bloch, 1790)",,trumpeter perch,"Therapon quadrilineatus, Holocentrus quadrilineatus",fourlined terapon,Pelates quadrilineatus,bio/PelatesQuadrilineatus,,bio/Pelates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +548164,,"Notolabrus fucicola (Richardson, 1840)",,purple wrasse,Labrus fucicola,yellow-saddled wrasse,Notolabrus fucicola,bio/NotolabrusFucicola,,bio/Notolabrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +548508,,"Iridosornis porphyrocephalus (Sclater, PL, 1856)",,Purplish mantled tanager,"Iridornis porphyrocephala, Iridosornis porphyrocephala",Purplish-mantled tanager,Iridosornis porphyrocephalus,bio/IridosornisPorphyrocephalus,,bio/Iridosornis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +552877,,"Phyllornis aurifrons Temminck, 1829",,golden fronted leafbird,Phyllornis aurifrons,gold-fronted leafbird,Chloropsis aurifrons,bio/ChloropsisAurifrons,,bio/Chloropsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +552897,,"Dromaeocercus brunneus Sharpe, 1877",,brown emutail,Dromaeocercus brunneus,brown emu-tail,Bradypterus brunneus,bio/BradypterusBrunneus,,bio/Bradypterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +552898,,,,,,,Eremomela,bio/Eremomela,,,,,, +552899,,"Malcorus gregalis Smith, 1829",,yellow-rumped eremomela,Malcorus gregalis,karoo eremomela,Eremomela gregalis,bio/EremomelaGregalis,,bio/Eremomela,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +552919,,,,,,,Lioptilus,bio/Lioptilus,,,,,, +552920,,"Turdus nigricapillus Vieillot, 1818",,bush blackcap,Turdus nigricapillus,blackcap mountain-babbler,Lioptilus nigricapillus,bio/LioptilusNigricapillus,,bio/Lioptilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +552921,,,,,,,Nesillas,bio/Nesillas,,,,,, +552922,,"Nesillas typica (Hartlaub, 1860)",,Malagasy brush warbler,Ellisia typica,Madagascan brush warbler,Nesillas typica,bio/NesillasTypica,,bio/Nesillas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +555355,,,,,,,Thalasseus,bio/Thalasseus,,,,,, +555356,,"Thalasseus maximus Boddaert, 1783",,royal tern,Sterna maxima,Royal tern,Thalasseus maximus,bio/ThalasseusMaximus,,bio/Thalasseus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +555602,,"Sparus fuscescens Houttuyn, 1782",,black rockfish,"Sebastodes fuscescens, Sparus fuscescens",black-banded rockfish,Sebastes fuscescens,bio/SebastesFuscescens,,bio/Sebastes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +557290,,"Ovis aries ophion Blyth, 1841",,Cypriot mouflon,"Ovis aries ophion, Ovis gmelini ophion",Cyprus mouflon,Ovis orientalis ophion,bio/OvisOrientalisOphion,,bio/OvisOrientalis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionMammals,True, +561726,,,,,,,Histiophryne,bio/Histiophryne,,,,,, +563992,,,,,,,Dermanura,bio/Dermanura,,,,,, +566292,,"Stichopus variegatus Semper, 1868",,Selenka's sea cucumber,Stichopus variegatus,warty sea cucumber,Stichopus horrens,bio/StichopusHorrens,,bio/Stichopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +566407,,"Synodontis batensoda Ruppell, 1832",,upside-down catfish,Brachysynodontis batensoda,upsidedown catfish,Synodontis batensoda,bio/SynodontisBatensoda,,bio/Synodontis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +568896,,"Eubleekeria Fowler, 1904",,,,,Eubleekeria,bio/Eubleekeria,,,,,, +568926,,"Neoromicia Roberts, 1926",,,,,Neoromicia,bio/Neoromicia,,,,,, +568927,,"Rhinolophus nana Thomas, 1901",,banana pipistrelle,"Hypsugo nanus, Neoromicia nanus, Neoromicia nana, Rhinolophus nana, Pipistrellus nanus",Banana bat,Afronycteris nana,bio/AfronycterisNana,,bio/Afronycteris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +570414,,"Mus macleari Thomas, 1887",,Maclear's rat,Mus macleari,Maclear's Christmas Island rat,Rattus macleari,bio/RattusMacleari,,bio/Rattus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +570415,,"Mus nativitatis Thomas, 1889",,Christmas Island burrowing rat,Mus nativitatis,Christmas Island rat,Rattus nativitatis,bio/RattusNativitatis,,bio/Rattus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +571339,,,,,,,Mesoclemmys,bio/Mesoclemmys,,,,,, +571825,,"Glyphis glyphis (Muller & Henle, 1839)",,freshwater speartooth shark,"Carcharhinus glyphis, Glyphis sp. A 'freshwater speartooth shark', Carcharias glyphis",speartooth shark,Glyphis glyphis,bio/GlyphisGlyphis,,bio/Glyphis_SharksRays,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +573212,,,,,,,Blepsias,bio/Blepsias,,,,,, +573213,,"Trachinus cirrhosus Pallas, 1814",,silver spot,Trachinus cirrhosus,silverspotted sculpin,Blepsias cirrhosus,bio/BlepsiasCirrhosus,,bio/Blepsias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +573377,,"Silurus maculatus Thunberg, 1792",,spotted sea catfish,"Tachysurus maculatus, Silurus maculatus",spotted catfish,Arius maculatus,bio/AriusMaculatus,,bio/Arius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +573891,,"Strongylopus wageri (Wager, 1961)",,plain stream frog,"Rana (Stronglylopus) wageri, Rana wageri",Wager's stream frog,Strongylopus wageri,bio/StrongylopusWageri,,bio/Strongylopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +575557,,"Silurus malabaricus Valenciennes, 1840",,chottuvala,Silurus malabaricus,Goan catfish,Ompok malabaricus,bio/OmpokMalabaricus,,bio/Ompok,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +577198,,"Arthroleptis francei Loveridge, 1953",,France's squeaker,"Abroscaphus adolfifriderici francei, Arthroleptis adolfifriederici francei",Ruo River screeching frog,Arthroleptis francei,bio/ArthroleptisFrancei,,bio/Arthroleptis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +577200,,"Arthroleptis reichei Nieden, 1911",,Reiche's squeaker,Abroscaphus reichei,Poroto Mountains screeching frog,Arthroleptis reichei,bio/ArthroleptisReichei,,bio/Arthroleptis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +577205,,"Arthroleptis xenodactylus Boulenger, 1909",,eastern squeaker,Schoutedenella xenodactyla,Amani screeching frog ,Arthroleptis xenodactylus,bio/ArthroleptisXenodactylus,,bio/Arthroleptis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +578142,,"Coluber rufulus Lichtenstein, 1823",,olive-brown water snake,Coluber rufulus,common brown water snake,Lycodonomorphus rufulus,bio/LycodonomorphusRufulus,,bio/Lycodonomorphus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +578143,,"Glypholycus whytii Boulenger, 1897",,Whyte's water-snake,Glypholycus whytii,Whyte's water snake,Lycodonomorphus whytii,bio/LycodonomorphusWhytii,,bio/Lycodonomorphus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +582433,,,,,,,Brachaelurus,bio/Brachaelurus,,,,,, +582434,,"Brachaelurus waddi (Bloch & Schneider, 1801)",,dusky dogfish,Squalus waddi,blind shark,Brachaelurus waddi,bio/BrachaelurusWaddi,,bio/Brachaelurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +584662,,"Philautus menglaensis Kou, 1990",,Zhishihe's bubble-nest frog,"Philautus menglaensis, Philautus (Philautus) menglaensis, Kirtixalus menglaensis, Pseudophilautus menglaensis",Mengla small treefrog,Raorchestes menglaensis,bio/RaorchestesMenglaensis,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +585466,,"Charadrius grallarius Latham, 1801",,beach thick-knee,"Burhinus magnirostris, Charadrius grallarius",Bush thick-knee,Burhinus grallarius,bio/BurhinusGrallarius,,bio/Burhinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +586024,,"Rana aenea Smith, 1922",,Doi Chang frog,"Chaparana fansipani, Rana (Chaparana) fansipani Bourret, 1939, Chaparana aenea, Quasipaa aenea, Paa aenea, Rana aenea",keel-backed frog,Nanorana aenea,bio/NanoranaAenea,,bio/Nanorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +586785,,"Holacanthus bispinosus Gunther, 1860",,two-spined angelfish,Holacanthus bispinosus,twospined angelfish,Centropyge bispinosa,bio/CentropygeBispinosa,,bio/Centropyge,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +587054,,,,,,,Istiblennius,bio/Istiblennius,,,,,, +587066,,,,,,,Pareques,bio/Pareques,,,,,, +590941,,"Rasbora lateristriata (Bleeker, 1854)",,sidestrap rasbora,Leuciscus lateristriatus,yellow rasbora,Rasbora lateristriata,bio/RasboraLateristriata,,bio/Rasbora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +591287,,"Pimelodus sagor Hamilton, 1822",,Sunda sea catfish,"Arius sagor, Tachysurus sagor, Sciades sagor, Pimelodus sagor",Sagor catfish,Hexanematichthys sagor,bio/HexanematichthysSagor,,bio/Hexanematichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +591288,,"Sciades sona (Hamilton, 1822)",,dusky catfish,"Sciades sona, Tachysurus sona, Pimelodus sona, Arius sona",Sona sea catfish,Hemiarius sona,bio/HemiariusSona,,bio/Hemiarius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +591301,,,,,,,Hexanematichthys,bio/Hexanematichthys,,,,,, +591302,,,,,,,Hemiarius,bio/Hemiarius,,,,,, +591932,,,,,,,Piliocolobus,bio/Piliocolobus,,,,,, +591934,,"Colobus rufomitratus Peters, 1879",,Eastern red Colobus,"Colobus rufomitratus, Procolobus badius rufomitratus",Tana river red Colobus,Piliocolobus rufomitratus,bio/PiliocolobusRufomitratus,,bio/Piliocolobus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +596107,,"Trygon undulata Bleeker, 1852",,honeycomb whipray,Trygon undulata,leopard whipray ,Himantura undulata,bio/HimanturaUndulata,,bio/Himantura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +596145,,"Silurus pabda Hamilton, 1822",,Pabda catfish,"Callichrous pabda, Wallago pabda, Silurus pabda",Pabdah catfish,Ompok pabda,bio/OmpokPabda,,bio/Ompok,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +613076,,,,,,,Crossodactylodes,bio/Crossodactylodes,,,,,, +613087,,,,,,,Calyptocephallela,bio/Calyptocephallela,,,,,, +622367,,"Leuciscus melettina Valenciennes, 1844",,silver carplet,"Leuciscus melettina, Amblypharyngodon melettina",attentive carplet ,Amblypharyngodon melettinus,bio/AmblypharyngodonMelettinus,,bio/Amblypharyngodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +622399,,"Eleotris periophthalmus Bleeker, 1853",,periophthalma prawn-goby,"Eleotris periophthalmus, Amblyeleotris periopthalmus",broadbanded shrimp-goby,Amblyeleotris periophthalma,bio/AmblyeleotrisPeriophthalma,,bio/Amblyeleotris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +622413,,"Pallidogobius rigilius Herre, 1953",,rigilius goby,"Pallidogobius rigilius, Istigobius rigillius, Istigobius regilius",orange-spotted goby,Istigobius rigilius,bio/IstigobiusRigilius,,bio/Istigobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +622600,,"Rana pierrei Dubois, 1975",,Pierre's wart frog,"Fejervarya pierrei, Limnonectes pierrei, Rana pierrei, Zakerana pierrei, Euphlyctis pierrei",Pierre's cricket frog,Minervarya pierrei,bio/MinervaryaPierrei,,bio/Minervarya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +624848,,"Labrus longirostris Lacepede, 1801",,strongspine silver-biddy,"Gerres acinaces, Labrus longirostris",longtail silverbiddy,Gerres longirostris,bio/GerresLongirostris,,bio/Gerres,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +627180,,"Semaprochilodus taeniurus (Valenciennes, 1821)",,flagtail characoid,"Curimatus taeniurus, Prochilodus taeniurus",silver prochilodus,Semaprochilodus taeniurus,bio/SemaprochilodusTaeniurus,,bio/Semaprochilodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +632609,,"Rana chapaensis (Bourret, 1937)",,Chapa frog,"Hylarana chapaensis, Babina chapaensis, Rana chapaensis",glandular-sided frog,Nidirana chapaensis,bio/NidiranaChapaensis,,bio/Nidirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +633869,,"Salamandra alleganiensis alleganiensis Sonnini de Manoncourt and Latreille, 1801",,Allegheny hellbender,Salamandra alleganiensis alleganiensis,eastern hellbender,Cryptobranchus alleganiensis alleganiensis,bio/CryptobranchusAlleganiensisAlleganiensis,,bio/CryptobranchusAlleganiensis,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +635074,,,,,,,Myotomys,bio/Myotomys,,,,,, +635075,,"Otomys sloggetti Thomas, 1902",,Sloggett's vlei rat,Otomys sloggetti,Rock karroo rat,Myotomys sloggetti,bio/MyotomysSloggetti,,bio/Myotomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +635150,,"Proceratophrys appendiculata (Guenther, 1873)",,Gunther's smooth horned frog,"Ceratophrys appendiculata, Stombus appendiculatus",Guenther's horned frog,Proceratophrys appendiculata,bio/ProceratophrysAppendiculata,,bio/Proceratophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +637726,,"Sicydium Valenciennes in Cuvier & Valenciennes, 1837",,,,American rockclimbing gobies,Sicydium ,bio/Sicydium_BonyFishes,,,,,, +638140,,"Ostorhinchus lateralis (Valenciennes, 1832)",,inshore cardinalfish,"Ostorhinchus lateralis, Ostorhynchus lateralis, Apogon lateralis",humpback cardinal,Fibramia lateralis,bio/FibramiaLateralis,,bio/Fibramia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +638272,,,,,,,Apogon ,bio/Apogon_Subgenus,,,,,, +638290,,,,,Ostorhynchus,,Ostorhinchus,bio/Ostorhinchus,,,,,, +642922,,"Pimelodus filamentosus Lichtenstein, 1819",,piraiba,"Pimelodes filamentosus, Pimelodus filamentosus",kumakuma,Brachyplatystoma filamentosum,bio/BrachyplatystomaFilamentosum,,bio/Brachyplatystoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +643422,,,,,,,Petroleuciscus,bio/Petroleuciscus,,,,,, +643485,,"Ixalus concolor Hallowell, 1844",,Hallowell's sedge frog,"Rappia concolor, Ixalus concolor",variable reed frog,Hyperolius concolor,bio/HyperoliusConcolor,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +643490,,"Rappia montana Angel, 1924",,montane reed frog,Rappia montana,mountain reed frog,Hyperolius montanus,bio/HyperoliusMontanus,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +643491,,"Rappia phantastica Boulenger, 1899",,Chabanaud's reed frog,Rappia phantastica,fantastic reed frog,Hyperolius phantasticus,bio/HyperoliusPhantasticus,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +643493,,"Rappia platyceps Boulenger, 1900",,Angola reed frog,"Megalixalus platyceps, Rappia platyceps",Benito River reed frog,Hyperolius platyceps,bio/HyperoliusPlatyceps,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +651656,,,,,Bufo (Incilius),,Incilius,bio/Incilius,,,,,, +651658,,,,,Bufo (Ingerophrynus),,Ingerophrynus,bio/Ingerophrynus,,,,,, +651664,,,,,,,Phrynoidis,bio/Phrynoidis,,,,,, +651667,,,,Rio Viejo toads,"Chaunus, Rhamphophryne",beaked toads,Rhinella,bio/Rhinella,,,,,, +651669,,,,,,,Vandijkophrynus,bio/Vandijkophrynus,,,,,, +651670,,,,,Bufo (Anaxyrus),,Anaxyrus,bio/Anaxyrus,,,,,, +651673,,,,,Pseudepidalea,,Bufotes,bio/Bufotes,,,,,, +651674,,,,,Bufo (Epidalea),,Epidalea,bio/Epidalea,,,,,, +651675,,,,,Bufo (Nannophryne),,Nannophryne,bio/Nannophryne,,,,,, +651676,,,,,,,Poyntonophrynus,bio/Poyntonophrynus,,,,,, +651678,,,,,,,Peltophryne,bio/Peltophryne,,,,,, +651679,,,,,Andinophryne,,Rhaebo,bio/Rhaebo,,,,,, +651680,,,,,Bufo (Duttaphrynus),,Duttaphrynus,bio/Duttaphrynus,,,,,, +651720,,,,,,,Neotrygon,bio/Neotrygon,,,,,, +651721,,"Trygon kuhlii Muller & Henle, 1841",,bluespotted stingray,"Dicerobatis kuhlii, Trygon kuhlii, Dasyatis kuhlii",spotted stingray,Neotrygon kuhlii,bio/NeotrygonKuhlii,,bio/Neotrygon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +651724,,"Taeniurops meyeni Garman, 1913",,round ribbontail ray,"Taeniura melanospilos, Taeniurops meyeni",blotched fantail ray,Taeniura meyeni,bio/TaeniuraMeyeni,,bio/Taeniura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +652442,,"Pelor japonicum Cuvier, 1829",,oni-okoze,Pelor japonicum,devil stinger,Inimicus japonicus,bio/InimicusJaponicus,,bio/Inimicus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655099,,"Chrysophrys puniceus Gilchrist & Thompson, 1908",,slinger,Chrysophrys puniceus,slinger sunbream,Chrysoblephus puniceus,bio/ChrysoblephusPuniceus,,bio/Chrysoblephus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655831,,"Pseudophryne vivipara Tornier, 1905",,robust forest toad,"Pseudophryne vivipara, Tornierobates vivipara",Morogoro tree toad,Nectophrynoides viviparus,bio/NectophrynoidesViviparus,,bio/Nectophrynoides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655832,,"Pedostibes tuberculosus Gunther, 1876",,warty Asian tree toad,Nectophryne tuberculosa,Malabar tree toad,Pedostibes tuberculosus,bio/PedostibesTuberculosus,,bio/Pedostibes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655833,,"Pelophryne signata (Boulenger, 1895)",,short-legged dwarf toad,Nectophryne signata,Saint Andrew's Cross toadlet,Pelophryne signata,bio/PelophryneSignata,,bio/Pelophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655847,,"Rana verrucosissimus Pallas, 1814",,Caucasus toad,"Bufo bufo verrucosissima, Rana verrucosissimus",Caucasian toad,Bufo verrucosissimus,bio/BufoVerrucosissimus,,bio/Bufo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655848,,"Lacerta caudiverbera Linnaeus, 1758",,Gays frog,"Calyptocephalella gayi, Calyptocephala gayi, Lacerta caudiverbera, Calyptocephalus gayi, Caudiverbera caudiverbera",helmeted water toad,Calyptocephallela gayi,bio/CalyptocephallelaGayi,,bio/Calyptocephallela,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655852,,"Duttaphrynus brevirostris (Rao, 1937)",,short-nosed toad,Bufo brevirostris,Rao's pale brown toad,Duttaphrynus brevirostris,bio/DuttaphrynusBrevirostris,,bio/Duttaphrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655855,,"Duttaphrynus hololius (Guenther, 1876)",,Gunter's toad,Bufo hololius,Malabar toad,Duttaphrynus hololius,bio/DuttaphrynusHololius,,bio/Duttaphrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655856,,"Duttaphrynus parietalis (Boulenger, 1882)",,ridged toad,Bufo parietalis,timber forest toad,Duttaphrynus parietalis,bio/DuttaphrynusParietalis,,bio/Duttaphrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655869,,"Stephopaedes loveridgei Poynton, 1991",,Mahenge toad,"Mertensophryne (Stephopaedes) loveridgei, Mertensophryne loveridgei",Loveridge's forest toad,Stephopaedes loveridgei,bio/StephopaedesLoveridgei,,bio/Stephopaedes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +655891,,"Mertensophryne uzunguensis (Loveridge, 1932)",,Udzungwa toad,"Bufo uzunguensis, Bufo taitanus uzunguensis",Uzungwe toad,Mertensophryne uzunguensis,bio/MertensophryneUzunguensis,,bio/Mertensophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +658163,,"Rana holsti Boulenger, 1892",,Okinawa shima frog,Rana holsti,dagger frog,Babina holsti,bio/BabinaHolsti,,bio/Babina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +658176,,"Tetrodon reticularis Bloch & Schneider, 1801",,reticulated puffer,"Tetraodon reticularis, Tetrodon reticularis",reticulated pufferfish,Arothron reticularis,bio/ArothronReticularis,,bio/Arothron,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +658181,,,,,,,Cyclichthys,bio/Cyclichthys,,,,,, +658182,,"Diodon orbicularis Bloch, 1785",,rounded porcupinefish,"Diodon orbicularis, Chilomycterus orbicularis",birdbeak burrfish,Cyclichthys orbicularis,bio/CyclichthysOrbicularis,,bio/Cyclichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +659170,,,,,,,Iduna,bio/Iduna,,,,,, +661134,,"Zygaena tudes Valenciennes, 1822",,great hammerhead,Zygaena tudes,smalleye hammerhead,Sphyrna tudes,bio/SphyrnaTudes,,bio/Sphyrna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +661228,,"Mugil monticola Bancroft, 1834",,freshwater mullet,"Dajaus monticola, Mugil monticola",mountain mullet,Agonostomus monticola,bio/AgonostomusMonticola,,bio/Agonostomus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +662560,,"Rusa C. H. Smith, 1827",,,,,Rusa,bio/Rusa,,,,,, +662561,,"Cervus unicolor Kerr, 1792",,Sambar deer,Cervus unicolor,Sambar,Rusa unicolor,bio/RusaUnicolor,,bio/Rusa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +663277,,"Xenophrys montana (Kuhl & Van Hasselt, 1822)",,nose-horned frog,"Xenophrys montana, Ceratophrys montana, Megophrys monticola, Leptobrachium (Megalophrys) montana",Asian spadefoot toad,Megophrys montana,bio/MegophrysMontana,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +666058,,,,,,,Chamaepsila,bio/Chamaepsila,,,,,, +666059,,"Chamaepsila rosae (Fabricius, 1794)",,carrot fly,"Musca rosae Fabricius, 1794, Chamaepsila hennigi, Psila rosae",carrot rust fly,Chamaepsila rosae,bio/ChamaepsilaRosae,,bio/Chamaepsila,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +666682,,"Hyla immaculata Boettger, 1888",,North China tree toad,"Hyla arborea var. immaculata, Hyla chinensis var. immaculata, Hyla immaculata",spotless tree toad,Dryophytes immaculatus,bio/DryophytesImmaculatus,,bio/Dryophytes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +666914,,,,,,,Hyemoschus,bio/Hyemoschus,,,,,, +666915,,"Moschus aquaticus Ogilby, 1841",,Fanged deer,Moschus aquaticus,Water chevrotain,Hyemoschus aquaticus,bio/HyemoschusAquaticus,,bio/Hyemoschus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +670114,,"Schistura savona (Hamilton, 1822)",,Savona loach,"Nemacheilus savona, Cobitis savona",half-banded loach,Schistura savona,bio/SchisturaSavona,,bio/Schistura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +670346,,"Ixobrychus eurhythmus (Swinhoe, 1873)",,Schrenck's bittern,Ardetta eurhythma,von Schrenck's bittern,Ixobrychus eurhythmus,bio/IxobrychusEurhythmus,,bio/Ixobrychus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +670488,,"Syngnathus cyanospilos Bleeker, 1854",,Ward's pipefish,"Syngnathus cyanospilos, Hippichthys cyanospilus",blue-spotted pipefish,Hippichthys cyanospilos,bio/HippichthysCyanospilos,,bio/Hippichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +670521,,"Acanthurus bariene Lesson, 1831",,roundspot surgeonfish,Hepatus bariene,black-spot surgeonfish,Acanthurus bariene,bio/AcanthurusBariene,,bio/Acanthurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +670918,,"Raorchestes longchuanensis (Yang & Li, 1978)",,Longchuan bubble-nest frog,"Kirtixalus longchaunensis, Aquixalus longchuanensis, Philautus longchuanensis, Pseudophilautus longchuanensis",Longchuan small treefrog,Raorchestes longchuanensis,bio/RaorchestesLongchuanensis,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +670925,,"Theloderma moloch (Annandale, 1912)",,Xizang warty treefrog,"Phrynoderma moloch, Rhacophorus moloch, Nyctixalus moloch",black-spotted frog ,Theloderma moloch,bio/ThelodermaMoloch,,bio/Theloderma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +670929,,,,,Rohanixalus,,Feihyla,bio/Feihyla,,,,,, +671158,,"Carcharias brachyurus Gunther, 1870",,narrow-tooth shark,Carcharias brachyurus,copper shark,Carcharhinus brachyurus,bio/CarcharhinusBrachyurus,,bio/Carcharhinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +671161,,,,,,,Nasolamia,bio/Nasolamia,,,,,, +671162,,"Nasolamia velox (Gilbert, 1898)",,requiem shark,Carcharhinus velox,whitenose shark,Nasolamia velox,bio/NasolamiaVelox,,bio/Nasolamia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +672773,,,,,,,Pseudopus,bio/Pseudopus,,,,,, +672774,,"Pseudopus apodus (Pallas, 1775)",,European glass lizard,"Ophisaurus apodus, Lacerta apoda",scheltopusik,Pseudopus apodus,bio/PseudopusApodus,,bio/Pseudopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +672787,,"Niviventer langbianis (Robinson & Kloss, 1922)",,Indochinese arboreal Niviventer,Niviventer langbianis,Lang Bian white-bellied rat,Chiromyscus langbianis,bio/ChiromyscusLangbianis,,bio/Chiromyscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +673032,,"Vieja bifasciata (Steindachner, 1864)",,red speck cichlid,"Theraps bifasciatum, Cichlasoma bifasciatum, Paraneetroplus bifasciatus, Heros bifasciatus",twoband cichlid,Vieja bifasciata,bio/ViejaBifasciata,,bio/Vieja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +673854,,"Raja pastinaca Linnaeus, 1758",,blue stingray,"Trygon pastinaca, Dasybatus pastinaca, Raja pastinaca, Trygon vulgaris pastinaca",common stingray,Dasyatis pastinaca,bio/DasyatisPastinaca,,bio/Dasyatis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681189,,,,,,,Drepanornis,bio/Drepanornis,,,,,, +681214,,"Cyclorana cryptotis Tyler & Martin, 1977",,earless water-holding frog,"Litoria (Cyclorana) cryptotis, Litoria cryptotis",hidden-ear frog,Cyclorana cryptotis,bio/CycloranaCryptotis,,bio/Cyclorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681215,,"Cyclorana cultripes Parker, 1940",,olive water-holding frog,"Litoria (Cyclorana) cultripes, Litoria cultripes",knife-footed frog,Cyclorana cultripes,bio/CycloranaCultripes,,bio/Cyclorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681216,,"Ranoidea maculosa (Tyler & Martin, 1977)",,olive water-holding frog,"Cyclorana maculosus, Litoria maculosa, Litoria (Cyclorana) maculosa",Daly Waters frog,Ranoidea maculosa,bio/RanoideaMaculosa,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681217,,"Cyclorana novaehollandiae Steindachner, 1867",,eastern snapping-frog,"Cyclorana novae-hollandiae, Litoria novaehollandiae, Litoria (Cyclorana) novaehollandiae",New Holland frog,Cyclorana novaehollandiae,bio/CycloranaNovaehollandiae,,bio/Cyclorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681218,,"Ranoidea platycephala (Gunther, 1873)",,flat-headed frog,"Phractops platycephalus, Neophractops platycephalus, Cyclorana platycephala, Litoria platycephala, Chiroleptes platycephalus, Litoria (Cyclorana) platycephala",water-holding frog,Ranoidea platycephala,bio/RanoideaPlatycephala,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681219,,"Cyclorana vagitus Tyler, Davies & Martin, 1981",,crying water-holding frog,"Litoria (Cyclorana) vagitus, Cyclorana vagita, Litoria vagitus",wailing frog,Cyclorana vagitus,bio/CycloranaVagitus,,bio/Cyclorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681220,,"Cyclorana verrucosa Tyler & Martin, 1977",,woodland water-holding frog,"Litoria verrucosa, Litoria (Cyclorana) verrucosa, Cyclorana verrucosus",rough frog,Cyclorana verrucosa,bio/CycloranaVerrucosa,,bio/Cyclorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681221,,"Litoria adelaidensis (Gray, 1841)",,slender treefrog,"Hyla adelaidensis, Coggerdonia adelaidensis",slender tree frog,Litoria adelaidensis,bio/LitoriaAdelaidensis,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681226,,"Litoria burrowsi (Scott, 1942)",,Tasmanian treefrog,"Hyla burrowsi, Litoria burrowsae, Saganura burrowsi",Tasmanian tree frog,Litoria burrowsi,bio/LitoriaBurrowsi,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681227,,"Litoria cavernicola Tyler & Davies, 1979",,long cave treefrog,Pelodryas cavernicola,cave-dwelling frog,Litoria cavernicola,bio/LitoriaCavernicola,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681237,,"Ranoidea cyclorhynchus (Boulenger, 1882)",,spotted-thighed frog,"Litoria cyclorhyncha, Hyla aurea var. cyclorhynchus, Hyla cyclorhynchus, Ranoidea cyclorhyncha",spotted-thighed treefrog,Ranoidea cyclorhynchus,bio/RanoideaCyclorhynchus,,bio/Ranoidea_Genus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681241,,"Litoria dentata (Keferstein, 1868)",,Keferstein's tree frog,"Hyla dentata, Rawlinsonia dentata",bleating tree frog,Litoria dentata,bio/LitoriaDentata,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681251,,"Litoria latopalmata Guenter, 1867",,Australian variable treefrog,Hyla latopalmata,broad-palmed frog,Litoria latopalmata,bio/LitoriaLatopalmata,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681254,,"Litoria longirostris Tyler & Davies, 1977",,long-snouted frog,Llewellynura longirostris,sharp-snouted frog,Litoria longirostris,bio/LitoriaLongirostris,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681258,,"Litoria nigrofrenata (Guenter, 1867)",,tawny rocketfrog,Hyla nigrofrenata,bridle frog,Litoria nigrofrenata,bio/LitoriaNigrofrenata,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681259,,"Litoria nyakalensis Liem, 1974",,Nyakala frog,Mosleyia nyakalensis,mountain mistfrog,Litoria nyakalensis,bio/LitoriaNyakalensis,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681262,,"Litoria paraewingi Watson, Loftus-Hills & Littlejohn, 1971",,Victorian frog,Rawlinsonia paraewingi,plains brown tree frog,Litoria paraewingi,bio/LitoriaParaewingi,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681263,,"Litoria personata Tyler, Davies & Martin, 1978",,sandstone treefrog,Dryopsophus personata,masked frog ,Litoria personata,bio/LitoriaPersonata,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +681274,,"Litoria tyleri Martin, Watson, Gartside, Littlejohn & Loftus-Hills, 1979",,Tyler's Australian treefrog,Pengilleyia tyleri,Tyler's tree frog,Litoria tyleri,bio/LitoriaTyleri,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +683850,,"Rana christyi Boulenger, 1919",,Christy's ridged frog,Rana christyi,Christy's grassland frog,Ptychadena christyi,bio/PtychadenaChristyi,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +685118,,"Rana namiyei Stejneger, 1901",,Namie's frog,"Rana namiyei, Rana (Limnonectes) namiyei",Okinawa wart frog,Limnonectes namiyei,bio/LimnonectesNamiyei,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +685121,,,,,"Batrachylodes, Ceratobatrachus, Discodeles, Palmatorappia",,Cornufer,bio/Cornufer,,,,,, +685169,,,,,,,Pterorana,bio/Pterorana,,,,,, +687230,,"Leptobrachium nigrops Berry & Hendrickson, 1963",,Singapore spadefoot toad,Megophrys nigrops,black-eyed litter frog,Leptobrachium nigrops,bio/LeptobrachiumNigrops,,bio/Leptobrachium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +687235,,"Leptobrachium heteropus Boulenger, 1900",,Malaysian Asian toad,"Megophrys heteropus, Leptobrachium heteropus, Megalophrys heteropus",variable litter frog,Leptobrachella heteropus,bio/LeptobrachellaHeteropus,,bio/Leptobrachella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +687869,,"Hapalogenys nitens Richardson, 1844",,short barbeled velvetchin,Hapalogenys nitens,short barbeled grunter,Hapalogenys nigripinnis,bio/HapalogenysNigripinnis,,bio/Hapalogenys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +689408,,"Phrynobatrachus latifrons Ahl, 1924",,Accra river frog,Phrynobatrachus accraensis,Ahl's river frog,Phrynobatrachus latifrons,bio/PhrynobatrachusLatifrons,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +691798,,"Tenualosa thibaudeaui (Durand, 1940)",,Laotian shad,"Clupea thibaudeaui, Hilsa thibaudeaui",Mekong herring,Tenualosa thibaudeaui,bio/TenualosaThibaudeaui,,bio/Tenualosa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +693458,,,,,,,Phycodurus,bio/Phycodurus,,,,,, +693459,,"Phyllopteryx eques Gunther, 1865",,leafy sea dragon,Phyllopteryx eques,leafy seadragon,Phycodurus eques,bio/PhycodurusEques,,bio/Phycodurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +693640,,"Mugil dumerili Steindachner, 1870",,groovy mullet,"Mugil dumerili, Liza dumerili, Liza dumerilii",grooved mullet,Chelon dumerili,bio/ChelonDumerili,,bio/Chelon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +693642,,"Mugil grandisquamis Valenciennes, 1836",,large-scale mullet,"Liza grandisquamis, Mugil grandisquamis",largescaled mullet,Parachelon grandisquamis,bio/ParachelonGrandisquamis,,bio/Parachelon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +693644,,"Myxus capurrii Perugia, 1892",,leaping African mullet,"Mugil capurii, Myxus capurrii",narrowhead grey mullet,Mugil capurrii,bio/MugilCapurrii,,bio/Mugil,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +693712,,"Pygathrix cinerea Nadler, 1997",,gray-shanked douc,"Pygathrix cinereus, Pygathrix nemaeus cinerea",gray-shanked douc langur,Pygathrix cinerea,bio/PygathrixCinerea,,bio/Pygathrix,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +694279,,"Roloffia jeanpoli Berkenkamp & Etzel, 1979",,Jeanpol's killi,"Archiaphyosemion jeanpoli, Aphyosemion jeanpoli, Roloffia jeanpoli",Jeanpol's killifish,Nimbapanchax jeanpoli,bio/NimbapanchaxJeanpoli,,bio/Nimbapanchax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +694306,,"Phrynobatrachus graueri (Nieden, 1911)",,Grauer's puddle frog,"Arthroleptis graueri, Hylarthroleptis graueri",Rugege river frog,Phrynobatrachus graueri,bio/PhrynobatrachusGraueri,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +694311,,"Phrynobatrachus versicolor Ahl, 1924",,green puddle frog,Phrynobatrachus (Natalobatrachus) versicolor,Rwanda river frog,Phrynobatrachus versicolor,bio/PhrynobatrachusVersicolor,,bio/Phrynobatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +694503,,"Rana plicatella Stoliczka, 1873",,rhinoceros frog,"Limnonectes (Bourretia) plicatellus, Limnonectes (Elachyglossa) plicatellus, Euphlyctis plicatella, Rana plicatella",Penang wart frog,Limnonectes plicatellus,bio/LimnonectesPlicatellus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +694504,,"Polypedates saxicola Jerdon, 1854",,Malabar tropical frog,"Polypedates saxicola, Ixalus saxicola",small torrent frog,Micrixalus saxicola,bio/MicrixalusSaxicola,,bio/Micrixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +694506,,"Xenophrys longipes (Boulenger, 1886)",,slender-legged horned frog,"Xenophrys longipes, Megalophrys longipes",Malacca spadefoot toad,Megophrys longipes,bio/MegophrysLongipes,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +694510,,"Ingerophrynus parvus (Boulenger, 1887)",,straight-ridge toad,Bufo parvus,lesser toad,Ingerophrynus parvus,bio/IngerophrynusParvus,,bio/Ingerophrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +696752,,,,,,,Nimbapanchax,bio/Nimbapanchax,,,,,, +697147,,"Chiromantis petersii Boulenger, 1882",,Peters' foam-nest treefrog,Chiromantis petersi,central foam-nest tree frog,Chiromantis petersii,bio/ChiromantisPetersii,,bio/Chiromantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +697160,,"Philautus nongkhorensis Cochran, 1927",,Nong Khor bushfrog,"Rhacophorus nongkhorensis, Philautus nongkhorensis, Chirixalus nongkhorensis, Rhacophorus (Chirixalus) nongkhorensis",Nongkhor pigmy tree frog,Chiromantis nongkhorensis,bio/ChiromantisNongkhorensis,,bio/Chiromantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +698420,,"Sphaerotheca rolandae (Dubois, 1983)",,Sri Lanka bullfrog,"Tomopterna rolandae, Tomopterna (Sphaerotheca) rolandae, Rana breviceps rolandae, Rana (Tomopterna) breviceps rolandae",marbled sand frog,Sphaerotheca rolandae,bio/SphaerothecaRolandae,,bio/Sphaerotheca_FrogsToads,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +700175,,,,,,,Neodactria,bio/Neodactria,,,,,, +700176,,"Neodactria caliginosella (Clemens, 1860)",,black grass-veneer,Neodactria caliginosellus,black grass-veneer moth,Neodactria caliginosella,bio/NeodactriaCaliginosella,,bio/Neodactria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +700637,,"Plectromus suborbitalis Gill, 1883",,ridgehead,Plectromus suborbitalis,shoulderspine bigscale,Melamphaes suborbitalis,bio/MelamphaesSuborbitalis,,bio/Melamphaes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +700668,,"Scorpaenopsis diabolus (Cuvier, 1829)",,devil scorpionfish,Scorpaena diabolus,false stonefish,Scorpaenopsis diabolus,bio/ScorpaenopsisDiabolus,,bio/Scorpaenopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +700796,,"Harengula humeralis (Cuvier, 1829)",,redear sardine,Clupea humeralis,redear herring,Harengula humeralis,bio/HarengulaHumeralis,,bio/Harengula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +702266,,"Taxidea leucurus Hodgson, 1847",,sand badger,"Taxidea leucurus, Meles meles leucurus",Asian badger,Meles leucurus,bio/MelesLeucurus,,bio/Meles,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +703910,,,,,,,Cirripectes,bio/Cirripectes,,,,,, +704175,,"Phoenicopterus minor Geoffroy Saint-Hilaire, 1798",,Zwergflamingo,Phoenicopterus minor,lesser flamingo,Phoeniconaias minor,bio/PhoeniconaiasMinor,,bio/Phoeniconaias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +705554,,"Kaloula baleata (Mueller, 1833)",,Muller's narrowmouth toad,"Plectropus baleatus, Callula baleata, Bombinator baleatus",brown bullfrog,Kaloula baleata,bio/KaloulaBaleata,,bio/Kaloula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +709362,,"Boulengerula changamwensis Loveridge, 1932",,Changamwe caecilian,Afrocaecilia changamwensis,Changamwe lowland caecilian,Boulengerula changamwensis,bio/BoulengerulaChangamwensis,,bio/Boulengerula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +711521,,"Epalzeorhynchus siamensis Smith, 1931",,Siamese algae-eater,"Epalzeorhynchus siamensis, Epalzeorhynchos siamensis",Siamese flying fox ,Crossocheilus siamensis,bio/CrossocheilusSiamensis,,bio/Crossocheilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +712047,,,,,,,Cistugo,bio/Cistugo,,,,,, +712048,,"Cistugo seabrae Thomas, 1912",,Angolan hairy bat,"Cistugo seabrai, Myotis seabrai",Angolan wing-gland bat,Cistugo seabrae,bio/CistugoSeabrae,,bio/Cistugo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +713925,,"Leopardus jacobita (Cornalia, 1865)",,Andean Cat,"Oreailurus jacobita, Felis jacobita, Leopardus jacobitus",Andean mountain cat,Leopardus jacobita,bio/LeopardusJacobita,,bio/Leopardus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +714659,,"Engraulis mysticetus Gunther, 1867",,Pacific anchovy,Engraulis mysticetus,Pacific anchoveta,Cetengraulis mysticetus,bio/CetengraulisMysticetus,,bio/Cetengraulis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +715368,,,,,,,Espadarana,bio/Espadarana,,,,,, +715370,,,,,,,Sachatamia,bio/Sachatamia,,,,,, +716691,,"Hylobates alibarbis Lyon, 1911",,Bornean agile gibbon,Hylobates agilis albibarbis,Bornean white-bearded gibbon,Hylobates albibarbis,bio/HylobatesAlbibarbis,,bio/Hylobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +717467,,,,,,,Nimbaphrynoides,bio/Nimbaphrynoides,,,,,, +717468,,"Nimbaphrynoides occidentalis (Angel, 1943)",,Mt. Nimba viviparous toad,"Nimbaphrynoides liberiensis, Nectophrynoides occidentalis, Nimbaphrynoides occidentalis liberiensis, Nectophrynoides liberiensis",western Nimba toad,Nimbaphrynoides occidentalis,bio/NimbaphrynoidesOccidentalis,,bio/Nimbaphrynoides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +721938,,"Sigmops bathyphilus (Vaillant, 1884)",,deepsea lightfish,"Neostoma bathyphilum, Gonostoma bathyphilum",spark anglemouth,Sigmops bathyphilus,bio/SigmopsBathyphilus,,bio/Sigmops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +721939,,"Synodus synodus (Linnaeus, 1758)",,rockspear,"Esox synodus, Saurus synodus",diamond lizardfish,Synodus synodus,bio/SynodusSynodus,,bio/Synodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +722432,,,,,,,Conodon,bio/Conodon,,,,,, +722433,,"Perca nobilis Linnaeus, 1758",,yellow cro-cro,Perca nobilis,barred grunt,Conodon nobilis,bio/ConodonNobilis,,bio/Conodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +722435,,,,,,,Enneanectes,bio/Enneanectes,,,,,, +723540,,"Mobula hypostoma (Bancroft, 1831)",,small devilfish,Cephalopterus hypostomus,lesser devil ray ,Mobula hypostoma,bio/MobulaHypostoma,,bio/Mobula,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +740927,,,,,,,Chesnonia,bio/Chesnonia,,,,,, +740928,,"Chesnonia verrucosa (Lockington, 1880)",,warty sea-poacher,"Brachyopsis verrucosus, Occa verrucosa, Occella verrucosa",warty poacher,Chesnonia verrucosa,bio/ChesnoniaVerrucosa,,bio/Chesnonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +741976,,"Megalophrys montana var. aceras Boulenger, 1903",,yello horn frog,"Megalophrys montana var. aceras, Xenophrys aceras, Panophrys aceras, Megalophrys aceras",Perak spadefoot toad,Megophrys aceras,bio/MegophrysAceras,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +743423,,"Nasuella Hollister, 1915",,,,,Nasuella,bio/Nasuella,,,,,, +743424,,"Nasuella olivacea (Gray, 1865)",,Mountain coati,Nasua olivacea,Western mountain coati,Nasuella olivacea,bio/NasuellaOlivacea,,bio/Nasuella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +744555,,"Prognathodes falcifer (Hubbs & Rechnitzer, 1958)",,scythe butterflyfish,Chaetodon falcifer,scythemarked butterflyfish,Prognathodes falcifer,bio/PrognathodesFalcifer,,bio/Prognathodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +745121,,,,,,,Cilus,bio/Cilus,,,,,, +745122,,"Sciaena gilberti Abbott, 1899",,corvina drum,"Cilus montti, Sciaena gilberti",corvina,Cilus gilberti,bio/CilusGilberti,,bio/Cilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +745261,,,,,,,Phrynobatrachus natalensis species complex,bio/PhrynobatrachusNatalensisSpeciesComplex,,,,,, +745779,,,,,Rhacophorinae gen. SDB-2010,,Raorchestes,bio/Raorchestes,,,,,, +746842,,"Scolopsis bilineata (Bloch, 1793)",,yellow-finned spine-cheek,Anthias bilineatus,two-lined monocle bream,Scolopsis bilineata,bio/ScolopsisBilineata,,bio/Scolopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +747526,,,,,,,Amphichthys,bio/Amphichthys,,,,,, +747527,,"Batrachus cryptocentrus Valenciennes, 1837",,sapo bocon,Batrachus cryptocentrus,Bocon toadfish,Amphichthys cryptocentrus,bio/AmphichthysCryptocentrus,,bio/Amphichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +747772,,,,,,,Calophysus,bio/Calophysus,,,,,, +747773,,"Pimelodus macropterus Lichtenstein, 1819",,pirate catfish,Pimelodus macropterus,zamurito,Calophysus macropterus,bio/CalophysusMacropterus,,bio/Calophysus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +749526,,"Sternachus virescens Valenciennes, 1836",,green knifefish,"Sternachus virescens, Gymnotiformes sp. BOLD:AAB7523",glass knifefish,Eigenmannia virescens,bio/EigenmanniaVirescens,,bio/Eigenmannia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753481,,"Leucoptera Hubner, 1825",,,Paraleucoptera,,Leucoptera ,bio/Leucoptera_Moths,,,,,, +753488,,"Leucoptera malifoliella (Costa, 1836)",,ribbed apple leaf miner,Leucoptera scitella,pear leaf blister moth,Leucoptera malifoliella,bio/LeucopteraMalifoliella,,bio/Leucoptera_Moths,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753639,,"Sargocentron tiereoides (Bleeker, 1853)",,pink-spotted squirrelfish,"Adioryx tiereoides, Holocentrum tiereoides",pink squirrelfish,Sargocentron tiereoides,bio/SargocentronTiereoides,,bio/Sargocentron,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753643,,"Acanthurus achilles Shaw, 1803",,redtail surgeonfish,"Hepatus achilles, Teuthis achilles",Achilles tang,Acanthurus achilles,bio/AcanthurusAchilles,,bio/Acanthurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753644,,"Acanthurus nigricauda Duncker & Mohr, 1929",,shoulderbar surgeonfish,Acanthurus gahm nigricauda,epaulette surgeonfish,Acanthurus nigricauda,bio/AcanthurusNigricauda,,bio/Acanthurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753646,,"Myripristis pralinius Cuvier, 1829",,scarlet soldier,"Myripristis pralinius, Ostichthys pralinius",scarlet soldierfish,Myripristis pralinia,bio/MyripristisPralinia,,bio/Myripristis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753647,,"Sargocentron melanospilos (Bleeker, 1858)",,three-spot squirrelfish,Holocentrum melanospilos,blackblotch squirrelfish,Sargocentron melanospilos,bio/SargocentronMelanospilos,,bio/Sargocentron,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753649,,"Zebrasoma rostratum (Guenther, 1875)",,longnose tang,"Acanthurus rostratus, Acanthurus rostratum, Zebrasoma rostrata",longnose surgeonfish,Zebrasoma rostratum,bio/ZebrasomaRostratum,,bio/Zebrasoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753650,,,,,,,Plectrypops,bio/Plectrypops,,,,,, +753651,,"Plectrypops lima (Valenciennes, 1831)",,shy soldierfish,"Myripristis lima, Holotrachys lima",shy soldier,Plectrypops lima,bio/PlectrypopsLima,,bio/Plectrypops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753897,,"Atherinomorus vaigiensis (Quoy & Gaimard, 1825)",,marine hardyhead,"Pranesus vaigiensis, Atherina vaigiensis, Hypoatherina vaigiensis",common hardyhead,Atherinomorus vaigiensis,bio/AtherinomorusVaigiensis,,bio/Atherinomorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753902,,"Craterocephalus eyresii (Steindachner, 1883)",,western freshwater hardyhead,Atherinichthys eyresii,Lake Eyre hardyhead,Craterocephalus eyresii,bio/CraterocephalusEyresii,,bio/Craterocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753914,,"Quiris stramineus Whitley, 1950",,blackmast,"Quiris stramineus, Quirichthys stramineus",strawman,Craterocephalus stramineus,bio/CraterocephalusStramineus,,bio/Craterocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753915,,"Hypoatherina harringtonensis (Goode, 1877)",,slender silverside,Atherina harringtonensis,reef silverside,Hypoatherina harringtonensis,bio/HypoatherinaHarringtonensis,,bio/Hypoatherina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +753916,,"Hypoatherina temminckii (Bleeker, 1854)",,whitebait silverside,"Atherina temminckii, Stenatherina temminckii, Atherina temmincki",Samoan silverside,Hypoatherina temminckii,bio/HypoatherinaTemminckii,,bio/Hypoatherina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +758446,,Irania de Filippi 1863,,,,,Irania ,bio/Irania_Birds,,,,,, +758447,,"Irania gutturalis (Guerin-Meneville, 1843)",,White throated robin,Cossypha gutturalis,White-throated robin,Irania gutturalis,bio/IraniaGutturalis,,bio/Irania_Birds,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +762043,,"Okamejei boesemani (Ishihara, 1987)",,black sand skate,Raja boesemani,Boeseman's skate,Okamejei boesemani,bio/OkamejeiBoesemani,,bio/Okamejei,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +762045,,"Setipinna tenuifilis (Valenciennes, 1848)",,scaly hairfin anchovy,"Engraulis tenuifilis, Thryssa sp. FBGN-SAU-Dhaka F1R1-5",common hairfin anchovy,Setipinna tenuifilis,bio/SetipinnaTenuifilis,,bio/Setipinna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +762047,,"Zebrias fasciatus (Basilewsky, 1855)",,banded sole,Solea fasciata,many-banded sole,Zebrias fasciatus,bio/ZebriasFasciatus,,bio/Zebrias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +762061,,"Rubricatochromis letourneuxi (Sauvage, 1880)",,Nile jewel cichlid,Hemichromis letourneuxi,jewel fish,Rubricatochromis letourneuxi,bio/RubricatochromisLetourneuxi,,bio/Rubricatochromis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +762504,,"Phyllomedusa jandaia Bokermann & Sazima, 1978",,Sazima's leaf frog,Phyllomedusa jandaia,parakeet leaf frog,Phasmahyla jandaia,bio/PhasmahylaJandaia,,bio/Phasmahyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +762637,,,,,,,Cryptoheros ,bio/Cryptoheros_Subgenus,,,,,, +764543,,"Microacontias lineatus (Peters, 1879)",,striped legless lizard,Microacontias lineatus,lined lanced skink,Acontias lineatus,bio/AcontiasLineatus,,bio/Acontias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +764832,,"Gobius olivaceus Temminck & Schlegel, 1845",,urohaze,Gobius olivaceus,urohaze-goby,Glossogobius olivaceus,bio/GlossogobiusOlivaceus,,bio/Glossogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +764833,,"Ptereleotris calliura (Jordan & Gilbert, 1882)",,blue dartfish,Ioglossus calliurus,blue goby,Ptereleotris calliura,bio/PtereleotrisCalliura,,bio/Ptereleotris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +764836,,"Sicydium plumieri (Bloch, 1786)",,titiri,Gobius plumieri,sirajo,Sicydium plumieri,bio/SicydiumPlumieri,,bio/Sicydium_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +765185,,,,,,,Harriotta,bio/Harriotta,,,,,, +765186,,"Harriotta raleighana Goode & Bean, 1895",,ratfish,Harriotta haeckeli,Pacific longnose chimaera,Harriotta raleighana,bio/HarriottaRaleighana,,bio/Harriotta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +767251,,"Gasteropelecus sternicla (Linnaeus, 1758)",,silver hatchetfish,Clupea sternicla,river hatchetfish,Gasteropelecus sternicla,bio/GasteropelecusSternicla,,bio/Gasteropelecus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +767411,,"Chaetodon bifasciatus Forsskal, 1775",,twobar bream,"Chaetodon bifasciatus, Sparus bifasciatus, Mylio bifasciatus",twobar seabream,Acanthopagrus bifasciatus,bio/AcanthopagrusBifasciatus,,bio/Acanthopagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +797091,,,,,,,Limnonectes kuhlii species complex,bio/LimnonectesKuhliiSpeciesComplex,,,,,, +797160,,"Ochlodes venata (Bremer & Grey, 1853)",,large skipper butterfly,"Hesperia venata, Ochlodes venatus",large skipper,Ochlodes venata,bio/OchlodesVenata,,bio/Ochlodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +798166,,"Neodon irene (Thomas, 1911)",,Chinese scrub vole,"Microtus irene, Pitymys irene",Irene's mountain vole,Neodon irene,bio/NeodonIrene,,bio/Neodon_Rodents,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +798169,,"Neodon sikimensis (Horsfield, 1841)",,Sikkim vole,Microtus sikimensis,Sikkim mountain vole,Neodon sikimensis,bio/NeodonSikimensis,,bio/Neodon_Rodents,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +857615,,"Cyprinus mola Hamilton, 1822",,pale carplet,"Cyprinus mola, Leuciscus mola",mola carplet,Amblypharyngodon mola,bio/AmblypharyngodonMola,,bio/Amblypharyngodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +857645,,"Parachela oxygastroides (Bleeker, 1852)",,glass fish,"Oxygaster oxygastroides, Chela oxygastroides, Leuciscus oxygastroides",glass barb,Parachela oxygastroides,bio/ParachelaOxygastroides,,bio/Parachela_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +857658,,"Rasbora dusonensis (Bleeker, 1851)",,yellowtail rasbora,"Leuciscus dusonensis, Parluciosoma dusonensis",rosefin rasbora,Rasbora dusonensis,bio/RasboraDusonensis,,bio/Rasbora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +857659,,"Trigonopoma einthovenii (Bleeker, 1851)",,blue line rasbora,"Trigonopoma einthovenii, Leuciscus einthovenii",brilliant rasbora,Rasbora einthovenii,bio/RasboraEinthovenii,,bio/Rasbora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +857662,,"Rasbora rasbora (Hamilton, 1822)",,scissortail barb,"Cyprinus rasbora, Leuciscus rasbora",Gangetic scissortail rasbora,Rasbora rasbora,bio/RasboraRasbora,,bio/Rasbora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +858229,,"Pseudoambassis macleayi Castelnau, 1878",,reticulated perchlet,"Pseudoambassis macleayi, Chanda macleayi",Macleay's glass perchlet,Ambassis macleayi,bio/AmbassisMacleayi,,bio/Ambassis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +858497,,"Cypsilurus atrisignis Jenkins, 1903",,volador planeador,Cypsilurus atrisignis,glider flyingfish,Cheilopogon atrisignis,bio/CheilopogonAtrisignis,,bio/Cheilopogon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +859894,,"Petrogale concinna Gould, 1842",,pygmy rock-wallaby,Peradorcas concinna,Nabarlek,Petrogale concinna,bio/PetrogaleConcinna,,bio/Petrogale,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +861345,,"Poliaspis pini Maskell, 1897",,Oriental pine scale,Poliaspis pini,pine oystershell scale,Lepidosaphes pini,bio/LepidosaphesPini,,bio/Lepidosaphes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +862141,,,,,Yerana,,Quasipaa,bio/Quasipaa,,,,,, +862142,,"Rana fasciculispina Inger, 1970",,spine-glanded mountain frog,"Paa fasciculispina, Eripaa fasciculispina, Rana fasciculispina, Rana (Paa) fasciculispina, Nanorana fasciculispina",spiny-breasted frog,Quasipaa fasciculispina,bio/QuasipaaFasciculispina,,bio/Quasipaa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +862507,,,,,,,Mus ,bio/Mus_Subgenus,,,,,, +862508,,,,,,,Coelomys,bio/Coelomys,,,,,, +862791,,"Torquigener hypselogeneion (Bleeker, 1852)",,dwarf blowfish,"Tetraodon hypselogeneion, Sphoeroides hypselogeneion, Ostracion hypselogeneion, Spheroides hypselogeneion, Amblyrhynchotes hypselogeneion, Torquigener hyposelongeneion",orange-spotted toadfish,Torquigener hypselogeneion,bio/TorquigenerHypselogeneion,,bio/Torquigener,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +862798,,,,,,,Auriglobus,bio/Auriglobus,,,,,, +862799,,"Tetraodon modestus Bleeker, 1851",,golden puffer,"Tetraodon modestus, Chonerhinos modestus",bronze puffer ,Auriglobus modestus,bio/AuriglobusModestus,,bio/Auriglobus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +862800,,Omegophora Whitley 1934,,,,,Omegophora,bio/Omegophora,,,,,, +862801,,"Tetraodon armilla Waite & McCulloch, 1915",,ringed pufferfish,"Tetraodon armilla, Sphaeroides armilla",ringed toadfish,Omegophora armilla,bio/OmegophoraArmilla,,bio/Omegophora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +862826,,"Squalus brucus Bonnaterre, 1788",,spiny shark,Squalus brucus,bramble shark,Echinorhinus brucus,bio/EchinorhinusBrucus,,bio/Echinorhinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +862897,,,,,,,Isistius,bio/Isistius,,,,,, +862898,,"Scymnus brasiliensis Quoy & Gaimard, 1824",,smalltooth cookiecutter shark,Scymnus brasiliensis,cookie cutter shark,Isistius brasiliensis,bio/IsistiusBrasiliensis,,bio/Isistius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +862899,,,,,,,Oxynotus,bio/Oxynotus,,,,,, +864176,,,,,,,Pseudhymenochirus,bio/Pseudhymenochirus,,,,,, +864177,,"Pseudhymenochirus merlini Chabanaud, 1920",,Merlin's dwarf gray frog,"Hymenochirus merlini, Hymenochirus (Pseudhymenochirus) merlini",Merlin's clawed frog,Pseudhymenochirus merlini,bio/PseudhymenochirusMerlini,,bio/Pseudhymenochirus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +866009,,Schizothorax niger Heckel. 1838,,Alghad snowtrout,"Schizothorax niger, Schizothoraichthys niger, Schizocypris niger",Chush snowtrout,Schizopyge niger,bio/SchizopygeNiger,,bio/Schizopyge,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +866635,,,,,,,Thylamys pusillus species complex,bio/ThylamysPusillusSpeciesComplex,,,,,, +868862,,"Petrocephalus catastoma (Guenther, 1866)",,northern churchill,Mormyrus catostoma,churchill,Petrocephalus catostoma,bio/PetrocephalusCatostoma,,bio/Petrocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +870552,,"Pseudojulis melanotis Gilbert, 1890",,senorita dorada,Pseudojulis melanotis,golden wrasse,Halichoeres melanotis,bio/HalichoeresMelanotis,,bio/Halichoeres,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +873202,,"Vermivora bachmanii (Audubon, 1833)",,Bachmann's warbler,"Helminthophila bachmani, Helminthophila bachmanii, Sylvia bachmanii",Bachman's warbler,Vermivora bachmanii,bio/VermivoraBachmanii,,bio/Vermivora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +876122,,"Bythaelurus Compagno, 1988",,,,,Bythaelurus,bio/Bythaelurus,,,,,, +876627,,"Muraena albomarginata Temminck & Schlegel, 1846",,liver-colored moray,Muraena albomarginata,whitemargin moray,Gymnothorax albimarginatus,bio/GymnothoraxAlbimarginatus,,bio/Gymnothorax,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +877584,,"Rana daunchina Chang, 1933",,Hungchun-ping frog,"Rana daunchina, Babina daunchina, Rana (Hylarana) daunchina, Hylarana (Nidirana) daunchina, Hylarana daunchina",Emei music frog,Nidirana daunchina,bio/NidiranaDaunchina,,bio/Nidirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +877586,,"Pterorana khare Kiyasetuo & Khare, 1986",,winged frog,"Rana (Pterorana) khare, Rana khare",Khare's frog,Pterorana khare,bio/PteroranaKhare,,bio/Pterorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879473,,"Salarias castaneus Valenciennes, 1836",,chestnut blenny,Salarias castaneus,chestnut eyelash-blenny,Cirripectes castaneus,bio/CirripectesCastaneus,,bio/Cirripectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879476,,"Rupiscartes quagga Fowler & Ball, 1924",,zebra blenny,Rupiscartes quagga,squiggly blenny,Cirripectes quagga,bio/CirripectesQuagga,,bio/Cirripectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879482,,"Tripterygium carminale Jordan & Gilbert, 1882",,delicate triplefin,"Tripterygium carminale, Axoclinus carminalis",carmine triplefin,Enneanectes carminalis,bio/EnneanectesCarminalis,,bio/Enneanectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879483,,"Enneapterygius pectoralis Fowler, 1941",,redeye blenny,Enneapterygius pectoralis,redeye triplefin,Enneanectes pectoralis,bio/EnneanectesPectoralis,,bio/Enneanectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879491,,"Salarias striatus Valenciennes, 1836",,streaked blenny,Salarias striatus,reef margin blenny,Entomacrodus striatus,bio/EntomacrodusStriatus,,bio/Entomacrodus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879501,,"Salarias dussumieri Valenciennes, 1836",,Dussumier's rockskipper,"Halmablennius dussumieri, Salarias dussumieri",streaky rockskipper,Istiblennius dussumieri,bio/IstiblenniusDussumieri,,bio/Istiblennius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879502,,"Salarias lineatus Valenciennes, 1836",,thin-lined rockskipper,"Salarias lineatus, Halmablennius lineatus",lined rockskipper ,Istiblennius lineatus,bio/IstiblenniusLineatus,,bio/Istiblennius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879513,,"Petroscirtes obliquus Garman, 1903",,mangrove blenny,"Omobranchus rotundiceps obliquus, Petroscirtes obliquus",roundhead blenny,Omobranchus obliquus,bio/OmobranchusObliquus,,bio/Omobranchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879519,,"Plagiotremus rhinorhynchos (Bleeker, 1852)",,twostripe blenny,"Aspidontus rhinorhynchos, Petroskirtes amblyrhynchos, Runula rhinorhynchos",bluestriped fangblenny,Plagiotremus rhinorhynchos,bio/PlagiotremusRhinorhynchos,,bio/Plagiotremus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879520,,"Plagiotremus tapeinosoma (Bleeker, 1857)",,slender blenny,"Petroscirtes tapeinosoma, Aspidontus tapeinosoma, Petroskirtes tapeinosoma, Runula tapeinosoma",piano fangblenny,Plagiotremus tapeinosoma,bio/PlagiotremusTapeinosoma,,bio/Plagiotremus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879681,,,,,,,Alticus,bio/Alticus,,,,,, +879682,,"Blennius saliens Lacepede, 1800",,jumping blenny,Blennius saliens,leaping blenny,Alticus saliens,bio/AlticusSaliens,,bio/Alticus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879705,,,,,,,Atrosalarias,bio/Atrosalarias,,,,,, +879706,,"Salarias fuscus Ruppell, 1838",,black blenny,"Salarias fuscus, Atrosalarias fuscus fuscus",brown coral blenny ,Atrosalarias fuscus,bio/AtrosalariasFuscus,,bio/Atrosalarias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879711,,,,,,,Blenniella,bio/Blenniella,,,,,, +879712,,"Salarias chrysospilos Bleeker, 1857",,orange-spotted blenny,"Salarias chrysospilos, Istiblennius chrysospilos",red-spotted blenny,Blenniella chrysospilos,bio/BlenniellaChrysospilos,,bio/Blenniella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +879878,,,,,,,Nannosalarias,bio/Nannosalarias,,,,,, +879879,,"Nannosalarias nativitatis (Regan, 1909)",,throatspot blenny,Blennius nativitatis,pygmy blenny,Nannosalarias nativitatis,bio/NannosalariasNativitatis,,bio/Nannosalarias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +880961,,"Microstoma microstoma (Risso, 1810)",,slender smallmouth,"Serpe microstoma, Gasteropelecus microstoma",slender argentine,Microstoma microstoma,bio/MicrostomaMicrostoma,,bio/Microstoma_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882191,,"Pseudobalistes naufragium (Jordan & Starks, 1895)",,blunthead triggerfish,Balistes naufragium,stone triggerfish,Pseudobalistes naufragium,bio/PseudobalistesNaufragium,,bio/Pseudobalistes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882735,,"Vespa affinis (Linnaeus, 1764)",,common tiger-wasp,"Apis affinis, Vespa affinis continentalis",lesser banded hornet,Vespa affinis,bio/VespaAffinis,,bio/Vespa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882753,,"Chironectes maculatus Desjardins, 1840",,warty anglerfish,"Chironectes maculatus, Phymatophryne maculata",warty frogfish,Antennarius maculatus,bio/AntennariusMaculatus,,bio/Antennarius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882754,,"Chironectes multiocellatus Valenciennes, 1837",,flagpole frogfish,Chironectes multiocellatus,longlure frogfish,Antennarius multiocellatus,bio/AntennariusMultiocellatus,,bio/Antennarius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882771,,,,,,,Antennatus,bio/Antennatus,,,,,, +882772,,"Chironectes tuberosus Cuvier, 1817",,tuberculate anglerfish,"Antennarius tuberosus, Chironectes tuberosus",tuberculated frogfish,Antennatus tuberosus,bio/AntennatusTuberosus,,bio/Antennatus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882775,,,,,,,Rhycherus,bio/Rhycherus,,,,,, +882776,,"Rhycherus filamentosus (Castelnau, 1872)",,tasselled angler,Chironectes filamentosus,tasselled anglerfish,Rhycherus filamentosus,bio/RhycherusFilamentosus,,bio/Rhycherus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882786,,"Rhynchobdella aral Bloch & Schneider, 1801",,lesser spiny eel,"Rhynchobdella aral, Mastacembelus aral",one-stripe spinyeel,Macrognathus aral,bio/MacrognathusAral,,bio/Macrognathus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882817,,"Idiacanthus fasciola Peters, 1877",,serpent black dragonfish,"Idiacanthus sp. CBM:ZF:14255, Idiacanthus sp. CBM:ZF:14216, Idiacanthus sp. CBM:ZF:14201",ribbon sawtail fish,Idiacanthus fasciola,bio/IdiacanthusFasciola,,bio/Idiacanthus_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +882857,,,,,,,Photonectes,bio/Photonectes,,,,,, +882858,,"Photonectes braueri (Zugmayer, 1913)",,scaleless dragonfish,"Melanostomias braueri, Photonectes brauerii",Brauer's dragonfish,Photonectes braueri,bio/PhotonectesBraueri,,bio/Photonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +884168,,"Salmo migratorius Georgi, 1775",,Baikal omul,"Coregonus migratorius migratorius, Coregonus autumnalis migratorius, Salmo migratorius",Arctic cisco ,Coregonus migratorius,bio/CoregonusMigratorius,,bio/Coregonus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +885580,,"Fukomys damarensis (Ogilby, 1838)",,Damara mole rat,"Cryptomys damarensis, Coetomys damarensis",Damara mole-rat,Fukomys damarensis,bio/FukomysDamarensis,,bio/Fukomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +886298,,"Cyprinus tarichi Guldenstadt, 1814",,pearl mullet,"Chalcalburnus tarichi, Cyprinus tarichi",tarek,Alburnus tarichi,bio/AlburnusTarichi,,bio/Alburnus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +886300,,"Pelates octolineatus (Jenyns, 1840)",,western striped grunter,Helotes octolineatus,western striped trumpeter,Pelates octolineatus,bio/PelatesOctolineatus,,bio/Pelates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +887134,,"Thyrsites prometheoides Bleeker, 1856",,southern kingfish,Thyrsites prometheoides,royal escolar,Rexea prometheoides,bio/RexeaPrometheoides,,bio/Rexea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +904093,,"Griselda radicana Heinrich, 1923",,spruce tip moth,Griselda radicana,red-striped needleworm,Epinotia radicana,bio/EpinotiaRadicana,,bio/Epinotia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +904236,,,,,,,Myuchelys,bio/Myuchelys,,,,,, +907928,,"Maxomys rajah (Thomas, 1894)",,Rajah Sundaic Maxomys,Rattus rajah,Rajah spiny rat,Maxomys rajah,bio/MaxomysRajah,,bio/Maxomys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +909114,,"Serranus hemistiktos Ruppell, 1830",,halfspotted hind,Serranus hemistiktos,yellofin hind,Cephalopholis hemistiktos,bio/CephalopholisHemistiktos,,bio/Cephalopholis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +909122,,"Sciaena schotaf Forsskal, 1775",,somber sweetlips,"Sciaena schotaf, Gaterin schotaf",minstrel sweetlips,Plectorhinchus schotaf,bio/PlectorhinchusSchotaf,,bio/Plectorhinchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +909123,,"Sciaena stridens Forsskal, 1775",,lined piggy,"Rhonciscus stridens, Sciaena stridens",striped piggy,Pomadasys stridens,bio/PomadasysStridens,,bio/Pomadasys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +909126,,"Scolopsis ghanam (Fabricius, 1775)",,paleband spinecheek,Sciaena ghanam,Arabian monocle bream,Scolopsis ghanam,bio/ScolopsisGhanam,,bio/Scolopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +909366,,"Glauconycteris Dobson, 1875",,,,,Glauconycteris,bio/Glauconycteris,,,,,, +909367,,"Glauconycteris argentata (Dobson, 1875)",,Common butterfly bat,Chalinolobus argentatus,silvered bat,Glauconycteris argentata,bio/GlauconycterisArgentata,,bio/Glauconycteris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +909369,,"Scotophilus variegatus Tomes, 1861",,butterfly bat,"Chalinolobus variegatus, Scotophilus variegatus",variegated butterfly bat,Glauconycteris variegata,bio/GlauconycterisVariegata,,bio/Glauconycteris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +909696,,,,,Etheostoma (Oligocephalus),,Oligocephalus,bio/Oligocephalus,,,,,, +909702,,,,,Etheostoma (Litocara),,Litocara,bio/Litocara,,,,,, +910305,,,,,,,Trypauchen,bio/Trypauchen,,,,,, +912803,,,,,,,Bahaba,bio/Bahaba,,,,,, +912804,,"Nibea taipingensis Herre, 1932",,giant yellow croaker,Nibea taipingensis,Chinese bahaba,Bahaba taipingensis,bio/BahabaTaipingensis,,bio/Bahaba,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +912805,,"Umbrina amblycephala Bleeker, 1855",,greenback croaker,"Johnius fuscolineatus amblycephalus, Umbrina amblycephala",bearded croaker,Johnius amblycephalus,bio/JohniusAmblycephalus,,bio/Johnius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +925459,,"Balearica pavonina regulorum (Bennett, 1834)",,South African crowned crane,"Anthropoides regulorum, Balearica pavonina regulorum",grey crowned-crane,Balearica regulorum,bio/BalearicaRegulorum,,bio/Balearica,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +927612,,,,,,,Plagiognathops,bio/Plagiognathops,,,,,, +928324,,"Herpele fulleri Alcock, 1904",,Fuller's caecilian,"Herpele fulleri, Gegeneophis fulleri",Kuttal caecilian,Chikila fulleri,bio/ChikilaFulleri,,bio/Chikila,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +928525,,"Leptodactylus bolivianus Boulenger, 1898",,wrestler frog,"Leptodactylus (Pachypus) bolivianus, Leptodactylus ocellatus",Bolivian white-lipped frog,Leptodactylus bolivianus,bio/LeptodactylusBolivianus,,bio/Leptodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +929715,,"Therapon welchi McCulloch & Waite, 1917",,Welch's grunter,Therapon welchi,silver bream ,Bidyanus welchi,bio/BidyanusWelchi,,bio/Bidyanus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +932675,,"Labeo boggut (Sykes, 1839)",,boggut labeo,Chondrostoma boggut,minor carp,Labeo boggut,bio/LabeoBoggut,,bio/Labeo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +932716,,,,,,,Gymnelus,bio/Gymnelus,,,,,, +932717,,"Gymnelus viridis (Fabricius, 1780)",,twolip pout,Gymnelus bilabrus,fish doctor,Gymnelus viridis,bio/GymnelusViridis,,bio/Gymnelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +933226,,"Zacco koreanus Kim, Oh & Hosoya 2005",,Korean minnow,Zacco koreanus,Korean chub,Nipponocypris koreanus,bio/NipponocyprisKoreanus,,bio/Nipponocypris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +933990,,,,,,,Nipponocypris,bio/Nipponocypris,,,,,, +933992,,"Culter erythropterus Basilewsky, 1855",,common skygazer,"Cultrichthys erythropterus, Cullter erythropterus, Culter erythropterus, Erythroculter erythropterus",predatory carp,Chanodichthys erythropterus,bio/ChanodichthysErythropterus,,bio/Chanodichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +935645,,"Starksia sluiteri (Metzelaar, 1919)",,spotted blenny,"Starksia sp. BOLD:AAB6268, Brannerella sluiteri",chessboard blenny,Starksia sluiteri,bio/StarksiaSluiteri,,bio/Starksia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +941983,,"Planiliza melinopterus (Valenciennes, 1836)",,St. Lucia mullet,"Ellochelon melinoptera, Mugil melinopterus, Planiliza melinopterus, Chelon melinoptera, Liza melinoptera, Planiliza melinoptera",Otomebora mullet,Chelon melinopterus,bio/ChelonMelinopterus,,bio/Chelon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +941984,,"Toxotes jaculatrix (Pallas, 1767)",,northern rifle-fish,Sciaena jaculatrix,banded archerfish,Toxotes jaculatrix,bio/ToxotesJaculatrix,,bio/Toxotes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +958669,,"Sholicola albiventris (Blanford, 1868)",,White-bellied blue robin,"Brachypteryx albiventris (Blanford, 1868), Callene albiventris, Myiomela albiventris",White-bellied shortwing,Sholicola albiventris,bio/SholicolaAlbiventris,,bio/Sholicola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +978109,,"Craniorrhinus waldeni Sharpe, 1877",,writhed-billed hornbill,"Craniorrhinus waldeni, Aceros leucocephalus waldeni",rufous-headed hornbill,Aceros waldeni,bio/AcerosWaldeni,,bio/Aceros,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +979144,,,,,,,Pseudophilautus,bio/Pseudophilautus,,,,,, +979184,,,,,,,Liuixalus,bio/Liuixalus,,,,,, +980415,,"Petromyzon marinus camtschaticus Tilesius, 1811",,Japanese lamprey,"Petromyzon marinus camtschaticus, Petromyzon japonicus, Lethenteron japonicum, Lampetra japonica, Lampetra camtschatica, Entosphenus japonicus",Arctic lamprey,Lethenteron camtschaticum,bio/LethenteronCamtschaticum,,bio/Lethenteron,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +980578,,"Kalophrynus interlineatus (Blyth, 1855)",,piebald narrowmouthed frog,"Calophrynus interlineata, Diplopelma interlineatum, Berdmorea interlineata, Kalophrynus pleurostigma interlineatus, Engystoma interlineatum",striped sticky frog,Kalophrynus interlineatus,bio/KalophrynusInterlineatus,,bio/Kalophrynus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +987431,,"Xestia c-nigrum (Linnaeus, 1758)",,climbing cutworm,"Amathes c-nigrum, Agrotis c-nigrum",spotted cutworm,Xestia c-nigrum,bio/XestiaCnigrum,,bio/Xestia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +990218,,"Fusigobius duospilus Hoese & Reader, 1985",,twospot sandgoby,Coryphopterus duospilus,barenape goby,Fusigobius duospilus,bio/FusigobiusDuospilus,,bio/Fusigobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +990556,,"Pagrus filamentosus Valenciennes, 1830",,soldierbream,Pagrus filamentosus,soldier bream,Argyrops filamentosus,bio/ArgyropsFilamentosus,,bio/Argyrops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +990946,,"Venus textilis Gmelin, 1791",,carpet clam,"Venus textilis, Paphia textile, Paphia textilis, Paphia textile (Gmelin, 1791), Venus textile",textile venus clam,Paratapes textilis,bio/ParatapesTextilis,,bio/Paratapes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +991001,,,,,,,Rogadius,bio/Rogadius,,,,,, +991003,,,,,,,Sebastapistes,bio/Sebastapistes,,,,,, +992341,,"Rana doriae Boulenger, 1887",,Burmese wart frog,"Rana doriae, Dicroglossus doriae, Euphlyctis doriae",Doria's frog,Limnonectes doriae,bio/LimnonectesDoriae,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +992342,,"Polypedates hascheanus Stoliczka, 1870",,hill-forest frog,"Polypedates hascheanus, Taylorana hascheana, Euphlyctis hascheana, Rana hascheana",side-spotted frog,Limnonectes hascheanus,bio/LimnonectesHascheanus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +992343,,"Rana kohchangae Smith, 1922",,Koh Chang frog,"Euphlyctis kohchangae, Rana kohchangae",Koh Chang wart frog,Limnonectes kohchangae,bio/LimnonectesKohchangae,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +992344,,"Rana limborgi Sclater, 1892",,Taylor's frog,"Rana limborgi, Taylorana limborgi",Limborg's frog,Limnonectes limborgi,bio/LimnonectesLimborgi,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +992947,,"Buarremon assimilis (Boissonneau, 1840)",,white-browed brush-finch,"Arremon torquatus assimilis, Buarremon torquatus assimilis",grey-browed brush-finch,Arremon assimilis,bio/ArremonAssimilis,,bio/Arremon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +996475,,"Rana sierrae Camp, 1917",,sierra yellow-legged frog,"Rana boylii sierrae, Lithobates sierrae",Nevada yellow-legged frog,Rana sierrae,bio/RanaSierrae,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +997023,,,,,,,Herklotsichthys,bio/Herklotsichthys,,,,,, +997024,,"Herklotsichthys quadrimaculatus (Rueppell, 1837)",,spotted herring,Clupea quadrimaculata,bluestripe herring,Herklotsichthys quadrimaculatus,bio/HerklotsichthysQuadrimaculatus,,bio/Herklotsichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +998003,,"Julis cuvieri Bennett, 1831",,false clownwrasse,Julis cuvieri,African coris,Coris cuvieri,bio/CorisCuvieri,,bio/Coris_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +999462,,"Cervus americanus Clinton, 1822",,moose,"Alces alces americana, Cervus americanus",American moose,Alces americanus,bio/AlcesAmericanus,,bio/Alces,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +1001915,,"Hypselobarbus thomassi (Day, 1874)",,Nilgiri shark,"Gonoproktopterus thomassi, Megalobarbus thomassi, Barbus thomassi",red canarese barb,Hypselobarbus thomassi,bio/HypselobarbusThomassi,,bio/Hypselobarbus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1003683,,"Centropomus ambassis Lacepede, 1802",,Commerson's glassy,"Aspro ambassis, Centropomus ambassis",Commerson's glassy perchlet,Ambassis ambassis,bio/AmbassisAmbassis,,bio/Ambassis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1004435,,,,,Dendrobates (Oophaga),,Oophaga,bio/Oophaga,,,,,, +1004436,,,,,Dendrobates (Ranitomeya),,Ranitomeya,bio/Ranitomeya,,,,,, +1004470,,,,,Dendrobates (Excidobates),,Excidobates,bio/Excidobates,,,,,, +1008893,,"Hylarana Tschudi, 1838",,,,,Hylarana,bio/Hylarana,,,,,, +1008990,,"Paradactylodon Risch, 1984",,,,,Paradactylodon,bio/Paradactylodon,,,,,, +1010709,,"Plectorhinchus lessonii (Cuvier, 1830)",,lined sweetlips,"Plectorhinchus lessoni, Diagramma lessonii",striped sweetlips ,Plectorhinchus lessonii,bio/PlectorhinchusLessonii,,bio/Plectorhinchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1010711,,"Plectorhinchus vittatus (Linnaeus, 1758)",,oriental sweetlips,Perca vittata,Indian Ocean oriental sweetlips,Plectorhinchus vittatus,bio/PlectorhinchusVittatus,,bio/Plectorhinchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1016941,,"Squalus centrina Linnaeus, 1758",,angular rough shark,Squalus centrina,angular roughshark,Oxynotus centrina,bio/OxynotusCentrina,,bio/Oxynotus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1017371,,"Mulloidichthys pfluegeri (Steindachner, 1900)",,rosy goatfish,Mulloides pfluegeri,orange goatfish,Mulloidichthys pfluegeri,bio/MulloidichthysPfluegeri,,bio/Mulloidichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1029687,,"Spelerpes mulleri Brocchi, 1883",,Muller's mushroomtongue salamander,"Oedipus mexicanus mulleri, Spelerpes mulleri, Bolitoglossa (Bolitoglossa) mulleri, Oedipus mulleri",Mueller's mushroomtongue salamander,Bolitoglossa mulleri,bio/BolitoglossaMulleri,,bio/Bolitoglossa_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1037525,,"Rana ruwenzorica Laurent, 1972",,Ruwenzori river frog,"Afrana ruwenzorica, Rana ruwenzorica",Ruwenzori Range frog,Amietia ruwenzorica,bio/AmietiaRuwenzorica,,bio/Amietia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1040952,,,,,,,Rhinomugil,bio/Rhinomugil,,,,,, +1041117,,"Myuchelys georgesi Cann, 1997",,Bellinger River snapping turtle,"Wollumbinia georgesi, Elseya georgesi",Bellinger river turtle,Myuchelys georgesi,bio/MyuchelysGeorgesi,,bio/Myuchelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1041596,,,,,,,Liopholis,bio/Liopholis,,,,,, +1042646,,"Gadus chalcogrammus Pallas, 1814",,Norwegian pollock,Theragra chalcogramma,walleye pollock,Gadus chalcogrammus,bio/GadusChalcogrammus,,bio/Gadus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1043195,,,,,,,Inegocia,bio/Inegocia,,,,,, +1045542,,"Lutjanus gymnocephalus Lacepede, 1802",,naked-head glassy perchlet,Lutjanus gymnocephalus,bald glassy,Ambassis gymnocephalus,bio/AmbassisGymnocephalus,,bio/Ambassis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1045544,,"Kuhlia marginata (Cuvier, 1829)",,spotted flagtail,Dules marginatus,dark-margined flagtail,Kuhlia marginata,bio/KuhliaMarginata,,bio/Kuhlia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1046120,,,,,,,Gobioides,bio/Gobioides,,,,,, +1046121,,"Gobioides broussonnetii Lacepede, 1800",,dragon goby,Gobioides broussonetii,violet goby,Gobioides broussonnetii,bio/GobioidesBroussonnetii,,bio/Gobioides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1046901,,,,,,,Cyriopagopus,bio/Cyriopagopus,,,,,, +1047088,,"Mus amphibius Linnaeus, 1758",,European water vole,"Mus amphibius, Arvicola terrestris (Linnaeus, 1758)",Eurasian water vole,Arvicola amphibius,bio/ArvicolaAmphibius,,bio/Arvicola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +1047102,,"Papilio perius Linnaeus, 1758",,common sargeant butterfly,Papilio perius,common sargeant,Athyma perius,bio/AthymaPerius,,bio/Athyma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1048219,PBoV1,Porcine bocavirus 1 Shan et al. 2011,,,Porcine bocavirus G1,,Porcine bocavirus 1,bio/PorcineBocavirus1,dcs:BiologicalHostVertebrates,bio/BocaparvovirusUngulate2,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +1048220,PBoV2,Porcine bocavirus 2 Shan et al. 2011,,,Porcine bocavirus G2,,Porcine bocavirus 2,bio/PorcineBocavirus2,dcs:BiologicalHostVertebrates,bio/BocaparvovirusUngulate2,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +1048243,SERV,Simian endogenous retrovirus van der Kuyl et al. 1997,,,Simian endogenous retrovirus type D,,Simian endogenous retrovirus,bio/SimianEndogenousRetrovirus,dcs:BiologicalHostVertebrates,bio/MasonpfizerMonkeyVirus,dcs:BiologicalTaxonomicRankNoRank,dcs:BiologicalTaxonomicDivisionViruses,True, +1048669,,"Rana vicina Stoliczka, 1872",,Stoliczka's frog,"Chaparana vicina, Rana vicina, Paa vicina",Murree frog,Nanorana vicina,bio/NanoranaVicina,,bio/Nanorana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1054643,,"Trypauchen vagina (Bloch & Schneider, 1801)",,red goby,Gobius vagina,Indo-Pacific burrowing goby,Trypauchen vagina,bio/TrypauchenVagina,,bio/Trypauchen,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1070161,,,,,,,Ericosoma,bio/Ericosoma,,,,,, +1070322,,,,,,,Sibynophis,bio/Sibynophis,,,,,, +1070323,,"Sibynophis collaris (Gray, 1853)",,common many-tooth snake,"Polyodontophis collaris, Psammophis collaris",collared black-headed snake,Sibynophis collaris,bio/SibynophisCollaris,,bio/Sibynophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1071977,,"Arthroleptis adolfifriederici Nieden, 1911",,Rugege Forest squeaker frog,Arthroleptis adolfi-friederici,Rugegewald screeching frog,Arthroleptis adolfifriederici,bio/ArthroleptisAdolfifriederici,,bio/Arthroleptis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1072479,,"Myliobatis freminvillei Lesueur, 1824",,bullnose ray,Myliobatis freminvillii,bullnose eagle ray,Myliobatis freminvillei,bio/MyliobatisFreminvillei,,bio/Myliobatis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1072485,,"Trygon grabatus Geoffroy St. Hilaire, 1817",,round fantail stingray,"Taeniurops grabata, Trygon grabatus",round stingray,Taeniura grabata,bio/TaeniuraGrabata,,bio/Taeniura,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1072513,,,,,,,Typhlonarke,bio/Typhlonarke,,,,,, +1072514,,"Typhlonarke aysoni (Hamilton, 1902)",,round electric ray,Astrape aysoni,blind electric ray,Typhlonarke aysoni,bio/TyphlonarkeAysoni,,bio/Typhlonarke,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1085684,,"Therapon fuliginosus Macleay, 1883",,black bream,Therapon fuliginosus,sooty grunter,Hephaestus fuliginosus,bio/HephaestusFuliginosus,,bio/Hephaestus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1088130,,"Rusa timorensis (de Blainvillle, 1822)",,Sunda sambar,Cervus timorensis,Javan rusa,Rusa timorensis,bio/RusaTimorensis,,bio/Rusa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +1089686,,"Histiophryne bougainvilli (Valenciennes, 1837)",,smooth anglerfish,"Chironectes bougainvilli, Chironectes bougainvillii",Bougainville's anglerfish,Histiophryne bougainvilli,bio/HistiophryneBougainvilli,,bio/Histiophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1091402,,"Ranitomeya lamasi (Morales, 1992)",,Pasco poison frog,"Dendrobates sirensis, Ranitomeya biolat, Dendrobates lamasi, Ranitomeya lamasi, Dendrobates biolat",Sira poison frog,Ranitomeya sirensis,bio/RanitomeyaSirensis,,bio/Ranitomeya,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1093613,,"Crossocheilus langei Bleeker, 1860",,Siamese algae eater,Crossocheilus (Crossocheilichthys) langei,red algae eater,Crossocheilus langei,bio/CrossocheilusLangei,,bio/Crossocheilus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1094710,,,,,,,Kajikia,bio/Kajikia,,,,,, +1095381,,,,,Ophieleotris,,Giuris,bio/Giuris,,,,,, +1095382,,"Ophieleotris aporos (Bleeker, 1854)",,snakehead goby,"Ophieleotris margaritacea, Eleotris margaritacea, Giuris margaritacea, Ophieleotris aporos",snakehead gudgeon,Giuris margaritaceus,bio/GiurisMargaritaceus,,bio/Giuris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1095716,,"Ilisha megaloptera (Swainson, 1839)",,jeweled shad,Clupea megalopterus,bigeye ilisha,Ilisha megaloptera,bio/IlishaMegaloptera,,bio/Ilisha,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1104375,,"Uperoleia russelli (Loveridge, 1933)",,northwest toadlet,Glauertia russelli,Russell's toadlet,Uperoleia russelli,bio/UperoleiaRusselli,,bio/Uperoleia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1104425,,"Nyctibatrachus sanctipalustris Rao, 1920",,sacred swamp wrinkled frog,Nyctibatrachus sancti-palustris,Coorg night frog,Nyctibatrachus sanctipalustris,bio/NyctibatrachusSanctipalustris,,bio/Nyctibatrachus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1108006,,"Anthus novaeseelandiae (Gmelin, 1789)",,Australasian pipit,Alauda novaeseelandiae,New Zealand pipit,Anthus novaeseelandiae,bio/AnthusNovaeseelandiae,,bio/Anthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1108805,,,,,,,Sufflogobius,bio/Sufflogobius,,,,,, +1108806,,"Sufflogobius bibarbatus (von Bonde, 1923)",,bearded goby,Gobius bibarbatus,pelagic goby,Sufflogobius bibarbatus,bio/SufflogobiusBibarbatus,,bio/Sufflogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1109079,,"Mitu tomentosum (Spix, 1825)",,lesser razor-billed curassow,Crax tomentosa,crestless curassow,Mitu tomentosum,bio/MituTomentosum,,bio/Mitu,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1110376,,"Iduna pallida (Hemprich & Ehrenberg, 1833)",,Western olivaceous warbler,"Curruca pallida, Hippolais pallida",olivaceous warbler,Iduna pallida,bio/IdunaPallida,,bio/Iduna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1110606,,"Litoria castanea Steindachner, 1867",,yellow-spotted bell frog,"Ranoidea castanea, Hyla castanea",yellow-spotted tree frog ,Litoria castanea,bio/LitoriaCastanea,,bio/Litoria,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1111465,,"Valamugil seheli (Fabricius, 1775)",,Taiwanese mullet,"Mugil crenilabis seheli, Mugil seheli, Valamugil formosae, Osteomugil formosae, Moolgarda seheli, Liza formosae, Mugil crenilabis var. seheli, Valamugil seheli",bluespot mullet,Crenimugil seheli,bio/CrenimugilSeheli,,bio/Crenimugil,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1111470,,"Rhinomugil corsula (Hamilton, 1822)",,false four-eyed fish,Mugil corsula,corsula,Rhinomugil corsula,bio/RhinomugilCorsula,,bio/Rhinomugil,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1111477,,,,,,,Neomyxus,bio/Neomyxus,,,,,, +1111478,,"Neomyxus leuciscus (Guenther, 1872)",,acute-jawed mullet,"Chaenomugil leuciscus, Myxus leuciscus",brown mullet,Neomyxus leuciscus,bio/NeomyxusLeuciscus,,bio/Neomyxus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1112861,,"Simia flavia Schreber, 1774",,Marcgrave's capuchin,"Cebus flavius, Simia flavia",blond capuchin,Sapajus flavius,bio/SapajusFlavius,,bio/Sapajus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +1114792,,"Equus ferus Boddaert, 1785",,Russian wild horse,Equus caballus ferus,tarpan,Equus ferus,bio/EquusFerus,,bio/Equus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +1115652,,"Rhacophorus kajau Dring, 1983",,Dring's flying frog,"Kurixalus kajau, Rhacophorus kajau",white-eared tree frog,Feihyla kajau,bio/FeihylaKajau,,bio/Feihyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1116803,,,,,,,Andinobates,bio/Andinobates,,,,,, +1120762,,"Lovettia sealii (Johnston, 1883)",,Derwent whitebait,Haplochiton sealii,Tasmanian whitebait,Lovettia sealii,bio/LovettiaSealii,,bio/Lovettia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1120768,,"Rana fisheri Stejneger, 1893",,Vegas Valley frog,Lithobates fisheri,Vegas Valley leopard frog,Rana fisheri,bio/RanaFisheri,,bio/Pantherana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1124502,,"Gobius ocellaris Broussonet, 1782",,eyespot goby,Gobius ocellaris,spotfin river goby,Awaous ocellaris,bio/AwaousOcellaris,,bio/Awaous,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1129741,,,,,,,Chroicocephalus,bio/Chroicocephalus,,,,,, +1130116,,"Leptolalax ventripunctatus Fei, Ye, & Li, 1990",,Yunnan Asian toad,"Leptolalax ventripunctatus, Paramegophrys ventripunctatus",speckle-bellied metacarpal-tubercled toad,Leptobrachella ventripunctata,bio/LeptobrachellaVentripunctata,,bio/Leptobrachella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1130117,,"Xenophrys parva (Boulenger, 1893)",,tubercular breasted frog,"Megalophrys parva, Leptobrachium parvum, Xenophrys parva, Panophrys parva",Burmese spadefoot toad,Megophrys parva,bio/MegophrysParva,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1131247,,,,,,,Scenopoeetes,bio/Scenopoeetes,,,,,, +1131888,,"Dendrotriton megarhinus (Rabb, 1960)",,long-nosed bromeliad salamander,Chiropterotriton megarhinus,longnose bromeliad salamander,Dendrotriton megarhinus,bio/DendrotritonMegarhinus,,bio/Dendrotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1131890,,"Dendrotriton xolocalcae (Taylor, 1941)",,Xolocalco bromeliad salamander,"Chiropterotriton xolocalcae, Bolitoglossa xolocalcae",Xolocalca bromeliad salamander,Dendrotriton xolocalcae,bio/DendrotritonXolocalcae,,bio/Dendrotriton,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1133662,,"Adenomera lutzi Heyer, 1975",,Lutz's tropical bullfrog,"Leptodactylus lutzi, Leptodactylus (Lithodytes) lutzi",Lutz's thin-toed frog,Adenomera lutzi,bio/AdenomeraLutzi,,bio/Adenomera,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1134580,,"Valamugil speigleri (Bleeker, 1858)",,Speigler's grey mullet,"Valamugil speigleri, Mugil speigleri, Moolgarda speigleri",Speigler's mullet,Osteomugil speigleri,bio/OsteomugilSpeigleri,,bio/Osteomugil,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1137846,,,,,,,Chelonoidis nigra species complex,bio/ChelonoidisNigraSpeciesComplex,,,,,, +1138020,,"Rappia benguellensis Bocage, 1893",,Benguella reed frog,Rappia benguellensis,Bocage's sharp-nosed reed frog,Hyperolius benguellensis,bio/HyperoliusBenguellensis,,bio/Hyperolius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1141927,,"Rhencus macracanthus (Guenther, 1864)",,grey perch,"Pristipoma macracanthum, Pomadasys macracanthus",longspine grunt,Rhencus macracanthus,bio/RhencusMacracanthus,,bio/Rhencus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1141933,,"Pristipoma sexlineatum Quoy & Gaimard, 1824",,striped terapon,"Helotes sexlineatus, Pristipoma sexlineatum",six-lined trumpeter,Pelates sexlineatus,bio/PelatesSexlineatus,,bio/Pelates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1143719,,"Cervus nippon mantchuricus Swinhoe, 1864",,Dybowski's sika deer,"Cervus nippon mantschuricus, Cervus nippon dybowskii",Manchurian sika deer,Cervus nippon mantchuricus,bio/CervusNipponMantchuricus,,bio/CervusNippon,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionMammals,True, +1146954,,"Salarias gibbifrons Quoy & Gaimard, 1824",,bullethead rockskipper,"Istiblennius gibbifrons, Salarias gibbifrons",hump-headed blenny,Blenniella gibbifrons,bio/BlenniellaGibbifrons,,bio/Blenniella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1146960,,"Serranus spiloparaeus Valenciennes, 1828",,strawberry rockcod,Serranus spiloparaeus,strawberry hind,Cephalopholis spiloparaea,bio/CephalopholisSpiloparaea,,bio/Cephalopholis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1146965,,"Syngnathus flavofasciatus Ruppell, 1838",,yellow-banded pipefish,Syngnathus flavofasciatus,network pipefish,Corythoichthys flavofasciatus,bio/CorythoichthysFlavofasciatus,,bio/Corythoichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1146973,,"Salarias bellus Gunther, 1861",,dusky blenny,Salarias bellus,beautiful rockskipper,Istiblennius bellus,bio/IstiblenniusBellus,,bio/Istiblennius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1146980,,"Pseudanthias evansi (Smith, 1954)",,yellowtail anthias,"Mirolabrichthys evansi, Anthias evansi",yellowback anthias,Pseudanthias evansi,bio/PseudanthiasEvansi,,bio/Pseudanthias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1147084,,,,,,,Exallias,bio/Exallias,,,,,, +1147085,,"Salarias brevis Kner, 1868",,shortbodied blenny,Salarias brevis,leopard blenny,Exallias brevis,bio/ExalliasBrevis,,bio/Exallias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1147086,,,,,,,Foa,bio/Foa,,,,,, +1147087,,"Fowleria brachygrammus Jenkins, 1903",,bay cardinalfish,Fowleria brachygrammus,weed cardinalfish,Foa brachygramma,bio/FoaBrachygramma,,bio/Foa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1147743,,"Solenostomus paradoxus (Pallas, 1770)",,ornate ghostpipefish,"Fistularia paradoxa, Fistvlaria paradoxa",harlequin ghost pipefish,Solenostomus paradoxus,bio/SolenostomusParadoxus,,bio/Solenostomus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1154649,,"Gerres rhombeus Cuvier, 1829",,silver mojarra,Gerres rhombeus,Caitipa mojarra,Diapterus rhombeus,bio/DiapterusRhombeus,,bio/Diapterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1155711,,"Glyphisodon ternatensis Bleeker, 1853",,ternate damselfish,Glyphisodon ternatensis,ternate damsel,Amblyglyphidodon ternatensis,bio/AmblyglyphidodonTernatensis,,bio/Amblyglyphidodon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1156095,,"Fierasfer mourlani Petit, 1934",,silver pearlfish,Fierasfer mourlani,star pearlfish,Carapus mourlani,bio/CarapusMourlani,,bio/Carapus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1156139,,"Scolecenchelys gymnota (Bleeker, 1857)",,Indo-Pacific shorttail conger,Muraenichthys gymnotus,Indo-Pacific slender worm-eel,Scolecenchelys gymnota,bio/ScolecenchelysGymnota,,bio/Scolecenchelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1156144,,"Stenogobius genivittatus (Valenciennes, 1837)",,chin-band goby,Gobius genivittatus,chinstripe goby,Stenogobius genivittatus,bio/StenogobiusGenivittatus,,bio/Stenogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1156498,,"Wallago dinema Bleeker, 1851",,Malaysian toothed catfish,"Wallago dinema, Belodontichthys macrochir",Malayan toothed catfish,Belodontichthys dinema,bio/BelodontichthysDinema,,bio/Belodontichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1157335,,"Nemipterus nematophorus (Bleeker, 1854)",,longfin threadfin-bream,Dentex nematophorus,doublewhip threadfin bream,Nemipterus nematophorus,bio/NemipterusNematophorus,,bio/Nemipterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1158920,,"Ardeola grayii (Sykes, 1832)",,paddybird,Ardea grayii,Indian pond-heron,Ardeola grayii,bio/ArdeolaGrayii,,bio/Ardeola,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1159274,,"Gymnothorax catenatus Bloch, 1795",,chain moray eel,"Gymnothorax catenatus, Gymnothorax catenata",chain moray,Echidna catenata,bio/EchidnaCatenata,,bio/Echidna,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1160816,,"Cypselus pallidus Shelley, 1870",,Fahlsegler,Cypselus pallidus,pallid swift,Apus pallidus,bio/ApusPallidus,,bio/Apus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1161366,,,,,,,Amniataba,bio/Amniataba,,,,,, +1161368,,Datnia caudavittata Richardson. 1845,,yellowtail grunter,"Amniataba caudavittatus, Datnia caudavittata",yellowtail trumpeter,Amniataba caudavittata,bio/AmniatabaCaudavittata,,bio/Amniataba,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1161369,,"Therapon percoides Gunther, 1864",,banded grunter,Therapon percoides,barred grunter,Amniataba percoides,bio/AmniatabaPercoides,,bio/Amniataba,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1162258,,"Gastrophryne pictiventris (Cope, 1886)",,Nicaragua narrowmouth toad,"Microhyla pictiventris, Engystoma pictiventris, Engystoma pictiventre",southern narrow-mouthed toad,Gastrophryne pictiventris,bio/GastrophrynePictiventris,,bio/Gastrophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1163533,,"Uropterygius okinawae Jordan & Snyder, 1901",,Bennett's moray,Uropterygius okinawae,shorttailed snake moray,Scuticaria okinawae,bio/ScuticariaOkinawae,,bio/Scuticaria_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1165301,,,,,,,Woodworthia,bio/Woodworthia,,,,,, +1165302,,"Woodworthia maculatus (Gray, 1845)",,spotted sticky-toed gecko,"Woodworthia maculatus, Dactylocnemis maculatus, Hoplodactylus maculatus, Naultinus maculatus",Raukawa gecko,Woodworthia maculata,bio/WoodworthiaMaculata,,bio/Woodworthia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1167616,,"Serranus bontoides Bleeker, 1855",,dusky rock cod,Serranus bontoides,palemargin grouper,Epinephelus bontoides,bio/EpinephelusBontoides,,bio/Epinephelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1168020,,"Rana temporaria coreana Okada, 1928",,Amur brown frog,"Rana temporaria coreana, Rana amurensis coreana",Korean brown frog,Rana coreana,bio/RanaCoreana,,bio/Rana_Subgenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1170831,,,,,,,Montivipera,bio/Montivipera,,,,,, +1171662,,,,,,,Fritziana,bio/Fritziana,,,,,, +1171664,,"Fritziana fissilis (Miranda-Ribeiro, 1920)",,Serra de Macae treefrog,"Coelonotus fissilis, Nototheca fissilis, Flectonotus fissilis",split-backed frog,Fritziana fissilis,bio/FritzianaFissilis,,bio/Fritziana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1171665,,"Hyla goeldii Boulenger, 1895",,Colonia Alpina treefrog,"Flectonotus goeldii, Hyla goeldii, Fritziana goeldi, Fritzia goeldii",Goeldi's frog,Fritziana goeldii,bio/FritzianaGoeldii,,bio/Fritziana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1171711,,"Grus paradisea (Lichtenstein, 1793)",,Stanley crane,"Ardea paradisea, Anthropoides paradiseus (Lichtenstein, 1793)",blue crane,Grus paradisea,bio/GrusParadisea,,bio/Grus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1175540,,"Rhynchorhamphus georgii (Valenciennes, 1847)",,long billed half beak,Hemiramphus georgii,duckbill garfish,Rhynchorhamphus georgii,bio/RhynchorhamphusGeorgii,,bio/Rhynchorhamphus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1175541,,"Raja dipterygia Bloch & Schneider, 1801",,numbray,Raja dipterygia,spottail sleeper ray,Narke dipterygia,bio/NarkeDipterygia,,bio/Narke,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1175560,,,,,,,Rhynchorhamphus,bio/Rhynchorhamphus,,,,,, +1178017,,"Eupsophus altor Nunez, Rabanal & Formas, 2012",,rana de hojarasca de Oncol,Eupsophus sp. JJN-2012,Oncol's ground frog,Eupsophus altor,bio/EupsophusAltor,,bio/Eupsophus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1181264,,"Rhonciscus crocro (Cuvier, 1830)",,freshwater grunt,"Pristipoma crocro, Pomadasys crocro",burro grunt,Rhonciscus crocro,bio/RhonciscusCrocro,,bio/Rhonciscus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1182014,,"Muraena nigricans Bonnaterre, 1788",,mulatto conger moray,Muraena nigricans,mottled conger moray,Enchelycore nigricans,bio/EnchelycoreNigricans,,bio/Enchelycore,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1182147,,"Cossyphus eclancheri Valenciennes, 1846",,harlequin wrasse,Cossyphus eclancheri,Galapagos hogfish,Bodianus eclancheri,bio/BodianusEclancheri,,bio/Bodianus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1182148,,"Julis auricularis Valenciennes, 1839",,king coris,Julis auricularis,western king wrasse,Coris auricularis,bio/CorisAuricularis,,bio/Coris_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1182153,,"Iniistius pentadactylus (Linnaeus, 1758)",,red-spot razor wrasse,"Xyrichtys pentadactylus, Coryphaena pentadactyla",fivefinger razorfish,Iniistius pentadactylus,bio/IniistiusPentadactylus,,bio/Iniistius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1182257,,,,,,,Monopenchelys,bio/Monopenchelys,,,,,, +1182258,,"Uropterygius acutus Parr, 1930",,redface eel,Uropterygius acutus,redface moray,Monopenchelys acuta,bio/MonopenchelysAcuta,,bio/Monopenchelys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1183148,,"Pareques umbrosus (Jordan & Eigenmann, 1889)",,striped ribbonfish,"Equetus umbrosus, Eques acuminatus var. umbrosus, Eques acuminatus umbrosus",cubbyu,Pareques umbrosus,bio/ParequesUmbrosus,,bio/Pareques,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1184739,,"Percis xanthozona Bleeker, 1849",,whitestrip sandperch,Percis xanthozona,yellowbar sandperch,Parapercis xanthozona,bio/ParapercisXanthozona,,bio/Parapercis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1185436,,"Polypedates brachytarsus Gunther, 1876",,short-legged leaping frog,"Rana brachytarsus, Polypedates brachytarsus, Ranixalus brachytarsus",Anamallais Indian frog,Indirana brachytarsus,bio/IndiranaBrachytarsus,,bio/Indirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1188029,,"Pristigenys niphonia (Cuvier, 1829)",,whiteband bigeye,Priacanthus niphonius,Japanese bigeye,Pristigenys niphonia,bio/PristigenysNiphonia,,bio/Pristigenys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1188031,,,,,,,Brachypterois,bio/Brachypterois,,,,,, +1188032,,"Sebastes serrulatus Richardson, 1846",,sawtooth scorpionfish,Sebastes serrulatus,pygmy lionfish,Brachypterois serrulata,bio/BrachypteroisSerrulata,,bio/Brachypterois,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1191327,,"Rana darlingi Boulenger, 1902",,golden-backed frog,"Hydrophylax darlingi, Hylarana darlingi, Rana darlingi",Darling's white-lipped frog,Amnirana darlingi,bio/AmniranaDarlingi,,bio/Amnirana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1192867,,"Larus ridibundus Linnaeus, 1766",,Lachmoewe,Larus ridibundus,black-headed gull,Chroicocephalus ridibundus,bio/ChroicocephalusRidibundus,,bio/Chroicocephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1198083,,"Labrus bicolor Bloch & Schneider, 1801",,pearly-spotted wrasse,Labrus bicolor,brown-stripe wrasse,Halichoeres bicolor,bio/HalichoeresBicolor,,bio/Halichoeres,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1200804,,"Oceanodroma monteiroi Smith, 2008",,Monteiro storm-petrel,Oceanodroma monteiro,Monteiro's storm-petrel,Oceanodroma monteiroi,bio/OceanodromaMonteiroi,,bio/Oceanodroma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1201173,,"Salmo peristericus Karaman, 1938",,Lake Prespa trout,Salmo macedonicus peristericus,Prespa trout,Salmo peristericus,bio/SalmoPeristericus,,bio/Salmo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1201327,,"Raorchestes chalazodes (Guenther, 1876)",,white-spotted frog,"Pseudophilautus chalazodes, Ixalus chalazodes, Rhacophorus chalazodes, Philautus chalazodes",Guenther's bush frog,Raorchestes chalazodes,bio/RaorchestesChalazodes,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1202793,,"Rhacophorus translineatus Wu, 1977",,translineate tree frog,Rhacophorus (Leptomantis) translineatus,cross-barred treefrog,Rhacophorus translineatus,bio/RhacophorusTranslineatus,,bio/Rhacophorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1202794,,"Rhacophorus verrucopus Huang, 1983",,Beibeng flying frog,Rhacophorus (Rhacophorus) verrucopus,serrate-toed treefrog,Rhacophorus verrucopus,bio/RhacophorusVerrucopus,,bio/Rhacophorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1203020,,"Simias Miller, 1903",,,,,Simias,bio/Simias,,,,,, +1203425,,"Notolabrus celidotus (Bloch & Schneider, 1801)",,spotty,Labrus celidotus,New Zealand spotty,Notolabrus celidotus,bio/NotolabrusCelidotus,,bio/Notolabrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1203428,,"Rhombus plebius Richardson, 1843",,sand flounder,Rhombus plebius,New Zealand flounder,Rhombosolea plebeia,bio/RhombosoleaPlebeia,,bio/Rhombosolea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1203600,,"Dendrobates opisthomelas Boulenger, 1899",,Andean poison-arrow frog,"Ranitomeya opisthomelas, Minyobates opisthomelas, Dendrobates opisthomelas",Andean poison frog,Andinobates opisthomelas,bio/AndinobatesOpisthomelas,,bio/Andinobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1206914,,"Hypsicometes gobioides Goode, 1880",,goby duckbill,Hypsicometes gobioides,goby flathead,Bembrops gobioides,bio/BembropsGobioides,,bio/Bembrops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1206920,,"Serranus biguttatus Valenciennes, 1830",,twospot snapper,Serranus biguttatus,two-spot banded snapper,Lutjanus biguttatus,bio/LutjanusBiguttatus,,bio/Lutjanus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1206930,,,,,,,Diademichthys,bio/Diademichthys,,,,,, +1206931,,"Diademichthys lineatus (Sauvage, 1883)",,yellow stripe clingfish,Crepidogaster lineatum,urchin clingfish,Diademichthys lineatus,bio/DiademichthysLineatus,,bio/Diademichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1206946,,"Pteragogus enneacanthus (Bleeker, 1853)",,redstriped wrasse,Crenilabrus enneacanthus,cockerel wrasse ,Pteragogus enneacanthus,bio/PteragogusEnneacanthus,,bio/Pteragogus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1206947,,,,,,,Ulaema,bio/Ulaema,,,,,, +1206948,,"Ulaema lefroyi (Goode, 1874)",,longfinned sliverbiddy,"Diapterus lefroyi, Eucinostomus lefroyi",mottled mojarra,Ulaema lefroyi,bio/UlaemaLefroyi,,bio/Ulaema,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1206982,,"Ostracion auritus Shaw, 1798",,Shaw's cowfish,Ostracion auritus,striped cowfish,Aracana aurita,bio/AracanaAurita,,bio/Aracana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1208316,,,,,,,Hyporthodus,bio/Hyporthodus,,,,,, +1208378,,,,,,,Babina,bio/Babina,,,,,, +1209400,,"Lampanyctus australis Taning, 1932",,nightlight fish,Lampanyctus alatus australis,southern lanternfish,Lampanyctus australis,bio/LampanyctusAustralis,,bio/Lampanyctus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1212470,,"Setophaga striata (Forster,JR, 1772)",,black-poll warbler,Dendroica striata,blackpoll warbler,Setophaga striata,bio/SetophagaStriata,,bio/Setophaga,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1212746,,"Gobius stamineus Eydoux & Souleyet, 1850",,endemic Hawaiian amphidromous goby,Gobius stamineus,oopu nakea,Awaous stamineus,bio/AwaousStamineus,,bio/Awaous,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213614,,,,,,,Brochiraja,bio/Brochiraja,,,,,, +1213615,,"Brochiraja asperula (Garrick & Paul, 1974)",,prickly deepsea skate,Bathyraja asperula,smooth deepsea skate,Brochiraja asperula,bio/BrochirajaAsperula,,bio/Brochiraja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213663,,"Scyllium anale Ogilby, 1885",,grey spotted catshark,Scyllium anale,Australian spotted catshark,Asymbolus analis,bio/AsymbolusAnalis,,bio/Asymbolus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213666,,"Breviraja pallida Forster, 1967",,pallid ray,Breviraja pallida,pallid skate,Bathyraja pallida,bio/BathyrajaPallida,,bio/Bathyraja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213672,,"Brochiraja spinifera (Garrick & Paul, 1974)",,spiny deepsea skate,"Notoraja spinifera, Bathyraja spinifera, Pavoraja spinifera",prickly deepsea skate ,Brochiraja spinifera,bio/BrochirajaSpinifera,,bio/Brochiraja,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213673,,"Halaelurus dawsoni Springer, 1971",,Dawson's catshark,Halaelurus dawsoni,New Zealand catshark,Bythaelurus dawsoni,bio/BythaelurusDawsoni,,bio/Bythaelurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213681,,"Galeus arae (Nichols, 1927)",,marbled catshark,Pristiurus arae,roughtail catshark,Galeus arae,bio/GaleusArae,,bio/Galeus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213707,,"Rhinobatos rhinobatos (Linnaeus, 1758)",,violinfish,Raja rhinobatos,common guitarfish,Rhinobatos rhinobatos,bio/RhinobatosRhinobatos,,bio/Rhinobatos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213717,,"Torpedo torpedo (Linnaeus, 1758)",,ocellate torpedo,Raja torpedo,common torpedo,Torpedo torpedo,bio/TorpedoTorpedo,,bio/Torpedo,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1213718,,"Urolophus maculatus (Garman, 1913)",,Cortez round stingray,Urolophus maculatus,spotted round ray,Urobatis maculatus,bio/UrobatisMaculatus,,bio/Urobatis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1217922,,,,,,,Amazophrynella,bio/Amazophrynella,,,,,, +1218007,,"Puntius arenatus (Day, 1878)",,arenatus barb,Barbus arenatus,stigma barb,Puntius arenatus,bio/PuntiusArenatus,,bio/Puntius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1223622,,"Graphiurus kelleni Reuvens, 1890",,Kellen's african dormouse,Graphiurus parvus,savanna dormouse,Graphiurus kelleni,bio/GraphiurusKelleni,,bio/Graphiurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +1227136,,,,,Neotropius,,Pachypterus,bio/Pachypterus,,,,,, +1227137,,"Silurus atherinoides Bloch, 1794",,dwarf iridescent shark,"Pseudeutropius atherinoides, Neotropius atherinoides, Silurus atherinoides",Indian topasi,Pachypterus atherinoides,bio/PachypterusAtherinoides,,bio/Pachypterus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1230708,,"Insidiator harrisii McCulloch, 1914",,Harris flathead,Insidiator harrisii,Harris's flathead,Inegocia harrisii,bio/InegociaHarrisii,,bio/Inegocia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1230718,,"Platycephalus richardsoni Castelnau, 1872",,trawl flathead,Neoplatycephalus richardsoni,tiger flathead,Platycephalus richardsoni,bio/PlatycephalusRichardsoni,,bio/Platycephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1230725,,"Platycephalus beauforti Knapp, 1973",,crocodile fish,Platycephalus beauforti,crocodilefish,Cymbacephalus beauforti,bio/CymbacephalusBeauforti,,bio/Cymbacephalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1230726,,"Platycephalus japonicus Cuvier, 1829",,smooth flathead,"Suggrundus japonica, Platycephalus japonicus",rusty flathead,Inegocia japonica,bio/InegociaJaponica,,bio/Inegocia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1231073,,,,,,,Schultzea,bio/Schultzea,,,,,, +1231074,,"Serranus beta Hildebrand, 1940",,toothless basslet,Serranus beta,school bass,Schultzea beta,bio/SchultzeaBeta,,bio/Schultzea,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1231620,,"Serranus faveatus Valenciennes, 1828",,Indian grouper,Serranus faveatus,barred-chest grouper,Epinephelus faveatus,bio/EpinephelusFaveatus,,bio/Epinephelus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1231899,,"Ophidion holbrookii Putnam, 1874",,band cusk-eel,Ophidion holbrooki,bank cusk-eel,Ophidion holbrookii,bio/OphidionHolbrookii,,bio/Ophidion_BonyFishes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1232745,,"Nemichthys curvirostris (Stromman, 1896)",,boxer snipe eel,Leptocephalus curvirostris,spotted snipe eel,Nemichthys curvirostris,bio/NemichthysCurvirostris,,bio/Nemichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1233221,,,,,,,Agriades,bio/Agriades,,,,,, +1234705,,"Ophisurus serpens (Linnaeus, 1758)",,sand snake eel,Muraena serpens,serpent eel,Ophisurus serpens,bio/OphisurusSerpens,,bio/Ophisurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1234954,,"Mesoclemmys gibba (Schweigger, 1812)",,gibba turtle,"Phrynops gibbus, Emys gibba, Mesoclemmys gibbus",toadhead turtle,Mesoclemmys gibba,bio/MesoclemmysGibba,,bio/Mesoclemmys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1236050,,"Scarus enneacanthus Lacepede, 1802",,green parrotfish,Scarus enneacanthus,captain parrotfish,Chlorurus enneacanthus,bio/ChlorurusEnneacanthus,,bio/Chlorurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1236055,,"Scarus strongylocephalus Bleeker, 1855",,steephead parrotfish,Scarus strongylocephalus,heavybeak parrotfish ,Chlorurus strongylocephalus,bio/ChlorurusStrongylocephalus,,bio/Chlorurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1236056,,"Scarus harid Forsskal, 1775",,Candelamoa parrotfish,Scarus harid,longnose parrotfish,Hipposcarus harid,bio/HipposcarusHarid,,bio/Hipposcarus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1236062,,"Scarus falcipinnis (Playfair, 1868)",,greenbelly parrotfish,Pseudoscarus falcipinnis,sicklefin parrotfish,Scarus falcipinnis,bio/ScarusFalcipinnis,,bio/Scarus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1236080,,"Scarus viridifucatus (Smith, 1956)",,greenlip parrotfish,Callyodon viridifucatus,roundhead parrotfish,Scarus viridifucatus,bio/ScarusViridifucatus,,bio/Scarus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1238289,,"Gobius circumspectus Macleay, 1883",,mangrove flathead goby,Gobius circumspectus,circumspect goby,Glossogobius circumspectus,bio/GlossogobiusCircumspectus,,bio/Glossogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1240248,,"Rhadinophis prasinus (Blyth, 1854)",,green ratsnake,"Rhadinophis prasina, Coluber prasinus, Rhadinophis prasinus, Elaphe prasina",Green trinket snake,Gonyosoma prasinum,bio/GonyosomaPrasinum,,bio/Gonyosoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1241976,,"Sonora michoacanensis (Duges, 1884)",,Balsas ground snake,"Scolecophis michoacanensis, Contia michoacanensis, Homalocranium michoacanense, Chionactis michoacanensis, Elapomorphus michoacanensis",Michoacan ground snake ,Sonora michoacanensis,bio/SonoraMichoacanensis,,bio/Sonora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1241977,,"Sonora mutabilis Stickel, 1943",,Michoacan ground snake,Sonora michoacanensis mutabilis,Mexican ground snake,Sonora mutabilis,bio/SonoraMutabilis,,bio/Sonora,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1246547,,"Proechimys semispinosus (Tomes, 1860)",,Central American spiny rat,Proechimys gorgonae,Tome's spiny-rat,Proechimys semispinosus,bio/ProechimysSemispinosus,,bio/Proechimys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +1249234,,"Xenophrys brachykolos (Inger & Romer, 1961)",,short-legged horned toad,"Panophrys brachykolos, Megophrys minor brachykolos, Xenophrys brachykolos",short-legged toad,Megophrys brachykolos,bio/MegophrysBrachykolos,,bio/Megophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1249237,,"Xenophrys mangshanensis Fei & Ye, 1990",,Mangshan spadefoot toad,Megophrys mangshanensis,Mangshan horned toad,Xenophrys mangshanensis,bio/XenophrysMangshanensis,,bio/Xenophrys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1249487,,"Stolephorus ischanus Jordan & Gilbert, 1882",,sharpnose anchovy,Stolephorus ischanus,slender anchovy,Anchoa ischana,bio/AnchoaIschana,,bio/Anchoa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1249488,,"Stolephorus lucidus Jordan & Gilbert, 1882",,anchoveta,Stolephorus lucidus,bright anchovy,Anchoa lucida,bio/AnchoaLucida,,bio/Anchoa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1250777,,"Rhombatractus lorentzii Weber, 1907",,Lorentz rainbowfish,"Rhombatractus lorentzii, Chilatherina lorentzi",Lorentz's rainbowfish,Chilatherina lorentzii,bio/ChilatherinaLorentzii,,bio/Chilatherina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1250785,,"Melanotaenia multisquamata Weber & de Beaufort, 1922",,Sepik rainbowfisn,"Melanotaenia multisquamata, Glossolepis multisquamatus",rosy rainbowfish,Glossolepis multisquamata,bio/GlossolepisMultisquamata,,bio/Glossolepis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1260531,,"Umbrina elongata Gunther, 1864",,slender kingfish,Umbrina elongata,Pacific kingcroaker,Menticirrhus elongatus,bio/MenticirrhusElongatus,,bio/Menticirrhus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1260532,,"Micropogon megalops Gilbert, 1890",,Gulf croaker,Micropogon megalops,bigeye croaker ,Micropogonias megalops,bio/MicropogoniasMegalops,,bio/Micropogonias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1263180,,,,,,,Guentherus,bio/Guentherus,,,,,, +1263181,,Guentherus altivela Osorio 1917,,highfin jellynose,Guentherus altivelis,highfin tadpole fish,Guentherus altivela,bio/GuentherusAltivela,,bio/Guentherus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1265597,,"Aturia belcheri Gray, 1849",,faint-banded sea snake,"Chitulia belcheri, Aturia belcheri",Belcher's sea snake,Hydrophis belcheri,bio/HydrophisBelcheri,,bio/Hydrophis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1266867,,"Epigonus pandionis (Goode & Bean, 1881)",,black mullet,Apogon pandionis,bigeye,Epigonus pandionis,bio/EpigonusPandionis,,bio/Epigonus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1266874,,"Lumpenus lampretaeformis (Walbaum, 1792)",,snake blenny,Blennius lampretaeformis,snakeblenny,Lumpenus lampretaeformis,bio/LumpenusLampretaeformis,,bio/Lumpenus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1266880,,"Trigla carolina Linnaeus, 1771",,common searobin,Trigla carolina,northern searobin,Prionotus carolinus,bio/PrionotusCarolinus,,bio/Prionotus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1268092,,"Pseudopomacentrus imitator Whitley, 1964",,imitator damsel,Pseudopomacentrus imitator,imitator damselfish,Pomacentrus imitator,bio/PomacentrusImitator,,bio/Pomacentrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1268094,,"Stegastes flavilatus (Gill, 1862)",,beaubrummel,Pomacentrus flavilatus,beaubrummel damselfish,Stegastes flavilatus,bio/StegastesFlavilatus,,bio/Stegastes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1271572,,"Strongylopus fuelleborni (Nieden, 1911)",,Fuelleborn's stream frog,"Strongylopus fasciatus fuelleborni, Rana (Ptychadena) fuelleborni, Rana fasciata fuelleborni, Rana fuelleborni, Rana fulleborni",long-toed grass frog,Strongylopus fuelleborni,bio/StrongylopusFuelleborni,,bio/Strongylopus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1273186,,"Pleurodema kriegi (Mueller, 1926)",,Achala's four-eyed frog,Paludicola kriegi,Achala four-eyed frog,Pleurodema kriegi,bio/PleurodemaKriegi,,bio/Pleurodema,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1280522,,"Dicrossus filamentosus (Ladiges, 1958)",,lyretail checkerboard cichlid,Crenicara filamentosa,checkerboard dwarf cichlid,Dicrossus filamentosus,bio/DicrossusFilamentosus,,bio/Dicrossus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1282961,,"Gobius boddarti Pallas, 1770",,Boddart's goggle-eyed goby,Gobius boddarti,blue-spotted mudskipper,Boleophthalmus boddarti,bio/BoleophthalmusBoddarti,,bio/Boleophthalmus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1283716,,"Breviceps adspersus Peters, 1882",,Transvaal short-headed frog,Breviceps mossambicus adspersus,bushveld rain frog,Breviceps adspersus,bio/BrevicepsAdspersus,,bio/Breviceps,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1286116,,"Paralichthys ommatus Jordan & Gilbert, 1883",,ocellated flounder,Paralichthys ommatus,Gulf of Mexico ocellated flounder,Ancylopsetta ommata,bio/AncylopsettaOmmata,,bio/Ancylopsetta,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1286174,,,,,,,Soleichthys,bio/Soleichthys,,,,,, +1286175,,"Soleichthys heterorhinos (Bleeker, 1856)",,tiger sole,Solea heterorhinos,black-tip sole,Soleichthys heterorhinos,bio/SoleichthysHeterorhinos,,bio/Soleichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1294539,,,,,,,Diaphorapteryx,bio/Diaphorapteryx,,,,,, +1294540,,"Diaphorapteryx hawkinsi (Forbes, 1892)",,Hawkins' rail,Aphanapteryx hawkinsi,Giant Chatham Island rail,Diaphorapteryx hawkinsi,bio/DiaphorapteryxHawkinsi,,bio/Diaphorapteryx,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1295506,,"Pristimantis conservatio Barrio-Amoros, Heinicke & Hedges, 2013",,ranita nublada de los conservacionistas,Pristimantis sp. MPH-2013b,conservation landfrog,Pristimantis conservatio,bio/PristimantisConservatio,,bio/Pristimantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1298884,,"Lile stolifera (Jordan & Gilbert, 1882)",,striped herring,Clupea stolifera,Pacific piquitinga,Lile stolifera,bio/LileStolifera,,bio/Lile,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1300103,,"Leptopelis modestus fiziensis Laurent, 1973",,Mokanga Forest treefrog,Leptopelis modestus fiziensis,Fizi tree frog,Leptopelis fiziensis,bio/LeptopelisFiziensis,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1302381,,"Rana latrans Steffen, 1815",,lesser foam frog,Rana latrans,criolla frog,Leptodactylus latrans,bio/LeptodactylusLatrans,,bio/Leptodactylus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1302559,,"Colostethus chalcopis Kaiser, Coloma & Gray, 1994",,ravine rocket frog,Colostethus chalcopis,Martinique volcano frog,Allobates chalcopis,bio/AllobatesChalcopis,,bio/Allobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1302775,,"Zebrias zebrinus (Temminck & Schlegel, 1846)",,striped sole,Solea zebrina,zebra sole ,Zebrias zebrinus,bio/ZebriasZebrinus,,bio/Zebrias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1302782,,Mugilogobius cavifrons (Weber. 1909),,mangrove goby,Gobius cavifrons,bandfin mangrove goby,Mugilogobius cavifrons,bio/MugilogobiusCavifrons,,bio/Mugilogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1302783,,"Mugilogobius mertoni (Weber, 1911)",,Kanu goby,Gobius mertoni,chequered mangrove goby,Mugilogobius mertoni,bio/MugilogobiusMertoni,,bio/Mugilogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1302786,,"Pseudogobius javanicus (Bleeker, 1856)",,Japanese fatnose goby,Gobius javanicus,spotfin snouted goby,Pseudogobius javanicus,bio/PseudogobiusJavanicus,,bio/Pseudogobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1303107,,"Siren intermedia texana Goin, 1957",,Rio Grande siren,Siren texana,Rio Grande lesser siren,Siren intermedia texana,bio/SirenIntermediaTexana,,bio/SirenIntermedia,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +1306750,,,,,,,Ebosia,bio/Ebosia,,,,,, +1306751,,"Pterois bleekeri Doderlein, 1884",,Bleeker's lionfish,Pterois bleekeri,cockscomb firefish,Ebosia bleekeri,bio/EbosiaBleekeri,,bio/Ebosia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1307780,,"Oxybasis Kar. & Kir., 1841",,,,,Oxybasis,bio/Oxybasis,,,,,, +1311454,,"Istigobius ornatus (Rueppell, 1830)",,ornate lagoon-goby,Gobius ornatus,ornate goby,Istigobius ornatus,bio/IstigobiusOrnatus,,bio/Istigobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1311497,,"Sebastapistes cyanostigma (Bleeker, 1856)",,yellow spotted scorpionfish,Scorpaena cyanostigma,yellowspotted scorpionfish,Sebastapistes cyanostigma,bio/SebastapistesCyanostigma,,bio/Sebastapistes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1311505,,"Zebrasoma velifer (Bloch, 1795)",,intermediate sailfin tang,"Acanthurus velifer, Zebrasoma veliferum",sailfin tang,Zebrasoma velifer,bio/ZebrasomaVelifer,,bio/Zebrasoma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1314640,,"Cinnycerthia olivascens Sharpe, 1881",,sepia-brown wren,Cinnycerthia peruana olivascens,Sharpe's wren,Cinnycerthia olivascens,bio/CinnycerthiaOlivascens,,bio/Cinnycerthia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1316009,,,,,,,Cerdocyon,bio/Cerdocyon,,,,,, +1316015,,"Xesurus biafraensis Blache & Rossignol, 1962",,Biafra sawtail,Xesurus biafraensis,Biafra doctorfish,Prionurus biafraensis,bio/PrionurusBiafraensis,,bio/Prionurus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1316676,,"Latonia nigriventer (Mendelssohn & Steinitz, 1943)",,Palestinian painted frog,Discoglossus nigriventer,Hula painted frog,Latonia nigriventer,bio/LatoniaNigriventer,,bio/Latonia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1319981,,"Rohanixalus hansenae (Cochran, 1927)",,Hansen's Asian treefrog,"Rohanixalus hansenae, Rhacophoridae gen. n. sp. h SDB-2020, Chiromantis hansenae, Philautus hansenae, Chirixalus hansenae, Chirixalus senapatiensis, Rhacophorus hansenae",Hansen's bushfrog,Feihyla hansenae,bio/FeihylaHansenae,,bio/Feihyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1325494,,"Pseudanthias pulcherrimus (Heemstra & Randall, 1986)",,resplendent anthias,Anthias pulcherrimus,resplendent goldie,Pseudanthias pulcherrimus,bio/PseudanthiasPulcherrimus,,bio/Pseudanthias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1325495,,"Pseudanthias randalli (Lubbock & Allen, 1978)",,Randall's anthias,Anthias randalli,Randall's fairy basslet,Pseudanthias randalli,bio/PseudanthiasRandalli,,bio/Pseudanthias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1328069,,"Prolemur Gray, 1871",,,,,Prolemur,bio/Prolemur,,,,,, +1328070,,"Prolemur simus (Gray, 1871)",,broad-nosed bamboo lemur,Hapalemur simus,greater bamboo lemur,Prolemur simus,bio/ProlemurSimus,,bio/Prolemur,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionPrimates,True,dcs:TaxonTopLevelCategoryEukaryota +1329237,,"Tetrodon callisternus Ogilby, 1889",,sharp-nosed pufferfish,Tetrodon callisternus,clown toby,Canthigaster callisterna,bio/CanthigasterCallisterna,,bio/Canthigaster,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1329240,,"Tetrodon punctatissimus Gunther, 1870",,spotted sharpnose puffer,Tetrodon punctatissimus,spotted sharpnosed puffer,Canthigaster punctatissima,bio/CanthigasterPunctatissima,,bio/Canthigaster,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1329249,,"Torquigener squamicauda (Ogilby, 1910)",,scalytail toadfish,Spheroides squamicauda,brush-tail toadfisn,Torquigener squamicauda,bio/TorquigenerSquamicauda,,bio/Torquigener,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1329252,,,,,Xenopterus,,Chonerhinos,bio/Chonerhinos,,,,,, +1329253,,"Tetrodon naritus Richardson, 1848",,golden puffer,"Xenopterus naritus, Tetrodon naritus",yellow pufferfish,Chonerhinos naritus,bio/ChonerhinosNaritus,,bio/Chonerhinos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1331681,,"Rhacophorus calcadensis Ahl, 1927",,Langbian flying frog,Rhacophorus beddomi,Kalakkad tree frog,Rhacophorus calcadensis,bio/RhacophorusCalcadensis,,bio/Rhacophorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1333648,,"Datnioides undecimradiatus (Roberts & Kottelat, 1994)",,thinbar datnoid,Coius undecimradiatus,Mekong tiger perch,Datnioides undecimradiatus,bio/DatnioidesUndecimradiatus,,bio/Datnioides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1334086,,Mesoaphyosemion amoenum (Radda & Purzl 1976),,red-finned killi,Mesoaphyosemion amoenum,red-finned killifish,Aphyosemion amoenum,bio/AphyosemionAmoenum,,bio/Aphyosemion,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1334848,,"Labidesthes vanhyningi Bean & Reid, 1930",,southern brook silverside,Labidesthes vanhyningi,eastern brook silverside,Labidesthes sicculus vanhyningi,bio/LabidesthesSicculusVanhyningi,,bio/LabidesthesSicculus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +1338018,,"Bombinator australis Gray, 1835",,Hawksburgy toadlet,"Phryniscus australis, Bombinator australis, Pseudophryne bibroni var. australis",red-crowned toadlet,Pseudophryne australis,bio/PseudophryneAustralis,,bio/Pseudophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1338022,,"Pseudophryne major Parker, 1940",,marbled toadlet,Gradwellia major,large toadlet,Pseudophryne major,bio/PseudophryneMajor,,bio/Pseudophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1338023,,"Pseudophryne occidentalis Parker, 1940",,western toadlet,Kankanophryne occidentalis,orange-crowned toadlet,Pseudophryne occidentalis,bio/PseudophryneOccidentalis,,bio/Pseudophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1342827,,"Megalixalus gramineus Boulenger, 1898",,Badditu forest treefrog,Megalixalus gramineus,Ethiopian burrowing tree frog,Leptopelis gramineus,bio/LeptopelisGramineus,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1342830,,"Leptopelis vannutellii (Boulenger, 1898)",,Vannutelli's tree frog,Hylambates vannutellii,Dime forest treefrog,Leptopelis vannutellii,bio/LeptopelisVannutellii,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1342833,,"Rana erlangeri Ahl, 1924",,Erlanger's grassland frog,"Ptychadena largeni, Rana erlangeri",Erlanger's grass frog,Ptychadena erlangeri,bio/PtychadenaErlangeri,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1342840,,"Leptopelis ragazzii (Boulenger, 1896)",,Ragazzi's tree frog,Hylambates ragazzii,Shoa forest treefrog,Leptopelis ragazzii,bio/LeptopelisRagazzii,,bio/Leptopelis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1343680,,"Torpedo bancroftii Griffith & Smith, 1834",,spotted torpedo ray,Torpedo bancroftii,Caribbean electric ray,Narcine bancroftii,bio/NarcineBancroftii,,bio/Narcine,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1343690,,"Pseudanthias ventralis (Randall, 1979)",,ventralis anthias,"Anthias ventralis, Anthias ventralis ventralis, Anthias (Pseudanthias) ventralis ventralis",longfin anthias,Pseudanthias ventralis,bio/PseudanthiasVentralis,,bio/Pseudanthias,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1346795,,"Pelotrophus microlepis Guenther, 1864",,Lake Malawi salmon,"Barilius microlepis, Barilius tanganicae, Pelotrophus microlepis",mpasa,Opsaridium microlepis,bio/OpsaridiumMicrolepis,,bio/Opsaridium,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1351707,,,,,,,Liburnascincus,bio/Liburnascincus,,,,,, +1355937,,"Ortyx nigrogularis Gould, 1843",,Yucatan bobwhite,Ortyx nigrogularis,black-throated bobwhite,Colinus nigrogularis,bio/ColinusNigrogularis,,bio/Colinus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1356035,,"Pomacanthus chrysurus (Cuvier, 1831)",,earspot angelfish,Holacanthus chrysurus,goldtail angelfish,Pomacanthus chrysurus,bio/PomacanthusChrysurus,,bio/Pomacanthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1356052,,"Rhacophorus margaritifer (Schlegel, 1837)",,Javan tree frog,"Hyla margaritifera, Rhacophorus javanus, Rhacophorus schlegeli margaritifer",Java flying frog,Rhacophorus margaritifer,bio/RhacophorusMargaritifer,,bio/Rhacophorus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1357725,,"Paramonacanthus pusillus (Rueppell, 1829)",,Sinhalese leatherjacket,Monacanthus pusillus,blackstriped filefish,Paramonacanthus pusillus,bio/ParamonacanthusPusillus,,bio/Paramonacanthus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1364862,,"Tarsiger cyanurus (Pallas, 1773)",,red-flanked bluetail,"Luscinia cyanura, Luscinia cyanura (Pallas, 1773)",orange-flanked bush-robin,Tarsiger cyanurus,bio/TarsigerCyanurus,,bio/Tarsiger,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1365533,,"Gobius flavus Valenciennes, 1837",,candy stripe goby,Gobius flavus,candy cane goby,Awaous flavus,bio/AwaousFlavus,,bio/Awaous,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1365539,,"Gobius nunus Hamilton, 1822",,golden banded goby,Gobius nunus,bumblebee goby ,Brachygobius nunus,bio/BrachygobiusNunus,,bio/Brachygobius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1365699,,,,,,,Odonteleotris,bio/Odonteleotris,,,,,, +1365700,,"Odonteleotris macrodon (Bleeker, 1853)",,sinuous gudgeon,Eleotris macrodon,Gangetic sleeper,Odonteleotris macrodon,bio/OdonteleotrisMacrodon,,bio/Odonteleotris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1367116,,"Trigla hemisticta Temminck & Schlegel, 1843",,half-spotted gurnard,Trigla hemisticta,blackspotted gurnard,Pterygotrigla hemisticta,bio/PterygotriglaHemisticta,,bio/Pterygotrigla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1367118,,"Rogadius asper (Cuvier, 1829)",,olive-tail flathead,Platycephalus asper,olive-tailed flathead,Rogadius asper,bio/RogadiusAsper,,bio/Rogadius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1368164,,"Agarista Leach, 1814",,,,,Agarista ,bio/Agarista_Moths,,,,,, +1368165,,"Papilio agricola Donovan, 1805",,painted vine moth,Papilio agricola,Joseph's Coat moth,Agarista agricola,bio/AgaristaAgricola,,bio/Agarista_Moths,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1378173,,"Scolopsis xenochroa Guenther, 1872",,oblique barred monocle bream,Scolopsis xenochrous,oblique-barred monocle bream,Scolopsis xenochroa,bio/ScolopsisXenochroa,,bio/Scolopsis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1379451,,"Plectropoma pictum Tschudi, 1846",,Peruvian seabass,Plectropoma pictum,brick seabass,Acanthistius pictus,bio/AcanthistiusPictus,,bio/Acanthistius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1380542,,"Thorius adelos (Papenfuss & Wake, 1987)",,Sierra Juarez salamander,"Nototriton adelos, Cryptotriton adelos",Sierra Juarez moss salamander,Thorius adelos,bio/ThoriusAdelos,,bio/Thorius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1386171,,"Sardinella janeiro (Eigenmann, 1894)",,Brazilian sardinella,"Clupea brasiliensis, Clupea janeiro, Sardinella janeiro",Brazilian sardine,Sardinella brasiliensis,bio/SardinellaBrasiliensis,,bio/Sardinella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1390257,,"Spelerpes danielsi Blatchley, 1901",,mountain purple salamander,"Gyrinophilus danielsi, Spelerpes danielsi",Blue Ridge spring salamander,Gyrinophilus porphyriticus danielsi,bio/GyrinophilusPorphyriticusDanielsi,,bio/GyrinophilusPorphyriticus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +1390258,,"Gyrinophilus porphyriticus dunni Mittleman & Jopson, 1941",,Carolina purple salamander,Gyrinophilus dunni,Carolina spring salamander,Gyrinophilus porphyriticus dunni,bio/GyrinophilusPorphyriticusDunni,,bio/GyrinophilusPorphyriticus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +1390262,,"Pseudotriton montanus flavissimus Hallowell, 1856",,Gulf Coast red salamander,Pseudotriton flavissimus,Gulf Coast mud salamander,Pseudotriton montanus flavissimus,bio/PseudotritonMontanusFlavissimus,,bio/PseudotritonMontanus,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +1390265,,"Spelerpes ruber schencki Brimley, 1912",,blackchin red salamander,"Spelerpes schencki, Spelerpes ruber schencki",black-chinned red salamander,Pseudotriton ruber schencki,bio/PseudotritonRuberSchencki,,bio/PseudotritonRuber,dcs:BiologicalTaxonomicRankSubspecies,dcs:BiologicalTaxonomicDivisionVertebrates,True, +1391725,,"Leptolalax gracilis (Guenther, 1872)",,slender litter frog,"Leptobrachium gracilis, Megophrys gracilis, Leptolalax gracilis, Leptobrachium gracile, Megalophrys gracilis",Sarawak slender litter frog,Leptobrachella gracilis,bio/LeptobrachellaGracilis,,bio/Leptobrachella,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1394124,,"Rana anlungensis Liu & Hu, 1973",,Lungtou frog,"Huia anlungensis, Rana anlungensis",Anlung odorous frog,Odorrana anlungensis,bio/OdorranaAnlungensis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1394127,,"Rana kuangwuensis Liu & Hu, 1966",,Kuang-wu Shan frog,"Rana kuangwuensis, Huia kuangwuensis",Kwangwu odorous frog,Odorrana kuangwuensis,bio/OdorranaKuangwuensis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1394129,,"Rana lungshengensis Liu & Wu, 1962",,Lung-shen-hsien frog,"Huia lungshengensis, Rana lungshengensis",Lungshen odorous frog,Odorrana lungshengensis,bio/OdorranaLungshengensis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1394135,,"Rana wuchuanensis Xu, 1983",,Wuchuan frog,"Huia wuchuanensis, Rana wuchuanensis",Wuchuan odorous frog,Odorrana wuchuanensis,bio/OdorranaWuchuanensis,,bio/Odorrana,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1395009,,"Stenatherina panatela (Jordan & Richardson, 1908)",,Panatella hardyhead,"Hypoatherina panatela, Atherina panatela",Panatella silverside,Stenatherina panatela,bio/StenatherinaPanatela,,bio/Stenatherina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1395012,,,,,,,Stenatherina,bio/Stenatherina,,,,,, +1396860,,"Leporinus hypselonotus Gunther, 1868",,high-backed headstander,Leporinus hypselonotus,marbled headstander,Abramites hypselonotus,bio/AbramitesHypselonotus,,bio/Abramites,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1399764,,"Ostorhinchus rueppellii (Guenther, 1859)",,western gobbleguts,Apogon rueppellii,gobbleguts,Ostorhinchus rueppellii,bio/OstorhinchusRueppellii,,bio/Ostorhinchus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1405560,,"Lophius mutilus Alcock, 1894",,smooth angler,Lophius mutilus,smooth goosefish,Lophiodes mutilus,bio/LophiodesMutilus,,bio/Lophiodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1405644,,"Salarias yaeyamaensis Aoyagi, 1954",,Yaeyama clown blenny,Salarias yaeyamaensis,palespotted combtooth blenny,Ecsenius yaeyamaensis,bio/EcseniusYaeyamaensis,,bio/Ecsenius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1405645,,"Tripterygium minutum Gunther, 1877",,minute triplefin,Tripterygium minutum,minute triplefin blenny,Enneapterygius minutus,bio/EnneapterygiusMinutus,,bio/Enneapterygius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1405656,,"Salarius lupus De Vis, 1885",,wolf fangblenny,"Salarius lupus, Salarias lupus",brown sabretooth blenny,Petroscirtes lupus,bio/PetroscirtesLupus,,bio/Petroscirtes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1405661,,"Rhabdoblennius snowi (Fowler, 1928)",,Snow's blenny,Blennius snowi,Snow's rockskipper,Rhabdoblennius snowi,bio/RhabdoblenniusSnowi,,bio/Rhabdoblennius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1408259,,"Oloptum Roser & Hamasha, 2012",,,,,Oloptum,bio/Oloptum,,,,,, +1411154,,"Datnioides pulcher (Kottelat, 1998)",,Siamese tiger perch,Coius pulcher,Siamese tigerfish,Datnioides pulcher,bio/DatnioidesPulcher,,bio/Datnioides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1412109,,,,,,,Sagmariasus,bio/Sagmariasus,,,,,, +1412110,,"Sagmariasus verreauxi (Milne Edwards, 1851)",,packhorse rock lobster,"Palinurus verreauxi, Jasus verreauxi",green rock lobster,Sagmariasus verreauxi,bio/SagmariasusVerreauxi,,bio/Sagmariasus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionInvertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1412449,,,,,,,Hoplopagrus,bio/Hoplopagrus,,,,,, +1412450,,"Hoplopagrus guentherii Gill, 1862",,greenbar snapper,Hoplopagrus guentheri,Mexican barred snapper,Hoplopagrus guentherii,bio/HoplopagrusGuentherii,,bio/Hoplopagrus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1414481,,"Percis schauinslandii Steindachner, 1900",,red-spotted sandperch,Percis schauinslandii,redspotted sandperch,Parapercis schauinslandii,bio/ParapercisSchauinslandii,,bio/Parapercis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1415635,,"Pachyanas chathamica Oliver, 1955",,Chatham Island duck,"Cygnus chathamicus, Anas chathamica",Chatham duck,Pachyanas chathamica,bio/PachyanasChathamica,,bio/Anas,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1421018,,"Raorchestes parvulus (Boulenger, 1893)",,tiny bubble-nest frog,"Pseudophilautus parvulus, Ixalus parvulus, Philautus parvulus, Rhacophorus parvulus",Karin bubble-nest frog,Raorchestes parvulus,bio/RaorchestesParvulus,,bio/Raorchestes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1428451,,"Crossodactylodes bokermanni Peixoto, 1983",,Bokermann's bromeliad frog,"Crossodactylodes sp. MNRJ 34933, Crossodactylodes sp. MNRJ 38412",Bokermann's stream froglet,Crossodactylodes bokermanni,bio/CrossodactylodesBokermanni,,bio/Crossodactylodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1431193,,,,,,,Latonia,bio/Latonia,,,,,, +1431475,,"Gymnapogon vanderbilti (Fowler, 1938)",,tailspot cardinalfish,Acanthapogon vanderbilti,Vanderbilt's cardinalfish,Gymnapogon vanderbilti,bio/GymnapogonVanderbilti,,bio/Gymnapogon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1431494,,"Siphamia roseigaster (Ramsay & Ogilby, 1887)",,pink-breasted siphonfish,Apogon roseigaster,pinkbreast siphonfish,Siphamia roseigaster,bio/SiphamiaRoseigaster,,bio/Siphamia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1431513,,,,,,,Vincentia,bio/Vincentia,,,,,, +1431514,,"Vincentia novaehollandiae (Valenciennes, 1832)",,southern gobbleguts,Apogon novaehollandiae,eastern gobbleguts,Vincentia novaehollandiae,bio/VincentiaNovaehollandiae,,bio/Vincentia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1436200,,,,,,,Ambastaia,bio/Ambastaia,,,,,, +1436202,,"Yasuhikotakia sidthimunki (Klausewitz, 1959)",,dwarf loach,"Yasuhikotakia sidthimunki, Botia sidthimunki",dwarf chain loach,Ambastaia sidthimunki,bio/AmbastaiaSidthimunki,,bio/Ambastaia,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1441476,,"Ptychadena chrysogaster Laurent, 1954",,Rwanda grassland frog,Rana chrysogaster,yellow-bellied ridged frog,Ptychadena chrysogaster,bio/PtychadenaChrysogaster,,bio/Ptychadena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1445676,,"Rhacophorus bimaculatus (Peters, 1867)",,Mindanao flying frog,"Rhacophorus bimaculatus, Leptomantis bimaculatus Peters, 1867, Philautus bimaculatus",Asiatic tree frog,Leptomantis bimaculatus,bio/LeptomantisBimaculatus,,bio/Leptomantis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1446469,,"Ostichthys kaianus (Guenther, 1880)",,Kai Islands squirrelfish,Myripristis kaianus,Kai soldierfish,Ostichthys kaianus,bio/OstichthysKaianus,,bio/Ostichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1453604,,"Pterodroma rupinarum Olson, 1975",,large Saint Helena petrel,Pseudobulweria rupinarum,St. Helena petrel,Pterodroma rupinarum,bio/PterodromaRupinarum,,bio/Pterodroma,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1453815,,"Sphenostoma cristatum Gould, 1838",,crested wedgebill,Sphenostoma cristatum,chirruping wedgebill,Psophodes cristatus,bio/PsophodesCristatus,,bio/Psophodes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1455662,,"Plicofollis platystomus (Day, 1877)",,flat-mouthed catfish,"Tachysurus platystomus, Arius platystomus",flatmouth sea catfish,Plicofollis platystomus,bio/PlicofollisPlatystomus,,bio/Plicofollis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1455677,,"Rhinobatus obtusus Muller & Henle, 1841",,blunt shovel nose ray,"Rhinobatos obtusus, Rhinobatus obtusus",widenose guitarfish,Glaucostegus obtusus,bio/GlaucostegusObtusus,,bio/Glaucostegus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1458430,,"Leptophis punctulatus Gray, 1826",,common tree snake,"Dendrelaphis punctulata, Leptophis punctulatus, Dendrophis punctulatus",green tree snake,Dendrelaphis punctulatus,bio/DendrelaphisPunctulatus,,bio/Dendrelaphis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1459836,,"Serranus argyrogrammicus Valenciennes, 1832",,ornate snapper,Serranus argyrogrammicus,ornate jobfish,Pristipomoides argyrogrammicus,bio/PristipomoidesArgyrogrammicus,,bio/Pristipomoides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1460501,,"Macroscelides micus Dumbacher & Rathbun in Dumbacher, Rathbun, Osborne, Griffin & Eiseb, 2014",,Etendaka round-eared elephant shrew,Macroscelides sp. JPD-2014,Etendaka round-eared sengi,Macroscelides micus,bio/MacroscelidesMicus,,bio/Macroscelides,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionMammals,True,dcs:TaxonTopLevelCategoryEukaryota +1462579,,"Sceloporus unicanthalis Smith, 1937",,Southwestern bunchgrass lizard,Sceloporus scalaris unicanthalis,Southwestern bunch grass lizard,Sceloporus unicanthalis,bio/SceloporusUnicanthalis,,bio/Sceloporus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1462580,,Sceloporus scalaris brownorum Smith et al. 1997,,Brown's bunchgrass lizard,Sceloporus scalaris brownorum,Brown's bunch grass lizard,Sceloporus brownorum,bio/SceloporusBrownorum,,bio/Sceloporus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1462606,,,,,,,Glycine subgen. Soja,bio/GlycineSubgenSoja,,,,,, +1474818,,"Holacanthus venustus Yasuda & Tominaga, 1969",,purple-mask angelfish,"Holacanthus venustus, Paracentropyge venusta, Sumireyakko venustus",purplemask angelfish,Centropyge venusta,bio/CentropygeVenusta,,bio/Centropyge,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1474870,,"Holacanthus arcuatus Gray, 1831",,black bandit angelfish,"Holacanthus arcuatus, Desmoholocanthus Arcuatus",bandit angelfish,Apolemichthys arcuatus,bio/ApolemichthysArcuatus,,bio/Apolemichthys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1475060,,"Pseudacris hypochondriaca (Hallowell, 1854)",,Baja California chorus frog,"Hyla scapularis var. hypochondriaca, Hyliola hypochondriaca, Hyla regilla hypochondriaca",Baja California treefrog,Pseudacris hypochondriaca,bio/PseudacrisHypochondriaca,,bio/Pseudacris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1475061,,"Pseudacris sierra (Jameson, Mackey & Richmond, 1966)",,Sierran chorus frog,"Hyliola sierra, Hyla regilla sierra",Sierran treefrog,Pseudacris sierra,bio/PseudacrisSierra,,bio/Pseudacris,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1479064,,"Correlophus Guichenot, 1866",,,,,Correlophus,bio/Correlophus,,,,,, +1479094,,"Sciurus macrourus Pennant, 1769",,Sri Lankan giant squirrel,Sciurus macrourus,grizzled giant squirrel,Ratufa macroura,bio/RatufaMacroura,,bio/Ratufa,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionRodents,True,dcs:TaxonTopLevelCategoryEukaryota +1480063,,"Pungitius platygaster (Kessler, 1859)",,southern ninespine stickleback,Gasterosteus platygaster,Ukranian stickleback,Pungitius platygaster,bio/PungitiusPlatygaster,,bio/Pungitius,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1485181,,,,,,,Istiompax,bio/Istiompax,,,,,, +1486644,,"Hypsiglena unaocularus Tanner, 1946",,Clarion nightsnake,Hypsiglena ochrorhyncha unaocularus,Islas Revillagigedo nightsnake,Hypsiglena unaocularus,bio/HypsiglenaUnaocularus,,bio/Hypsiglena,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1486652,,,,,,,Parapelophryne,bio/Parapelophryne,,,,,, +1486653,,"Parapelophryne scalpta (Liu & Hu, 1973)",,Hainan flathead toad,"Pelophryne scalpta, Nectophryne scalptus",Hainan little toad,Parapelophryne scalpta,bio/ParapelophryneScalpta,,bio/Parapelophryne,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1496304,,"Broghammerus Hoser, 2004",,,Broghammerus,,Malayopython,bio/Malayopython,,,,,, +1496311,,"Python reticulatus (Schneider, 1801)",,reticulate python,"Boa reticulata, Broghammerus reticulatus, Python reticulatus",reticulated python,Malayopython reticulatus,bio/MalayopythonReticulatus,,bio/Malayopython,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1498493,,Indotyphlops Hedges et al. 2014,,,,South Asian blindsnakes,Indotyphlops,bio/Indotyphlops,,,,,, +1498866,,"Philautus elegans Rao, 1937",,elegant bush frog,Philautus elegans,elegant torrent frog,Micrixalus elegans,bio/MicrixalusElegans,,bio/Micrixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1498878,,"Micrixalus phyllophilus (Jerdon, 1854)",,Nilgiri tropical frog,Limnodytes phyllophila,pink-thighed torrent frog,Micrixalus phyllophilus,bio/MicrixalusPhyllophilus,,bio/Micrixalus,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1499639,,"Pleroma D.Don, 1823",,,,,Pleroma ,bio/Pleroma_Eudicots,,,,,, +1500691,,"Cyclopterus nudus Linnaeus, 1758",,riverine clingfish,"Gobiesox nudus, Cyclopterus nudus",clingfish ,Arcos nudus,bio/ArcosNudus,,bio/Arcos,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1502711,,"Erythranthe Spach, 1840",,,,,Erythranthe,bio/Erythranthe,,,,,, +1502868,,,,,,,Paracentropogon,bio/Paracentropogon,,,,,, +1502869,,"Paracentropogon rubripinnis (Temminck & Schlegel, 1843)",,Japanese redfin waspfish,Apistus rubripinnis,redfin waspfish,Paracentropogon rubripinnis,bio/ParacentropogonRubripinnis,,bio/Paracentropogon,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1502963,,"Squatina argentina (Marini, 1930)",,longfin angelshark,Rhina argentina,Argentine angelshark,Squatina argentina,bio/SquatinaArgentina,,bio/Squatina,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1507498,,,,,,,Eladinea,bio/Eladinea,,,,,, +1508173,,,,,,,Magnadigita,bio/Magnadigita,,,,,, +1508175,,,,,,,Bolitoglossa ,bio/Bolitoglossa_Subgenus,,,,,, +1510417,,"Pyxicephalus Khasianus Anderson, 1871",,southern big-headed frog,"Pyxicephalus Khasianus, Rana laticeps, Rana khasiana, Limnonectes laticeps",Khasi Hills frog,Limnonectes khasianus,bio/LimnonectesKhasianus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1513182,,"Rana macrognathus Boulenger, 1917",,large-headed frog,"Euphlyctis macrognathus, Rana macrognathus",Karin Hills wart frog,Limnonectes macrognathus,bio/LimnonectesMacrognathus,,bio/Limnonectes,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1513809,,"Hyla alvarengai Bokermann, 1956",,Alvarenga's treefrog,Hyla alvarengai,Santa Barbara treefrog,Bokermannohyla alvarengai,bio/BokermannohylaAlvarengai,,bio/Bokermannohyla,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1517487,,,,,,,Boesemania,bio/Boesemania,,,,,, +1517488,,"Johnius microlepis Bleeker, 1858",,Boeseman croaker,Johnius microlepis,smallscale croaker,Boesemania microlepis,bio/BoesemaniaMicrolepis,,bio/Boesemania,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1517489,,,,,,,Novaculops,bio/Novaculops,,,,,, +1517490,,"Novaculops woodi (Jenkins, 1901)",,Wood's razorfish,"Novaculichthys woodi, Xyrichtys woodi",Hawaiian sandy,Novaculops woodi,bio/NovaculopsWoodi,,bio/Novaculops,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1517830,,,,,,,Dryobates,bio/Dryobates,,,,,, +1517834,,"Picus minor Linnaeus, 1758",,Kleinspecht,"Dendrocopos minor, Picus minor, Picoides minor",lesser spotted woodpecker,Dryobates minor,bio/DryobatesMinor,,bio/Dryobates,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1517969,,"Haplochilus annulatus Boulenger, 1915",,banded panchax,"Pseudepiplatys annulatus, Haplochilus annulatus",clown killifish,Epiplatys annulatus,bio/EpiplatysAnnulatus,,bio/Epiplatys,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1521260,,"Lycopodiopsida Bartl., 1830",club-mosses,club mosses,"Lycopodiophyta, Lycopodiidae",clubmosses,Lycopodiopsida,bio/Lycopodiopsida,,bio/Tracheophyta,dcs:BiologicalTaxonomicRankClass,dcs:BiologicalTaxonomicDivisionPlantsAndFungi,True, +1522394,,"Serranus aurantius Valenciennes, 1828",,golden rockcod,Serranus aurantius,golden hind,Cephalopholis aurantia,bio/CephalopholisAurantia,,bio/Cephalopholis,dcs:BiologicalTaxonomicRankSpecies,dcs:BiologicalTaxonomicDivisionVertebrates,True,dcs:TaxonTopLevelCategoryEukaryota +1523025,,"Leucocarbo Bonaparte, 1857",,,,,Leucocarbo,bio/Leucocarbo,,,,,, +1523891,,,,,,,Haemorhous,bio/Haemorhous,,,,,, +1526411,,,,,,,Mareca,bio/Mareca,,,,,, +1527435,,,,,,,Hynobius ,bio/Hynobius_Subgenus,,,,,, +1527437,,,,,,,Satobius,bio/Satobius,,,,,, +1532884,,"Sapajus Kerr, 1792",,,,,Sapajus,bio/Sapajus,,,,,, +1534316,,,,,,,Leptobrachella,bio/Leptobrachella,,,,,, +1574408,,"Cervus canadensis Erxleben, 1777",,wapiti,,,Cervus canadensis,bio/CervusCanadensis,,,,,, +1585921,,,,,,,Chikila,bio/Chikila,,,,,, +1592217,,"Horornis Hodgson, 1845",,,,,Horornis,bio/Horornis,,,,,, +1604642,,,,,,,Fibramia,bio/Fibramia,,,,,, +1647189,,,,,,siskins,Spinus,bio/Spinus,,,,,, +1659744,,,,,,,Humerana,bio/Humerana,,,,,, +1659745,,,,,,,Pulchrana,bio/Pulchrana,,,,,, +1659746,,,,,,,Papurana,bio/Papurana,,,,,, +1659747,,,,,,,Sylvirana,bio/Sylvirana,,,,,, +1659749,,"Abavorana Oliver, Prendini, Kraus & Raxworthy, 2015",,,,,Abavorana,bio/Abavorana,,,,,, +1659765,,"Indosylvirana Oliver, Prendini, Kraus & Raxworthy, 2015",,,,,Indosylvirana,bio/Indosylvirana,,,,,, +1664462,,"Psittacara Vigors, 1825",,,,,Psittacara,bio/Psittacara,,,,,, +1709198,,,,,,,Isthmura,bio/Isthmura,,,,,, +1729444,,,,,,,Hydrophylax ,bio/Hydrophylax_FrogsToads,,,,,, +1743244,,,,,,,Arizelocichla,bio/Arizelocichla,,,,,, +1756210,,,,,,,Pternistis,bio/Pternistis,,,,,, +1780241,,,,,,,Monacoa,bio/Monacoa,,,,,, +1795275,,,,,,,Alcalus,bio/Alcalus,,,,,, +1798711,,,,,,,Cyanobacteriota/Melainabacteria group,bio/CyanobacteriotamelainabacteriaGroup,,,,,, +1812035,,,,,,,Plecturocebus,bio/Plecturocebus,,,,,, +1862675,,,,,"Amietophrynus, Bufo (Amietophrynus)",,Sclerophrys,bio/Sclerophrys,,,,,, +1897773,,"Chloris Cuvier, 1800",,,,,Chloris ,bio/Chloris_Birds,,,,,, +1926313,,"Dryophytes Fitzinger, 1843",,,,,Dryophytes,bio/Dryophytes,,,,,, +1930104,,"Brevitrygon Last, Naylor & Manjaji-Matsumoto, 2016",,,,,Brevitrygon,bio/Brevitrygon,,,,,, +1930205,,,,,,,Curruca,bio/Curruca,,,,,, +1935872,,,,,,,Planiliza,bio/Planiliza,,,,,, +1935921,,"Parachelon Durand, Chen, Shen, Fu & Borsa, 2012",,,,,Parachelon,bio/Parachelon,,,,,, +1960645,,,,,,,Sholicola,bio/Sholicola,,,,,, +1960649,,"Notamacropus Dawson & Flannery, 1985",,Bennett's wallaby,,,Notamacropus,bio/Notamacropus,,,,,, +1965096,,,,,,,Callithrix ,bio/Callithrix_Subgenus,,,,,, +1965102,,,,,,,Mico,bio/Mico,,,,,, +1971489,,,,,,,Cephalopachus,bio/Cephalopachus,,,,,, +1987911,,,,,,,Zeugodacus ,bio/Zeugodacus_Subgenus,,,,,, +2013023,,,,,,,Larvivora,bio/Larvivora,,,,,, +2023954,,,,,,,Boana,bio/Boana,,,,,, +2045281,,,,,,,Aeorestes,bio/Aeorestes,,,,,, +2054187,,,,,,,Nidirana,bio/Nidirana,,,,,, +2059839,,,,,,,Allochrocebus,bio/Allochrocebus,,,,,, +2067478,,,,,,,Amnirana,bio/Amnirana,,,,,, +2070548,,,,,,,Rhencus,bio/Rhencus,,,,,, +2070549,,,,,,,Rhonciscus,bio/Rhonciscus,,,,,, +2079297,,,,,,,Urva,bio/Urva,,,,,, +2083494,,,,,,,Vieja,bio/Vieja,,,,,, +2116695,,,,,,,Microkayla,bio/Microkayla,,,,,, +2182372,,,,,,,Osphranter,bio/Osphranter,,,,,, +2212484,,,,,,,Pateobatis,bio/Pateobatis,,,,,, +2267536,,,,,,,Chersobius,bio/Chersobius,,,,,, +2358450,,,,,,,Chelonodontops,bio/Chelonodontops,,,,,, +2502001,,,,,,,Artemisiospiza,bio/Artemisiospiza,,,,,, +2545484,,,,,,,Minervarya,bio/Minervarya,,,,,, +2570238,,"Alkekengi Mill., 1754",,,,,Alkekengi,bio/Alkekengi,,,,,, +2602927,,,,,,,Paratapes,bio/Paratapes,,,,,, +2608109,,"Haptista Cavalier-Smith, 2003",,,,,Haptista,bio/Haptista,,,,,, +2681187,,,,,,,Leontocebus,bio/Leontocebus,,,,,, +2715641,,,,,,,Granatina,bio/Granatina,,,,,, +2725783,,,,,,,Zhangixalus,bio/Zhangixalus,,,,,, +2731430,,,,,,,Pseudorana,bio/Pseudorana,,,,,, +2736677,,,,,,,Smutsia,bio/Smutsia,,,,,, +2753819,,,,,,,Craspedocephalus,bio/Craspedocephalus,,,,,, +2763318,,,,,,,Arthroleptides,bio/Arthroleptides,,,,,, +2777048,,,,,,,Fimbriaphyllia,bio/Fimbriaphyllia,,,,,, +2777057,,"Silene sect. Lychnis (L.) Greuter, 1995",,,,,Silene sect. Lychnis,bio/SileneSectLychnis,,,,,, +2777074,,"Silene sect. Behenantha Otth, 1824",,,,,Silene sect. Behenantha,bio/SileneSectBehenantha,,,,,, +2777416,,,,,"Ranoidea Tschudi, 1838",,Ranoidea ,bio/Ranoidea_Genus,,,,,, +2778563,,,,,,,Afronycteris,bio/Afronycteris,,,,,, +2782528,,,,,,,Leptomantis,bio/Leptomantis,,,,,, +2786935,,,,,,,Chalcorana,bio/Chalcorana,,,,,, +2819854,,,,,,,Galegeeska,bio/Galegeeska,,,,,, +2819877,,,,,,,Lophochroa,bio/Lophochroa,,,,,, +2821307,,,,,,,Chlorodrepanis,bio/Chlorodrepanis,,,,,, +2821309,,,,,,,Coloeus,bio/Coloeus,,,,,, +2823197,,,,,,,Spatula,bio/Spatula,,,,,, +2823206,,,,,,,Thectocercus,bio/Thectocercus,,,,,, +2823303,,,,,,,Tarsiger,bio/Tarsiger,,,,,, +2839957,,,,,,,Phoeniconaias,bio/Phoeniconaias,,,,,, +2841271,,,,,,,Testudinata,bio/Testudinata,,,,,, +2854839,,,,,,,Heraclides,bio/Heraclides,,,,,, +2854840,,,,,,,Pterourus,bio/Pterourus,,,,,, +2860737,,,,,,,Wijayarana,bio/Wijayarana,,,,,, +2861789,,,,,,,Cabalus,bio/Cabalus,,,,,, +2902005,,,,,Neovison,,Neogale,bio/Neogale,,,,,, +2934977,,"Gonopterodendron (Griseb.) Godoy-Burki, 2018",,,Bulnesia sect. Gonopterodendron,,Gonopterodendron,bio/Gonopterodendron,,,,,, +3019017,,,,,,,Nipponoluciola,bio/Nipponoluciola,,,,,, +3025441,,,,,,,Rubricatochromis,bio/Rubricatochromis,,,,,, +3048151,,,,,,,Avibirnavirus gumboroense,bio/AvibirnavirusGumboroense,,,,,, +3050134,,,,,,,Macavirus alcelaphinegamma1,bio/MacavirusAlcelaphinegamma1,,,,,, +3050250,,,,,,,Lymphocryptovirus callitrichinegamma3,bio/LymphocryptovirusCallitrichinegamma3,,,,,, +3050252,,,,,,,Varicellovirus caprinealpha1,bio/VaricellovirusCaprinealpha1,,,,,, +3050257,,,,,,,Varicellovirus cercopithecinealpha9,bio/VaricellovirusCercopithecinealpha9,,,,,, +3050276,,,,,,,Varicellovirus equidalpha1,bio/VaricellovirusEquidalpha1,,,,,, +3050278,,,,,,,Varicellovirus equidalpha4,bio/VaricellovirusEquidalpha4,,,,,, +3050281,,,,,,,Percavirus equidgamma2,bio/PercavirusEquidgamma2,,,,,, +3050287,,,,,,,Mardivirus gallidalpha2,bio/MardivirusGallidalpha2,,,,,, +3050292,,,,,,,Simplexvirus humanalpha1,bio/SimplexvirusHumanalpha1,,,,,, +3050294,,,,,,,Varicellovirus humanalpha3,bio/VaricellovirusHumanalpha3,,,,,, +3050299,,,,,,,Lymphocryptovirus humangamma4,bio/LymphocryptovirusHumangamma4,,,,,, +3050301,,,,,,,Ictavirus ictaluridallo1,bio/IctavirusIctaluridallo1,,,,,, +3050305,,,,,,,Simplexvirus macacinealpha1,bio/SimplexvirusMacacinealpha1,,,,,, +3050308,,,,,,,Cytomegalovirus macacinebeta3,bio/CytomegalovirusMacacinebeta3,,,,,, +3050315,,,,,,,Rhadinovirus macacinegamma5,bio/RhadinovirusMacacinegamma5,,,,,, +3050320,,,,,,,Mardivirus meleagridalpha1,bio/MardivirusMeleagridalpha1,,,,,, +3050327,,,,,,,Rhadinovirus muridgamma4,bio/RhadinovirusMuridgamma4,,,,,, +3050334,,,,,,,Cytomegalovirus paninebeta2,bio/CytomegalovirusPaninebeta2,,,,,, +3052046,,,,,Ungulate bocaparvovirus 2,,Bocaparvovirus ungulate2,bio/BocaparvovirusUngulate2,,,,,, +3162714,,"Osteogaster Cope, 1894",,,,,Osteogaster,bio/Osteogaster,,,,,, diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy_schema_enum.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy_schema_enum.mcf new file mode 100644 index 0000000000..214c4c0a1b --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/ncbi_taxonomy_schema_enum.mcf @@ -0,0 +1,131 @@ +# This schema file is generated by format_ncbi_taxonomy.py +Node: dcid:BiologicalTaxonomicDivisionEnum +name: "BiologicalTaxonomicDivisionEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "These are broad biological divisions that are commonly used to divide living organisms." + +Node: dcid:BiologicalTaxonomicDivisionBacteria +name: "Bacteria" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "BCT" + +Node: dcid:BiologicalTaxonomicDivisionEnvironmentalSamples +name: "Environmental Samples" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "ENV" +description: "Anonymous sequences cloned directly from the environment." + +Node: dcid:BiologicalTaxonomicDivisionInvertebrates +name: "Invertebrates" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "INV" + +Node: dcid:BiologicalTaxonomicDivisionMammals +name: "Mammals" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "MAM" + +Node: dcid:BiologicalTaxonomicDivisionPhages +name: "Phages" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "PHG" + +Node: dcid:BiologicalTaxonomicDivisionPlantsAndFungi +name: "Plants And Fungi" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "PLN" + +Node: dcid:BiologicalTaxonomicDivisionPrimates +name: "Primates" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "PRI" + +Node: dcid:BiologicalTaxonomicDivisionRodents +name: "Rodents" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "ROD" + +Node: dcid:BiologicalTaxonomicDivisionSyntheticAndChimeric +name: "Synthetic And Chimeric" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "SYN" + +Node: dcid:BiologicalTaxonomicDivisionUnassigned +name: "Unassigned" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "UNA" +description: "No species nodes should inherit this division assignment." + +Node: dcid:BiologicalTaxonomicDivisionVertebrates +name: "Vertebrates" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "VRT" + +Node: dcid:BiologicalTaxonomicDivisionViruses +name: "Viruses" +typeOf: dcs:BiologicalTaxonomicDivisionEnum +abbreviation: "VRL" + +Node: dcid:BiologicalHostEnum +name: "BiologicalHostEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." + +Node: dcid:BiologicalHostBacteria +name: "Bacteria" +typeOf: dcs:BiologicalHostEnum + +Node: dcid:BiologicalHostHuman +name: "Human" +typeOf: dcs:BiologicalHostEnum + +Node: dcid:BiologicalHostLandPlants +name: "Land Plants" +typeOf: dcs:BiologicalHostEnum + +Node: dcid:BiologicalHostVertebrates +name: "Vertebrates" +typeOf: dcs:BiologicalHostEnum + +Node: dcid:BiologicalTaxonomicRankEnum +name: "BiologicalTaxonomicRankEnum" +typeOf: schema:Class +subClassOf: schema:Enumeration +description: "In biology, taxonomic rank is the relative level of a group of organisms (a taxon) in an ancestral or hereditary hierarchy. A common system of biological classification (taxonomy) consists of species, genus, family, order, class, phylum, kingdom, and domain. However, todays taxonomic rankings have expanded beyond these seven basic classifications." +descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" + + +Node: dcid:BiologicalTaxonomicRankClade +name: "Clade" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankClass +name: "Class" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankNoRank +name: "No Rank" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankOrder +name: "Order" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankPhylum +name: "Phylum" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankSpecies +name: "Species" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankSubspecies +name: "Subspecies" +typeOf: dcs:BiologicalTaxonomicRankEnum + +Node: dcid:BiologicalTaxonomicRankVarietas +name: "Varietas" +typeOf: dcs:BiologicalTaxonomicRankEnum + diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/tax_id_dcid_mapping.txt b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/tax_id_dcid_mapping.txt new file mode 100644 index 0000000000..5ae239620f --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/expected_output/tax_id_dcid_mapping.txt @@ -0,0 +1,4182 @@ +tax_id,dcid +561,bio/Escherichia +562,bio/EscherichiaColi +786,bio/RickettsiaAkari +950,bio/NeorickettsiaRisticii +1117,bio/Cyanobacteriota +2706,bio/Citrus +2711,bio/CitrusSinensis +2830,bio/Haptophyta +2864,bio/Dinophyceae +3035,bio/Euglenida +3193,bio/Embryophyta +3195,bio/Marchantiophyta +3310,bio/Ginkgo +3311,bio/GinkgoBiloba +3350,bio/PinusThunbergii +3445,bio/Ranunculus +3447,bio/RanunculusAcris +3464,bio/CapnoidesSempervirens +3484,bio/Humulus +3485,bio/HumulusJaponicus +3504,bio/Betula +3505,bio/BetulaPendula +3511,bio/Quercus +3512,bio/QuercusRubra +3526,bio/Phytolacca +3527,bio/PhytolaccaAmericana +3528,bio/PhytolaccaAcinosa +3560,bio/OxybasisRubra +3564,bio/Amaranthus +3616,bio/Fagopyrum +3620,bio/Rheum +3621,bio/RheumRhabarbarum +3630,bio/Abutilon +3631,bio/AbutilonTheophrasti +3633,bio/Gossypium +3635,bio/GossypiumHirsutum +3653,bio/Citrullus +3654,bio/CitrullusLanatus +3657,bio/CucumisMeloVarConomon +3658,bio/CucumisMeloVarCantalupo +3667,bio/Lagenaria +3668,bio/LagenariaSiceraria +3669,bio/Luffa +3670,bio/LuffaAegyptiaca +3689,bio/Populus +3694,bio/PopulusTrichocarpa +3701,bio/Arabidopsis +3702,bio/ArabidopsisThaliana +3711,bio/BrassicaRapa +3712,bio/BrassicaOleracea +3713,bio/BrassicaOleraceaVarViridis +3714,bio/BrassicaOleraceaVarAlboglabra +3726,bio/RaphanusSativus +3727,bio/Sinapis +3728,bio/SinapisAlba +3734,bio/Moringa +3735,bio/MoringaOleifera +3749,bio/Malus +3750,bio/MalusDomestica +3754,bio/Prunus +3755,bio/PrunusDulcis +3766,bio/Pyrus +3815,bio/Abrus_Eudicots +3816,bio/AbrusPrecatorius +3847,bio/GlycineMax +3865,bio/Leucaena +3866,bio/LeucaenaLeucocephala +3869,bio/Lupinus +3878,bio/MedicagoSativaSubspFalcata +3879,bio/MedicagoSativa +3893,bio/PuerariaMontanaVarLobata +3901,bio/Ulex +3902,bio/UlexEuropaeus +3913,bio/Vigna +3914,bio/VignaAngularis +3915,bio/VignaMungo +3916,bio/VignaRadiataVarRadiata +3982,bio/Manihot +3983,bio/ManihotEsculenta +3984,bio/Mercurialis +3986,bio/MercurialisAnnua +4057,bio/Catharanthus +4058,bio/CatharanthusRoseus +4059,bio/Rauvolfia +4060,bio/RauvolfiaSerpentina +4074,bio/Datura +4075,bio/DaturaInoxia +4107,bio/Solanum +4113,bio/SolanumTuberosum +4119,bio/Ipomoea +4120,bio/IpomoeaBatatas +4150,bio/Antirrhinum +4151,bio/AntirrhinumMajus +4155,bio/ErythrantheGuttata +4181,bio/Sesamum +4182,bio/SesamumIndicum +4211,bio/Ambrosia +4212,bio/AmbrosiaArtemisiifolia +4229,bio/Guizotia +4230,bio/GuizotiaAbyssinica +4398,bio/Liquidambar +4400,bio/LiquidambarStyraciflua +4415,bio/Nuphar +4455,bio/Alocasia +4456,bio/AlocasiaMacrorrhizos +4459,bio/Colocasia_Monocots +4460,bio/ColocasiaEsculenta +4501,bio/Bromus +4513,bio/HordeumVulgare +4530,bio/OryzaSativa +4557,bio/Sorghum +4558,bio/SorghumBicolor +4564,bio/Triticum +4565,bio/TriticumAestivum +4577,bio/ZeaMays +4583,bio/Cenchrus +4640,bio/Musa +4641,bio/MusaAcuminata +4701,bio/Scilla +4783,bio/Phytophthora +4787,bio/PhytophthoraInfestans +4792,bio/PhytophthoraNicotianae +4930,bio/Saccharomyces +4932,bio/SaccharomycesCerevisiae +5022,bio/PlenodomusLingam +5100,bio/Amorphotheca +5101,bio/AmorphothecaResinae +5230,bio/Auricularia +5320,bio/Pleurotus +5322,bio/PleurotusOstreatus +6115,bio/Metridium +6116,bio/MetridiumSenile +6202,bio/Taenia +6204,bio/TaeniaSolium +6220,bio/Cerebratulus +6221,bio/CerebratulusLacteus +6264,bio/Toxocara +6266,bio/ToxocaraCati +6270,bio/Pseudoterranova +6271,bio/PseudoterranovaDecipiens +6286,bio/Dirofilaria +6287,bio/DirofilariaImmitis +6324,bio/Bursaphelenchus +6326,bio/BursaphelenchusXylophilus +6343,bio/Arenicola +6344,bio/ArenicolaMarina +6393,bio/Eisenia_SegmentedWorms +6396,bio/EiseniaFetida +6452,bio/Haliotis +6454,bio/HaliotisRufescens +6467,bio/Tegula +6573,bio/MizuhopectenYessoensis +6582,bio/Spisula +6584,bio/SpisulaSolidissima +6586,bio/Ensis +6587,bio/EnsisMinor +6593,bio/Macrocallista +6594,bio/MacrocallistaNimbosa +6630,bio/Nototodarus +6687,bio/PenaeusMonodon +6689,bio/PenaeusVannamei +6714,bio/Astacus +6717,bio/AstacusLeptodactylus +6734,bio/Panulirus +6740,bio/Paralithodes +6741,bio/ParalithodesCamtschaticus +6758,bio/Carcinus +6759,bio/CarcinusMaenas +6847,bio/Carcinoscorpius +6848,bio/CarcinoscorpiusRotundicauda +6851,bio/Tachypleus +6852,bio/TachypleusGigas +6923,bio/Latrodectus +6924,bio/LatrodectusMactans +6940,bio/Boophilus +6941,bio/RhipicephalusMicroplus +6944,bio/Ixodes +6945,bio/IxodesScapularis +6968,bio/Sympetrum +7006,bio/Romalea +7007,bio/RomaleaMicroptera +7008,bio/Schistocerca +7011,bio/SchistocercaNitens +7045,bio/Sitophilus +7051,bio/NipponoluciolaCruciata +7090,bio/Bombyx +7091,bio/BombyxMori +7097,bio/Malacosoma +7098,bio/MalacosomaNeustria +7112,bio/Helicoverpa +7113,bio/HelicoverpaZea +7115,bio/Pieris_Butterflies +7116,bio/PierisBrassicae +7118,bio/Antheraea +7119,bio/AntheraeaPernyi +7126,bio/Samia +7127,bio/SamiaCynthia +7129,bio/Manduca +7130,bio/ManducaSexta +7140,bio/Choristoneura +7141,bio/ChoristoneuraFumiferana +7145,bio/Papilio +7160,bio/AedesAlbopictus +7175,bio/CulexPipiens +7374,bio/Lucilia_Flies +7443,bio/Vespa +7448,bio/VespaSimillimaXanthoptera +7459,bio/Apis +7460,bio/ApisMellifera +7461,bio/ApisCerana +7462,bio/ApisDorsata +7463,bio/ApisFlorea +7506,bio/Mantis +7507,bio/MantisReligiosa +7610,bio/Pisaster +7612,bio/PisasterOchraceus +7659,bio/Psammechinus +7660,bio/PsammechinusMiliaris +7691,bio/Stichopus +7718,bio/Ciona +7719,bio/CionaIntestinalis +7754,bio/Mordacia +7755,bio/MordaciaMordax +7763,bio/Eptatretus +7765,bio/EptatretusStoutii +7786,bio/Torpedo +7806,bio/Carcharhinus +7822,bio/Sphyrna +7827,bio/Poroderma +7833,bio/Echinorhinus +7851,bio/Alopias +7852,bio/AlopiasVulpinus +7856,bio/Notorynchus +7857,bio/NotorynchusCepedianus +7861,bio/Rhinobatos +7872,bio/Hydrolagus +7873,bio/HydrolagusColliei +7901,bio/Acipenser +7902,bio/AcipenserGueldenstaedtii +7912,bio/Polyodon +7913,bio/PolyodonSpathula +7916,bio/Lepisosteus +7935,bio/Anguilla +7936,bio/AnguillaAnguilla +7942,bio/Conger +7943,bio/CongerMyriaster +7945,bio/Muraenesox +7946,bio/MuraenesoxCinereus +7954,bio/Danio +7955,bio/DanioRerio +7956,bio/Carassius +7963,bio/Hypophthalmichthys +7965,bio/HypophthalmichthysNobilis +7972,bio/Ictiobus +7973,bio/IctiobusBubalus +7983,bio/Misgurnus +7993,bio/Astyanax +7994,bio/AstyanaxMexicanus +8000,bio/Pangasius +8001,bio/PangasiusPangasius +8004,bio/Electrophorus +8005,bio/ElectrophorusElectricus +8016,bio/Oncorhynchus +8017,bio/OncorhynchusGorbuscha +8020,bio/OncorhynchusMasou +8028,bio/Salmo +8033,bio/Salvelinus +8034,bio/SalvelinusLeucomaenis +8048,bio/Gadus +8059,bio/Pollachius +8060,bio/PollachiusVirens +8062,bio/Merluccius +8063,bio/MerlucciusMerluccius +8077,bio/Fundulus +8078,bio/FundulusHeteroclitus +8089,bio/Oryzias +8090,bio/OryziasLatipes +8095,bio/Myoxocephalus +8096,bio/MyoxocephalusAenaeus +8097,bio/MyoxocephalusScorpius +8127,bio/OreochromisMossambicus +8139,bio/Oreochromis +8158,bio/Caranx +8172,bio/Pagrus +8173,bio/PagrusPagrus +8174,bio/Sparus +8175,bio/SparusAurata +8176,bio/Acanthopagrus +8186,bio/Lates +8187,bio/LatesCalcarifer +8190,bio/Mugil +8196,bio/Lycodes +8197,bio/LycodesPolaris +8199,bio/ZoarcesAmericanus +8203,bio/Anarhichas +8204,bio/AnarhichasLupus +8207,bio/Notothenia +8225,bio/Euthynnus +8226,bio/KatsuwonusPelamis +8227,bio/EuthynnusAffinis +8234,bio/Thunnus +8237,bio/ThunnusThynnus +8238,bio/ThunnusOrientalis +8254,bio/Paralichthys +8255,bio/ParalichthysOlivaceus +8257,bio/Limanda +8283,bio/Leuciscus +8284,bio/SqualiusCephalus +8285,bio/Pardachirus +8286,bio/PardachirusPavoninus +8295,bio/Ambystoma +8305,bio/AmbystomaTigrinum +8311,bio/Amphiuma +8313,bio/AmphiumaTridactylum +8315,bio/Notophthalmus +8316,bio/NotophthalmusViridescens +8317,bio/Pleurodeles +8319,bio/PleurodelesWaltl +8320,bio/Taricha +8321,bio/TarichaGranulosa +8322,bio/Triturus +8323,bio/TriturusCristatus +8324,bio/LissotritonVulgaris +8325,bio/TriturusKarelinii +8326,bio/TriturusCarnifex +8329,bio/Cynops +8330,bio/CynopsPyrrhogaster +8335,bio/Plethodon +8341,bio/SirenIntermedia +8344,bio/Bombina +8350,bio/Discoglossus +8354,bio/XenopusBorealis +8355,bio/XenopusLaevis +8361,bio/Hymenochirus +8363,bio/Silurana +8364,bio/XenopusTropicalis +8366,bio/Uperoleia +8368,bio/UperoleiaRugosa +8370,bio/Litoria +8371,bio/RanoideaAurea +8373,bio/Crinia +8377,bio/Physalaemus +8383,bio/Bufo +8384,bio/BufoBufo +8386,bio/RhinellaMarina +8387,bio/BufoJaponicus +8388,bio/InciliusValliceps +8392,bio/Phyllomedusa +8395,bio/PhyllomedusaSauvagii +8400,bio/AquaranaCatesbeiana +8403,bio/PelophylaxPerezi +8406,bio/PelophylaxRidibundus +8409,bio/PelophylaxNigromaculatus +8410,bio/GlandiranaRugosa +8419,bio/Gastrotheca +8420,bio/GastrothecaRiobambae +8421,bio/Hyla +8425,bio/SooglossusThomasseti +8428,bio/Gastrophryne +8438,bio/Ascaphus +8439,bio/AscaphusTruei +8442,bio/Alytes +8443,bio/AlytesObstetricans +8459,bio/Testudines +8466,bio/Caretta +8467,bio/CarettaCaretta +8468,bio/Chelonia +8469,bio/CheloniaMydas +8471,bio/Lepidochelys +8472,bio/LepidochelysKempii +8474,bio/Chelydra +8475,bio/ChelydraSerpentina +8484,bio/Malaclemys +8485,bio/MalaclemysTerrapin +8497,bio/Caiman +8499,bio/CaimanCrocodilus +8500,bio/Crocodylus +8507,bio/Sphenodon +8508,bio/SphenodonPunctatus +8516,bio/Iguana +8517,bio/IguanaIguana +8518,bio/Sceloporus +8523,bio/Lacerta +8556,bio/Varanus +8558,bio/VaranusAlbigularis +8568,bio/Tarentola +8569,bio/TarentolaMauritanica +8579,bio/Elaphe +8583,bio/Natrix +8584,bio/NatrixTessellata +8604,bio/Acanthophis +8605,bio/AcanthophisAntarcticus +8627,bio/Laticauda +8630,bio/LaticaudaLaticaudata +8631,bio/LaticaudaSemifasciata +8633,bio/CalliophisBivirgatus +8634,bio/Micrurus +8635,bio/MicrurusNigrocinctus +8637,bio/MicrurusFulvius +8638,bio/Naja +8656,bio/NajaAtra +8657,bio/NajaOxiana +8661,bio/Notechis +8663,bio/NotechisScutatus +8669,bio/Pseudechis +8670,bio/PseudechisAustralis +8682,bio/HydrophisSchistosus +8683,bio/Hydrophis +8688,bio/HydrophisPlaturus +8691,bio/Bitis +8693,bio/BitisCaudalis +8695,bio/BitisNasicornis +8703,bio/Vipera +8714,bio/GloydiusHalys +8721,bio/Bothrops +8723,bio/BothropsInsularis +8725,bio/BothropsAtrox +8731,bio/CrotalusDurissus +8732,bio/CrotalusDurissusTerrificus +8764,bio/Trimeresurus +8765,bio/TrimeresurusAlbolabris +8767,bio/CraspedocephalusGramineus +8769,bio/OvophisOkinavensis +8786,bio/Casuarius +8787,bio/CasuariusCasuarius +8796,bio/Rhea +8797,bio/RheaAmericana +8800,bio/Struthio +8801,bio/StruthioCamelus +8812,bio/Megalapteryx +8813,bio/MegalapteryxDidinus +8835,bio/Anas +8838,bio/MarecaPenelope +8839,bio/AnasPlatyrhynchos +8842,bio/Anser +8843,bio/AnserAnser +8845,bio/AnserCygnoides +8854,bio/Cairina +8855,bio/CairinaMoschata +8859,bio/Chloephaga +8861,bio/ChloephagaPicta +8867,bio/Cygnus +8870,bio/Dendrocygna +8871,bio/DendrocygnaArborea +8872,bio/DendrocygnaArcuata +8873,bio/DendrocygnaAutumnalis +8874,bio/DendrocygnaBicolor +8875,bio/DendrocygnaEytoni +8876,bio/DendrocygnaViduata +8883,bio/Oxyura +8885,bio/OxyuraVittata +8894,bio/Apus +8895,bio/ApusApus +8909,bio/VanellusSpinosus +8911,bio/Larus +8918,bio/Calidris +8931,bio/Columba +8932,bio/ColumbaLivia +8944,bio/Eudynamys +8945,bio/EudynamysScolopaceus +8956,bio/Accipiter +8957,bio/AccipiterGentilis +8958,bio/Aegypius +8959,bio/AegypiusMonachus +8963,bio/Circus +8964,bio/CircusAeruginosus +8965,bio/Gyps +8972,bio/Polyboroides +8973,bio/PolyboroidesRadiatus +9001,bio/Centrocercus +9002,bio/CentrocercusUrophasianus +9013,bio/Colinus +9014,bio/ColinusVirginianus +9016,bio/Cyrtonyx +9017,bio/CyrtonyxMontezumae +9018,bio/Francolinus +9019,bio/FrancolinusPondicerianus +9020,bio/PternistisAfer +9030,bio/Gallus +9031,bio/GallusGallus +9041,bio/Lophura +9043,bio/LophuraEdwardsi +9051,bio/Perdix +9052,bio/PerdixPerdix +9058,bio/Polyplectron +9059,bio/PolyplectronBicalcaratum +9062,bio/Syrmaticus +9067,bio/SyrmaticusSoemmerringii +9077,bio/Alectoris +9095,bio/Crossoptilon +9104,bio/Arborophila +9105,bio/ArborophilaTorqueola +9114,bio/Grus +9124,bio/Gallirallus +9134,bio/Serinus +9135,bio/SerinusCanaria +9151,bio/DrepanornisAlbertisi +9159,bio/Passer +9160,bio/PasserMontanus +9181,bio/Phylloscopus +9186,bio/Turdus +9207,bio/Phalacrocorax +9209,bio/PhalacrocoraxCarbo +9210,bio/PhalacrocoraxSulcirostris +9216,bio/Phoenicopterus +9225,bio/Ara +9226,bio/AraArarauna +9227,bio/Psittacula +9228,bio/PsittaculaKrameri +9235,bio/Eudyptes +9247,bio/Turnix +9248,bio/TurnixSylvaticus +9257,bio/Ornithorhynchus +9258,bio/OrnithorhynchusAnatinus +9260,bio/Tachyglossus +9261,bio/TachyglossusAculeatus +9266,bio/Didelphis +9267,bio/DidelphisVirginiana +9274,bio/Thylacinus +9275,bio/ThylacinusCynocephalus +9288,bio/Murexia +9298,bio/Pseudantechinus +9300,bio/Sminthopsis +9302,bio/SminthopsisMacroura +9309,bio/Potorous +9310,bio/PotorousTridactylus +9314,bio/OsphranterAntilopinus +9319,bio/OsphranterRobustus +9324,bio/Petrogale +9332,bio/Pseudocheirus +9333,bio/PseudocheirusPeregrinus +9336,bio/Trichosurus +9337,bio/TrichosurusVulpecula +9353,bio/Bradypus +9355,bio/BradypusVariegatus +9367,bio/Atelerix +9368,bio/AtelerixAlbiventris +9370,bio/Echinops_Placentals +9371,bio/EchinopsTelfairi +9377,bio/Suncus +9378,bio/SuncusMurinus +9386,bio/Blarina +9387,bio/BlarinaBrevicauda +9394,bio/Tupaia +9395,bio/TupaiaGlis +9399,bio/Cynopterus +9400,bio/CynopterusSphinx +9410,bio/Macroderma +9411,bio/MacrodermaGigas +9416,bio/Artibeus +9425,bio/Tonatia +9426,bio/TonatiaBidens +9429,bio/Desmodus +9430,bio/DesmodusRotundus +9432,bio/Miniopterus +9433,bio/MiniopterusSchreibersii +9434,bio/Myotis +9435,bio/MyotisVelifer +9462,bio/Galago +9463,bio/OtolemurCrassicaudatus +9477,bio/CephalopachusBancanus +9483,bio/CallithrixJacchus +9486,bio/Saguinus +9487,bio/LeontocebusFuscicollis +9488,bio/SaguinusMystax +9494,bio/Callimico +9495,bio/CallimicoGoeldii +9499,bio/Alouatta +9503,bio/AlouattaSeniculus +9504,bio/Aotus_Primates +9505,bio/AotusTrivirgatus +9506,bio/Ateles +9513,bio/Cebus +9514,bio/CebusAlbifrons +9515,bio/SapajusApella +9516,bio/CebusCapucinus +9518,bio/Lagothrix +9519,bio/LagothrixLagotricha +9520,bio/Saimiri +9521,bio/SaimiriSciureus +9523,bio/PlecturocebusMoloch +9529,bio/Cercocebus +9530,bio/CercocebusTorquatus +9533,bio/Cercopithecus +9534,bio/ChlorocebusAethiops +9535,bio/CercopithecusCephus +9537,bio/Erythrocebus +9538,bio/ErythrocebusPatas +9539,bio/Macaca +9541,bio/MacacaFascicularis +9544,bio/MacacaMulatta +9545,bio/MacacaNemestrina +9546,bio/MacacaSylvanus +9552,bio/MacacaSinica +9554,bio/Papio +9555,bio/PapioAnubis +9556,bio/PapioCynocephalus +9557,bio/PapioHamadryas +9564,bio/Theropithecus +9565,bio/TheropithecusGelada +9570,bio/Colobus +9578,bio/Hylobates +9580,bio/HylobatesLar +9592,bio/Gorilla +9593,bio/GorillaGorilla +9599,bio/Pongo +9600,bio/PongoPygmaeus +9601,bio/PongoAbelii +9606,bio/HomoSapiens +9612,bio/CanisLupus +9615,bio/CanisLupusFamiliaris +9620,bio/CerdocyonThous +9621,bio/Lycaon +9622,bio/LycaonPictus +9625,bio/Vulpes +9627,bio/VulpesVulpes +9633,bio/Helarctos +9634,bio/HelarctosMalayanus +9639,bio/Ursus +9650,bio/Nasua +9651,bio/NasuaNasua +9653,bio/Procyon +9654,bio/ProcyonLotor +9658,bio/Martes +9659,bio/MartesFoina +9661,bio/Meles +9663,bio/Mellivora +9664,bio/MellivoraCapensis +9668,bio/MustelaPutorius +9669,bio/MustelaPutoriusFuro +9682,bio/Felis +9685,bio/FelisCatus +9703,bio/Zalophus +9704,bio/ZalophusCalifornianus +9710,bio/Halichoerus +9711,bio/HalichoerusGrypus +9724,bio/Inia +9725,bio/IniaGeoffrensis +9734,bio/Stenella_WhalesDolphins +9735,bio/StenellaAttenuata +9736,bio/StenellaLongirostris +9738,bio/Tursiops +9739,bio/TursiopsTruncatus +9741,bio/Phocoena +9742,bio/PhocoenaPhocoena +9748,bio/Delphinapterus +9749,bio/DelphinapterusLeucas +9757,bio/Mesoplodon +9763,bio/Eschrichtius +9764,bio/EschrichtiusRobustus +9766,bio/Balaenoptera +9770,bio/BalaenopteraPhysalus +9776,bio/Trichechus +9777,bio/TrichechusInunguis +9782,bio/Elephas +9783,bio/ElephasMaximus +9784,bio/Loxodonta +9785,bio/LoxodontaAfricana +9786,bio/ProboscideaLouisiana +9789,bio/Equus +9794,bio/EquusHemionus +9796,bio/EquusCaballus +9798,bio/EquusPrzewalskii +9800,bio/Tapirus +9801,bio/TapirusTerrestris +9806,bio/Ceratotherium +9807,bio/CeratotheriumSimum +9812,bio/Procavia +9813,bio/ProcaviaCapensis +9843,bio/VicugnaVicugna +9847,bio/Tragulus +9848,bio/TragulusNapu +9849,bio/TragulusJavanicus +9851,bio/Alces +9852,bio/AlcesAlces +9855,bio/Axis +9861,bio/CervusCanadensisCanadensis +9863,bio/CervusNippon +9867,bio/Dama +9869,bio/Rangifer +9870,bio/RangiferTarandus +9885,bio/Muntiacus +9886,bio/MuntiacusReevesi +9898,bio/Ammotragus +9899,bio/AmmotragusLervia +9900,bio/Bison_Bison +9901,bio/BisonBison +9902,bio/BisonBonasus +9903,bio/Bos +9906,bio/BosJavanicus +9913,bio/BosTaurus +9915,bio/BosIndicus +9916,bio/Boselaphus +9917,bio/BoselaphusTragocamelus +9918,bio/Bubalus +9922,bio/Capra +9923,bio/CapraAegagrus +9925,bio/CapraHircus +9926,bio/Connochaetes +9927,bio/ConnochaetesTaurinus +9933,bio/Gazella +9935,bio/Ovis +9940,bio/OvisAries +9977,bio/Ochotona +9978,bio/OchotonaPrinceps +9984,bio/Oryctolagus +9986,bio/OryctolagusCuniculus +9992,bio/Marmota +9995,bio/MarmotaMonax +9996,bio/Spermophilus +9997,bio/SpermophilusCitellus +10001,bio/Sciurus +10007,bio/SciurusAberti +10011,bio/Thomomys +10012,bio/ThomomysTownsendii +10016,bio/Dipodomys +10019,bio/DipodomysPanamintinus +10022,bio/Pedetes +10023,bio/PedetesCapensis +10028,bio/Cricetulus +10029,bio/CricetulusGriseus +10033,bio/Cricetus +10034,bio/CricetusCricetus +10035,bio/Mesocricetus +10036,bio/MesocricetusAuratus +10049,bio/Arvicola +10053,bio/Microtus +10054,bio/MicrotusXanthognathus +10062,bio/Spalax +10067,bio/Acomys +10068,bio/AcomysCahirinus +10084,bio/Cricetomys +10085,bio/CricetomysGambianus +10089,bio/MusCaroli +10090,bio/MusMusculus +10093,bio/MusPahari +10096,bio/MusSpretus +10103,bio/MusSpicilegus +10111,bio/Praomys +10112,bio/MastomysNatalensis +10113,bio/PraomysDaltoni +10114,bio/Rattus +10116,bio/RattusNorvegicus +10117,bio/RattusRattus +10121,bio/RattusTunneyi +10128,bio/Apodemus +10129,bio/ApodemusSylvaticus +10140,bio/Cavia +10141,bio/CaviaPorcellus +10145,bio/Galea +10146,bio/GaleaMusteloides +10148,bio/Hydrochoerus +10149,bio/HydrochoerusHydrochaeris +10156,bio/Myocastor +10157,bio/MyocastorCoypus +10162,bio/Proechimys +10170,bio/Bathyergus +10172,bio/BathyergusSuillus +10173,bio/Cryptomys +10175,bio/CryptomysHottentotus +10298,bio/HumanAlphaherpesvirus1 +10325,bio/MacacineAlphaherpesvirus1 +10326,bio/EquidAlphaherpesvirus1 +10331,bio/EquidAlphaherpesvirus4 +10335,bio/HumanAlphaherpesvirus3 +10376,bio/HumanGammaherpesvirus4 +10390,bio/GallidAlphaherpesvirus2 +10401,bio/IctaluridHerpesvirus1 +10995,bio/InfectiousBursalDiseaseVirus +11855,bio/MasonpfizerMonkeyVirus +12304,bio/Cucumovirus +12305,bio/CucumberMosaicVirus +12657,bio/EquidGammaherpesvirus2 +12912,bio/Acanthurus +12945,bio/Aratinga +12946,bio/PsittacaraErythrogenys +12981,bio/Cacatua +12983,bio/CacatuaGoffiniana +13012,bio/Clarias +13013,bio/ClariasGariepinus +13028,bio/Cynoscion +13029,bio/CynoscionNebulosus +13037,bio/DanausPlexippus +13039,bio/Diaprepes +13040,bio/DiaprepesAbbreviatus +13084,bio/Heteronotia +13090,bio/Hosta +13091,bio/HostaLancifolia +13105,bio/Lepomis +13122,bio/Lymantria +13138,bio/Mastotermes +13139,bio/MastotermesDarwiniensis +13150,bio/Micromys +13151,bio/MicromysMinutus +13163,bio/Myzus +13164,bio/MyzusPersicae +13213,bio/Pionus +13253,bio/Sabal +13265,bio/Smilodon +13266,bio/SmilodonFatalis +13289,bio/Tilletia +13290,bio/TilletiaCaries +13396,bio/Carcharodon +13397,bio/CarcharodonCarcharias +13426,bio/Cichorium +13427,bio/CichoriumIntybus +13488,bio/Dicentrarchus +13489,bio/DicentrarchusLabrax +13580,bio/Katsuwonus +13603,bio/IstiompaxIndica +13625,bio/Paeonia +13632,bio/LuciliaSericata +13667,bio/Sansevieria +13675,bio/Scomber +13676,bio/ScomberJaponicus +13707,bio/Tagetes +13708,bio/TagetesErecta +13721,bio/KajikiaAudax +13735,bio/PelodiscusSinensis +13745,bio/Uria +13746,bio/UriaAalge +13763,bio/Xyrichtys +13764,bio/XyrichtysMartinicensis +13833,bio/Ophioglossum +13834,bio/OphioglossumEngelmannii +15371,bio/BromusInermis +17778,bio/Calycadenia +21819,bio/Mentha +23012,bio/Kalanchoe +23013,bio/KalanchoeDaigremontiana +23216,bio/Rubus +24234,bio/Proboscidea_Eudicots +24655,bio/Nicandra_Eudicots +24735,bio/Ulmus +26378,bio/Iris_Monocots +26473,bio/Buddleja +27457,bio/BactroceraDorsalis +27578,bio/Rhacophorus +27596,bio/BubalusDepressicornis +27605,bio/Eubalaena +27606,bio/EubalaenaGlacialis +27616,bio/MesoplodonEuropaeus +27654,bio/ArtibeusHartii +27694,bio/Prochilodus +27695,bio/ProchilodusLineatus +27705,bio/Micropterus +27706,bio/MicropterusSalmoides +27707,bio/Puntius +27710,bio/Rasbora +27719,bio/Hoplias +27720,bio/HopliasMalabaricus +27724,bio/Osteoglossum +27726,bio/Scleropages +27760,bio/Pseudotropheus +27771,bio/LimandaLimanda +27772,bio/Coregonus +27777,bio/LepisosteusPlatyrhincus +27786,bio/Eretmochelys +27787,bio/EretmochelysImbricata +27788,bio/LepidochelysOlivacea +27789,bio/Natator +27790,bio/NatatorDepressus +27922,bio/Mnemiopsis +27923,bio/MnemiopsisLeidyi +28376,bio/Anolis +28437,bio/ZhangixalusMoltrechti +28483,bio/ProsperoAutumnale +28502,bio/AmaranthusHypochondriacus +28540,bio/BuddlejaDavidii +28588,bio/ZeugodacusCucurbitae +28736,bio/Elephantulus +28737,bio/ElephantulusEdwardii +28769,bio/Profundulus +28834,bio/Cepaea +28835,bio/CepaeaNemoralis +28913,bio/CalycadeniaFremontii +29014,bio/Grammostola +29017,bio/CyriopagopusSchmidti +29021,bio/Scutigera +29022,bio/ScutigeraColeoptrata +29054,bio/Epinotia +29058,bio/HelicoverpaArmigera +29073,bio/UrsusMaritimus +29081,bio/Macroscelides +29089,bio/NomascusConcolor +29090,bio/Dolichotis +29091,bio/DolichotisPatagonum +29092,bio/MicrotusAgrestis +29138,bio/Vombatus +29139,bio/VombatusUrsinus +29153,bio/Micropogonias +29642,bio/AspleniumNidus +29694,bio/CenchrusLongisetus +29706,bio/SporobolusAlterniflorus +29710,bio/DioscoreaCayenensis +29892,bio/AuriculariaAuriculajudae +30195,bio/BombusTerrestris +30252,bio/Melanoplus +30316,bio/Spea +30317,bio/SpeaMultiplicata +30325,bio/AnaxyrusBoreas +30326,bio/EpidaleaCalamita +30327,bio/AnaxyrusCanorus +30331,bio/BufoGargarizans +30332,bio/RhinellaGranulosa +30334,bio/SclerophrysKisoloensis +30335,bio/DuttaphrynusMelanostictus +30336,bio/AnaxyrusMicroscaphus +30338,bio/BufotesViridis +30343,bio/DryophytesVersicolor +30344,bio/RanoideaCaerulea +30348,bio/Pseudophryne +30374,bio/CalotritonAsper +30384,bio/Aythya +30389,bio/Ardea +30408,bio/CrossoptilonCrossoptilon +30413,bio/Balearica +30414,bio/BalearicaPavonina +30415,bio/GrusJaponensis +30420,bio/Corvus +30423,bio/ColoeusMonedula +30424,bio/Emberiza +30425,bio/EmberizaSchoeniclus +30426,bio/Carpodacus +30427,bio/HaemorhousMexicanus +30456,bio/PionusSenilis +30460,bio/Bubo +30461,bio/BuboBubo +30489,bio/PorodermaAfricanum +30520,bio/BosFrontalis +30521,bio/BosGrunniens +30531,bio/AxisAxis +30532,bio/DamaDama +30539,bio/Vicugna +30576,bio/AtelerixAlgirus +30587,bio/Leontopithecus +30590,bio/AlouattaBelzebul +30591,bio/AotusAzarai +30593,bio/Brachyteles +30594,bio/BrachytelesArachnoides +30595,bio/Cacajao +30596,bio/CacajaoCalvus +30597,bio/Pithecia +30609,bio/GalagoMoholi +30610,bio/Otolemur +30630,bio/MicrotusLevis +30639,bio/Mastomys +30640,bio/SciurusCarolinensis +30732,bio/OryziasMelastigma +30804,bio/ChelonRamada +30962,bio/OncorhynchusClarkii +30991,bio/SilurusAsotus +30992,bio/Pangasianodon +30993,bio/PangasianodonGigas +31032,bio/Takifugu +31033,bio/TakifuguRubripes +31155,bio/ViperaBerus +32071,bio/Asplenium +32439,bio/Dasyatis +32457,bio/Glossolepis +32459,bio/Melanotaenia +32548,bio/Myoictis +32549,bio/MyoictisMelas +32560,bio/SminthopsisMurina +32643,bio/Heleophryne +33118,bio/NicandraPhysalodes +33120,bio/AlkekengiOfficinarum +33416,bio/Heliconius +33434,bio/HeliconiusCharithonia +33452,bio/Dryas_Butterflies +33453,bio/DryasIulia +33465,bio/Yponomeuta +33466,bio/YponomeutaMalinellus +33519,bio/MelanotaeniaSplendida +33529,bio/ProfundulusPunctatus +33533,bio/Chelidonichthys +33548,bio/ColobusGuereza +33609,bio/Gypaetus +33610,bio/GypaetusBarbatus +33630,bio/Alveolata +33682,bio/Euglenozoa +33708,bio/MuridGammaherpesvirus4 +33789,bio/Channa +33790,bio/ChannaGachua +33993,bio/Neorickettsia +34172,bio/SabalMinor +34205,bio/IrisGermanica +34474,bio/Fomitopsis +34646,bio/Mesobuthus +34647,bio/MesobuthusTamulus +34649,bio/MesobuthusMartensii +34675,bio/Protophormia +34676,bio/ProtophormiaTerraenovae +34740,bio/HeliconiusMelpomene +34767,bio/Chiloscyllium +34815,bio/Morone +34816,bio/MoroneSaxatilis +34818,bio/Glyptocephalus +34819,bio/GlyptocephalusCynoglossus +34820,bio/Sebastes +34885,bio/Eumetopias +34886,bio/EumetopiasJubatus +34891,bio/Neophocaena +34892,bio/NeophocaenaPhocaenoides +34902,bio/Trachemys +34903,bio/TrachemysScripta +34923,bio/Pica +34924,bio/PicaPica +34929,bio/ScenopoeetesDentirostris +34991,bio/Calliophis +35046,bio/SclerophrysMaculata +35076,bio/Patiria +35246,bio/CercopithecineAlphaherpesvirus9 +35252,bio/AlcelaphineGammaherpesvirus1 +35729,bio/Trematomus +35732,bio/RattusTanezumi +35883,bio/IpomoeaNil +35924,bio/PaeoniaLactiflora +36048,bio/Tuber +36211,bio/Trachurus +36220,bio/Pachycara +36221,bio/PachycaraBrachycephalum +36223,bio/CercopithecusAscanius +36229,bio/PapioUrsinus +36244,bio/Alcedo +36245,bio/AlcedoAtthis +36247,bio/GypsFulvus +36249,bio/CorvusMacrorhynchos +36257,bio/Anthus +36272,bio/HorornisDiphone +36274,bio/Leiothrix_Birds +36275,bio/LeiothrixLutea +36283,bio/Erithacus +36287,bio/Zoothera +36288,bio/ZootheraDauma +36295,bio/Hypsipetes +36312,bio/HynobiusRetardatus +36313,bio/TarichaRivularis +36317,bio/SpeleomantesAmbrosii +36318,bio/SpeleomantesGenei +36703,bio/Eigenmannia +36795,bio/Melomys +36796,bio/MelomysBurtoni +36798,bio/Uromys +36799,bio/UromysHadrourus +36800,bio/UromysCaudimaculatus +36801,bio/Crocidura +37003,bio/KryptolebiasMarmoratus +37022,bio/CerradomysSubflavus +37029,bio/PrionailurusBengalensis +37031,bio/Suricata +37032,bio/SuricataSuricatta +37038,bio/Gavia +37039,bio/GaviaImmer +37063,bio/Pterodroma +37088,bio/SpeleomantesSupramontis +37108,bio/MeleagridAlphaherpesvirus1 +37184,bio/Hippotragus +37185,bio/HippotragusLeucophaeus +37285,bio/HeterophallusRachovii +37295,bio/CebusOlivaceus +37347,bio/TupaiaBelangeri +37437,bio/Malacothrix_Rodents +37438,bio/MalacothrixTypica +37579,bio/Python +37601,bio/ChlorisChloris +37604,bio/Acanthis +37606,bio/Pyrrhula +37607,bio/PyrrhulaPyrrhula +37610,bio/ErithacusRubecula +37613,bio/Vidua +38526,bio/Abramis +38527,bio/AbramisBrama +38564,bio/Heteromyias +38565,bio/HeteromyiasAlbispecularis +38597,bio/Aepyprymnus +38598,bio/AepyprymnusRufescens +38619,bio/Lutreolina +38620,bio/LutreolinaCrassicaudata +38660,bio/Amblypharyngodon +38667,bio/Onychomys +38679,bio/OnychomysArenicola +38730,bio/Sporobolus +38771,bio/Gopherus +38772,bio/GopherusAgassizii +38773,bio/GopherusPolyphemus +38933,bio/Polychrus +38934,bio/PolychrusMarmoratus +39023,bio/MicrurusDiastema +39030,bio/ApodemusAgrarius +39081,bio/Muscardinus +39082,bio/MuscardinusAvellanarius +39099,bio/PantherophisObsoletus +39147,bio/Gonyosoma +39171,bio/Monarda_Eudicots +39246,bio/Tropidophis +39343,bio/MonardaDidyma +39500,bio/Cordyline +39501,bio/CordylineFruticosa +39534,bio/SansevieriaTrifasciata +39588,bio/Hyperolius +39589,bio/HyperoliusArgus +39591,bio/HyperoliusViridiflavus +39599,bio/Afrixalus +39601,bio/Leptopelis +39602,bio/LeptopelisVermiculatus +39603,bio/LeptopelisArgenteus +39604,bio/LeptopelisConcolor +39609,bio/Chiromantis +39611,bio/Buergeria +39616,bio/Aphelocoma +39620,bio/Acrocephalus +39682,bio/TrimeresurusStejnegeri +39705,bio/UrvaEdwardsii +39707,bio/Junonia +39708,bio/JunoniaCoenia +39855,bio/SileneChalcedonica +39944,bio/CaprineAlphaherpesvirus1 +39946,bio/OryzaSativaIndicaGroup +39957,bio/Lophorina +39958,bio/LophorinaSuperba +39992,bio/Terminalia +39993,bio/TerminaliaCatappa +40009,bio/PleromaUrvilleanum +40074,bio/Asterocampa +40075,bio/AsterocampaClyton +40094,bio/Hylephila +40095,bio/HylephilaPhyleus +40103,bio/Agrius +40104,bio/AgriusCingulata +40156,bio/Lonchura +40157,bio/LonchuraStriata +40168,bio/Alcolapia +40169,bio/OreochromisAlcalicus +40180,bio/AlectorisMelanocephala +40193,bio/OreochromisUrolepis +40205,bio/MelozoneFusca +40224,bio/ArtibeusCinereus +40229,bio/DermanuraPhaeotis +40249,bio/Uromastyx +40450,bio/FomitopsisBetulina +40493,bio/Lutjanus +40505,bio/LutjanusCampechanus +40510,bio/Pristipomoides +40690,bio/TrematomusBernacchii +41106,bio/Dorcus +41107,bio/DorcusParallelipipedus +41138,bio/Coccinella +41139,bio/CoccinellaSeptempunctata +41140,bio/Calvia +41185,bio/Korscheltellus +41679,bio/RaphanusSativusVarNiger +42043,bio/SileneVulgaris +42058,bio/Pronolagus +42059,bio/PronolagusCrassicaudatus +42061,bio/PronolagusRupestris +42146,bio/Dobsonia +42147,bio/DobsoniaMoluccensis +42150,bio/SpalaxZemni +42151,bio/GalegeeskaRufescens +42163,bio/Podarcis +42183,bio/Ovophis +42195,bio/Dieffenbachia +42196,bio/DieffenbachiaSeguine +42229,bio/PrunusAvium +42274,bio/Vanessa +42283,bio/Enodia +42284,bio/EnodiaPortlandia +42285,bio/Hermeuptychia +42286,bio/HermeuptychiaHermes +42293,bio/Pontia +42295,bio/Colias +42296,bio/ColiasEurytheme +42298,bio/Celastrina +42299,bio/CelastrinaLadon +42336,bio/Bidens +42337,bio/BidensPilosa +42498,bio/Gasteropelecus +42509,bio/Synodontis +42513,bio/Pygocentrus +42514,bio/PygocentrusNattereri +42525,bio/Colossoma +42526,bio/ColossomaMacropomum +42562,bio/Hepsetus +42563,bio/HepsetusOdoe +42617,bio/Abramites +42653,bio/Petrocephalus +42721,bio/Marmosops +42749,bio/Phelsuma +42756,bio/Necturus +43042,bio/PlethodonGlutinosus +43043,bio/Eurycea +43044,bio/EuryceaLongicauda +43045,bio/Desmognathus +43048,bio/CryptobranchusAlleganiensis +43104,bio/RubusHispidus +43257,bio/Sillago +43326,bio/Thrichomys +43327,bio/ThrichomysApereoides +43331,bio/Elaphurus +43332,bio/ElaphurusDavidianus +43336,bio/Orthosia_Moths +43385,bio/PlioreoceptaPoeciloptera +43470,bio/Dendrobates +43472,bio/OophagaSpeciosa +43476,bio/Dicamptodon +43507,bio/Leiopelma +43532,bio/NecturusAlabamensis +43541,bio/Pelodytes +43542,bio/PelodytesPunctatus +43557,bio/Pseudis +43558,bio/PseudisParadoxa +43644,bio/Uma +43645,bio/UmaNotata +43699,bio/Monopterus_BonyFishes +43700,bio/MonopterusAlbus +43777,bio/PitheciaPithecia +44170,bio/Stichopathes +44326,bio/PelophylaxShqipericus +44371,bio/Smilisca +44490,bio/Chelodina +44492,bio/ChelodinaOblonga +44662,bio/Sitobion +44664,bio/SitobionAvenae +44679,bio/MagicicadaSeptendecim +45171,bio/PaeoniaSuffruticosa +45324,bio/Bombax +45325,bio/BombaxCeiba +45485,bio/Ammospermophilus +45487,bio/AmmospermophilusHarrisii +45623,bio/PelophylaxLessonae +45643,bio/Chenonetta +45644,bio/ChenonettaJubata +45779,bio/PapilioGlaucus +46296,bio/Dendrelaphis +46304,bio/Hypsiglena +46501,bio/Hydrochous +46502,bio/HydrochousGigas +46514,bio/PatiriaMiniata +46750,bio/FimbriaphylliaAncora +46780,bio/DevarioMalabaricus +46841,bio/Leopardus +46905,bio/Turnagra +46906,bio/TurnagraCapensis +46962,bio/Caulophyllum +46963,bio/CaulophyllumThalictroides +47435,bio/LimnonectesPalavanensis +47436,bio/LimnonectesParamacrodon +47437,bio/LimnonectesIngeri +47543,bio/PhrynoidisAsper +47548,bio/VandijkophrynusGariepensis +47549,bio/SclerophrysGarmani +47555,bio/AnaxyrusRetiformis +47559,bio/AnaxyrusTerrestris +47561,bio/AnaxyrusWoodhousii +47563,bio/Leptodactylus +47564,bio/LeptodactylusPentadactylus +47576,bio/Ansonia +47577,bio/AnsoniaMuelleri +47578,bio/Atelopus +47586,bio/PeltophryneLemur +47605,bio/Hibiscus +47699,bio/Myripristis +47707,bio/Sargocentron +47718,bio/Cobitis +47727,bio/Hemidactylus +47766,bio/Agrotis +47929,bio/MacacineBetaherpesvirus3 +48169,bio/ThunnusTonggol +48170,bio/Chelon +48191,bio/ChelonAuratus +48193,bio/MugilCephalus +48284,bio/Caprimulgus +48415,bio/Zoarces +48455,bio/Gonostoma +48456,bio/GonostomaAtlanticum +48667,bio/Rutilus +48849,bio/PasserDomesticus +48890,bio/PoecilePalustris +48987,bio/Nyctimene +48988,bio/NyctimeneAlbiventer +49551,bio/Ligusticum +49554,bio/LigusticumScoticum +49652,bio/ScillaScilloides +50178,bio/Cephalotaxus +50352,bio/Chalinolobus +50353,bio/ChalinolobusMorio +50368,bio/Arothron +50403,bio/Vanellus +50590,bio/Lithognathus +50591,bio/LithognathusMormyrus +50732,bio/Astronotus +50733,bio/AstronotusOcellatus +50744,bio/Dascyllus +50790,bio/DascyllusTrimaculatus +50908,bio/Occidozyga +50911,bio/LimnonectesIbanorum +50913,bio/LimnonectesMacrodon +50914,bio/LimnonectesMagnus +50915,bio/LimnonectesMalesianus +51088,bio/Myristica +51089,bio/MyristicaFragrans +51213,bio/Cyclura +51242,bio/Galaxias +51341,bio/Aplodontia +51342,bio/AplodontiaRufa +51345,bio/Graphiurus +51351,bio/BrassicaRapaSubspPekinensis +51360,bio/Piculus +51647,bio/Gloydius +51750,bio/PythonMolurus +51752,bio/PythonSebae +51788,bio/Halichoeres +51797,bio/Pomacanthus +51843,bio/Anilius +51844,bio/AniliusScytale +51846,bio/IndotyphlopsBraminus +51891,bio/AntaresiaMaculosa +51894,bio/Morelia_Snakes +51896,bio/MoreliaSpilota +51901,bio/Cyanopsitta +51902,bio/CyanopsittaSpixii +51949,bio/OophagaHistrionica +51959,bio/AndinobatesMinutus +51980,bio/TropidophisHaetianus +52105,bio/DesmognathusQuadramaculatus +52123,bio/Oceanodroma +52158,bio/OloptumMiliaceum +52232,bio/MicoHumeralifer +52370,bio/Quadrula +52372,bio/QuadrulaQuadrula +52617,bio/CarassiusCuvieri +52631,bio/CrociduraSuaveolens +52652,bio/Aphyosemion +52653,bio/AphyosemionAustrale +52655,bio/Epiplatys +52813,bio/Neomys +52814,bio/NeomysAnomalus +52838,bio/MusaBalbisiana +53222,bio/LupinusCosentinii +53541,bio/Stegomyia +53545,bio/Ochlerotatus_Subgenus +53882,bio/Gymnocladus +53883,bio/GymnocladusDioicus +54021,bio/PhoebastriaNigripes +54054,bio/StercorariusLonnbergi +54057,bio/Stercorarius +54132,bio/Pygathrix +54133,bio/PygathrixNemaeus +54136,bio/Trachypithecus +54181,bio/TrachypithecusObscurus +54319,bio/EtheostomaCaeruleum +54328,bio/PercinaEvides +54342,bio/EtheostomaSagitta +54439,bio/Capnoides +54483,bio/Porphyrio +54484,bio/PorphyrioMantelli +54497,bio/CabalusModestus +54500,bio/GallirallusDieffenbachii +54555,bio/Alburnus +54563,bio/RutilusFrisii +54578,bio/Cyanocorax +54769,bio/AcanthisFlammea +54971,bio/ArenariaInterpres +54972,bio/Arenaria_Birds +55055,bio/AgriusConvolvuli +55107,bio/Phalloceros +55108,bio/PhallocerosCaudimaculatus +55112,bio/Notacanthus +55137,bio/Myliobatis +55141,bio/Squatina +55533,bio/Apalone +55534,bio/ApaloneSpinifera +55577,bio/DioscoreaCayenensisSubspRotundata +55977,bio/Tomicus +56217,bio/NecromysLactens +56312,bio/Tyto +56313,bio/TytoAlba +56318,bio/Habromys +56362,bio/Acronicta +56364,bio/AgrotisIpsilon +56375,bio/Catocala +56435,bio/PhylloscopusProregulus +56612,bio/Poeciliopsis +56721,bio/Pseudaphritis +56722,bio/PseudaphritisUrvillii +57176,bio/AotusVociferans +57374,bio/LeontopithecusChrysomelas +57375,bio/CallithrixAurita +57378,bio/CallithrixPenicillata +57542,bio/Batrachoseps +57544,bio/BatrachosepsPacificus +57549,bio/Ensatina +57550,bio/EnsatinaEschscholtzii +57551,bio/EnsatinaEschscholtziiCroceater +57552,bio/EnsatinaEschscholtziiOregonensis +57554,bio/SpeleomantesFlavus +57555,bio/SpeleomantesItalicus +57569,bio/Salamandra +57571,bio/SalamandraSalamandra +57791,bio/Ecsenius +57795,bio/Entomacrodus +57804,bio/Heteroclinus +57805,bio/HeteroclinusHeptaeolus +57834,bio/Omobranchus +57846,bio/Petroscirtes +57850,bio/Rhabdoblennius +57854,bio/Starksia +57988,bio/Odontaspis +57989,bio/OdontaspisFerox +58023,bio/Tracheophyta +58068,bio/Hipposideros +58071,bio/MyonycterisAngolensis +58186,bio/Aubria +58187,bio/AubriaSubsigillata +58200,bio/Mimus +58208,bio/Thraupis +58209,bio/ThraupisEpiscopus +58316,bio/Blicca +58317,bio/BliccaBjoerkna +58318,bio/Scardinius +58319,bio/ScardiniusErythrophthalmus +58325,bio/LeuciscusLeuciscus +58326,bio/Rhodeus +58512,bio/CornuferVitiensis +58514,bio/Tomopterna +58517,bio/CornuferGuentheri +58518,bio/Euphlyctis +58519,bio/EuphlyctisCyanophlyctis +58674,bio/EnsatinaEschscholtziiKlauberi +58676,bio/EnsatinaEschscholtziiPlatensis +58766,bio/Mastigoproctus +58767,bio/MastigoproctusGiganteus +58823,bio/Plodia +58824,bio/PlodiaInterpunctella +59529,bio/GazellaSubgutturosa +59537,bio/Pantholops +59538,bio/PantholopsHodgsonii +59557,bio/TuberAestivum +59660,bio/Scarus +59661,bio/ScarusIseri +59945,bio/Rexea +59946,bio/RexeaSolandri +60273,bio/AphyosemionCameronense +60281,bio/AphyosemionElegans +60283,bio/AphyosemionExiguum +60402,bio/ArchiaphyosemionGuineense +60461,bio/Agapornis +60468,bio/AgapornisRoseicollis +60710,bio/ChlorocebusPygerythrus +60886,bio/Rhabdocalyptus +61153,bio/Arvicanthis +61156,bio/ArvicanthisNiloticus +61195,bio/NyctimystesInfrafrenatus +61320,bio/Hydrocynus +61508,bio/Persicaria +61614,bio/DiscoglossusJeanneae +61615,bio/Pelobates +61616,bio/PelobatesCultripes +61620,bio/GalaxiasMaculatus +61621,bio/RhinopithecusBieti +61808,bio/Pomacentrus +61817,bio/CryptoherosSpilurus +61818,bio/Amphilophus +61819,bio/AmphilophusCitrinellus +61835,bio/Terranatos +61836,bio/TerranatosDolichopterus +61851,bio/HoolockHoolock +61852,bio/NomascusGabriellae +61853,bio/NomascusLeucogenys +62066,bio/Brachymystax +62067,bio/BrachymystaxLenok +62211,bio/Iridosornis +62224,bio/Neothraupis +62226,bio/NeothraupisFasciata +62258,bio/Vermivora +62330,bio/FagopyrumTataricum +62964,bio/Narke +63058,bio/UlmusParvifolia +63176,bio/Parachromis +63221,bio/HomoSapiensNeanderthalensis +63461,bio/Nerium +63479,bio/NeriumOleander +63614,bio/FukomysBocagei +63787,bio/KalanchoeFedtschenkoi +64152,bio/ChannaStriata +64176,bio/PodarcisMuralis +64415,bio/PodarcisTauricus +64459,bio/PierisRapae +64799,bio/ChlorodrepanisVirens +64884,bio/CitrusJambhiri +65476,bio/LacertaViridis +65620,bio/Bettongia +65621,bio/BettongiaLesueur +65692,bio/Charybdis_Crustaceans +65771,bio/ScillaPeruviana +66062,bio/RhinopithecusAvunculus +66063,bio/TrachypithecusJohnii +66169,bio/CephalotaxusFortunei +66627,bio/GonopterodendronArboreum +68429,bio/Philautus +68448,bio/Polypedates +68449,bio/PolypedatesMegacephalus +68464,bio/PoeciliopsisOccidentalis +68476,bio/AcrocephalusAgricola +68512,bio/Chlorophthalmus +68721,bio/Atelocynus +68722,bio/AtelocynusMicrotis +68732,bio/VulpesZerda +68736,bio/LycalopexCulpaeus +68737,bio/LycalopexGriseus +69077,bio/RattusAndamanensis +69080,bio/Maxomys +69081,bio/MaxomysSurifer +69129,bio/Atherinomorus +69133,bio/Craterocephalus +69229,bio/LimiaNigrofasciata +69293,bio/GasterosteusAculeatus +69489,bio/PelophylaxBedriagae +69509,bio/Saxicola +69624,bio/Daculus +69644,bio/Tetradacus +69811,bio/LeuciscusIdus +70019,bio/PelophylaxSaharicus +70079,bio/Stenogobius +70083,bio/Awaous +70548,bio/PlagiognathopsMicrolepis +70825,bio/CacajaoMelanocephalus +71112,bio/Lontra +71159,bio/Lampanyctus +71165,bio/Gonatodes +71773,bio/SiphatelesBicolor +72005,bio/Cuora +72011,bio/AcanthopagrusSchlegelii +72171,bio/Ziziphus +72247,bio/ColiasBehrii +72248,bio/ColiasCroceus +72255,bio/EuchloeAusonides +72881,bio/Psalidoprocne +72882,bio/PsalidoprocneHolomelas +73326,bio/Aegithalos +73327,bio/AegithalosCaudatus +73493,bio/PelophylaxKurtmuelleri +73633,bio/Calpodes +73634,bio/CalpodesEthlius +74132,bio/Symphysodon_BonyFishes +74133,bio/SymphysodonAequifasciata +74364,bio/ElapheCarinata +74933,bio/Sacalia +74940,bio/OncorhynchusTshawytscha +75023,bio/Holacanthus +75031,bio/Platax +75032,bio/PlataxOrbicularis +75035,bio/Prionurus +75041,bio/Siganus +75042,bio/SiganusCanaliculatus +75045,bio/Zebrasoma +75046,bio/ZebrasomaScopas +75285,bio/Arius +75329,bio/MisgurnusAnguillicaudatus +75331,bio/Abbottina +75332,bio/AbbottinaRivularis +75333,bio/Acheilognathus +75347,bio/Gymnocypris +75348,bio/GymnocyprisPrzewalskii +75357,bio/Parabramis +75358,bio/ParabramisPekinensis +75359,bio/Raiamas +75361,bio/Schizothorax +75562,bio/PagrusAuratus +75832,bio/MarecaAmericana +75836,bio/AnasCarolinensis +75838,bio/SpatulaClypeata +75839,bio/AnasCrecca +75842,bio/SpatulaDiscors +75864,bio/AnasZonorhyncha +75988,bio/AgalychnisDacnicolor +75989,bio/Agalychnis +75990,bio/AgalychnisAnnae +76212,bio/Erynnis +76214,bio/Hypolimnas +76215,bio/HypolimnasBolina +76219,bio/NymphalisXanthomelas +76227,bio/Salatura +76234,bio/Euploea +76235,bio/EuploeaMulciber +76238,bio/Libythea +76239,bio/LibytheaCeltis +76337,bio/Thalassoma +76338,bio/ThalassomaBifasciatum +76339,bio/Sciaenops +76340,bio/SciaenopsOcellatus +76717,bio/LontraCanadensis +77027,bio/NupharPolysepala +77236,bio/Myonycteris +77913,bio/Galeus +78194,bio/Mogurnda +78195,bio/MogurndaAdspersa +78394,bio/EptatretusCirrhatus +78615,bio/ColiasHyale +78617,bio/ColiasMyrmidone +78620,bio/ColiasPalaeno +78872,bio/Pseudobagrus +78876,bio/PseudobagrusIchikawai +78897,bio/LymantriaMonacha +79015,bio/RanaChensinensis +79504,bio/Crioceris +79626,bio/EudyptesChrysocome +79684,bio/MicrotusOchrogaster +79887,bio/Coryphopterus +80345,bio/TegulaBrunnea +80443,bio/Acanthodactylus +80771,bio/Paratilapia +80772,bio/ParatilapiaPolleni +80789,bio/AcheilognathusTypus +80835,bio/Portunus +80836,bio/PortunusPelagicus +80839,bio/CharybdisJaponica +80949,bio/DascyllusAruanus +80951,bio/DascyllusReticulatus +80965,bio/Acanthochromis +80966,bio/AcanthochromisPolyacanthus +80967,bio/Amblyglyphidodon +80969,bio/Amphiprion +80974,bio/Chromis +80992,bio/Stegastes +81369,bio/Lampris +81370,bio/LamprisGuttatus +81391,bio/Synodus +81635,bio/Micromesistius +81636,bio/MicromesistiusPoutassou +82038,bio/Prospero +82464,bio/MyodesRegulus +82466,bio/MyodesAndersoni +82594,bio/Biston +82595,bio/BistonBetularia +83875,bio/TrachurusJaponicus +83911,bio/Psoroptes +83912,bio/PsoroptesOvis +83970,bio/Hemisus +83971,bio/HemisusMarmoratus +83975,bio/Arthroleptis +84644,bio/Labeo +84645,bio/LabeoRohita +84804,bio/Icterus +85104,bio/Burhinus +85565,bio/Erimystax +85589,bio/OophagaGranulifera +86068,bio/CoregonusBaicalensis +86196,bio/Acanthogobius +86206,bio/Ptereleotris +86207,bio/PtereleotrisHeteroptera +86345,bio/BufoBankorensis +86362,bio/Himantura +86365,bio/Mobula +86366,bio/MobulaThurstoni +86372,bio/Potamotrygon +86373,bio/PotamotrygonMotoro +86376,bio/Taeniura +86542,bio/Briareum +86543,bio/BriareumAsbestinum +86606,bio/StichopathesLuetkeni +86674,bio/Urobatis +86917,bio/Mylocheilus +86918,bio/MylocheilusCaurinus +86921,bio/ErimystaxXpunctatus +86941,bio/Exoglossum +86942,bio/ExoglossumLaurae +86974,bio/Testudo +87137,bio/Pastinachus +87138,bio/PastinachusSephen +88030,bio/Ptychadena +88031,bio/PtychadenaMascareniensis +88115,bio/Delichon +88116,bio/DelichonUrbicum +88119,bio/Psaltriparus +88120,bio/PsaltriparusMinimus +88199,bio/Mugilogobius +88445,bio/PelophylaxPorosus +88448,bio/PelophylaxFukienensis +89462,bio/BubalusBubalis +89467,bio/Saltuarius +89468,bio/SaltuariusCornutus +89566,bio/Lovettia +89900,bio/Lychas +90407,bio/Icmadophila +90408,bio/IcmadophilaEricetorum +91611,bio/DascyllusMarginatus +91720,bio/Heterotis_BonyFishes +91721,bio/HeterotisNiloticus +91737,bio/Aricia_Butterflies +91738,bio/AriciaArtaxerxes +91742,bio/Cephalopholis +91744,bio/Choerodon +91745,bio/ChoerodonOligacanthus +92439,bio/SiganusGuttatus +92724,bio/DendrobatesTinctorius +92727,bio/Epipedobates +92731,bio/AmeeregaBilinguis +92733,bio/AllobatesFemoralis +92734,bio/AmeeregaPicta +92737,bio/AmeeregaTrivittata +93201,bio/Cicindela_Subgenus +93385,bio/BrassicaRapaSubspChinensis +93715,bio/ParnassiusSmintheus +94189,bio/Genetta +94231,bio/Epinephelus +94232,bio/EpinephelusCoioides +94309,bio/Harpadon +94413,bio/AcanthodactylusScutellatus +94434,bio/Oryzorictes +94436,bio/Parascalops +94437,bio/ParascalopsBreweri +94834,bio/Gavialis +94835,bio/GavialisGangeticus +94873,bio/Lampropeltis +94925,bio/Holocentrus +94988,bio/Lethenteron +94992,bio/Silurus +94993,bio/SilurusGlanis +95142,bio/Nyctimystes +95143,bio/NyctimystesDayi +95180,bio/Abagrotis +95181,bio/AbagrotisAlternata +95468,bio/Fannia +95601,bio/Eriocheir +95602,bio/EriocheirSinensis +95654,bio/Melozone +95971,bio/Aphidoletes +95972,bio/AphidoletesAphidimyza +96430,bio/TrachylepisQuinquetaeniata +96740,bio/Hemitheconyx +96741,bio/HemitheconyxCaudicinctus +96885,bio/Sardinella +96931,bio/Pyganodon +96932,bio/PyganodonGrandis +97051,bio/Cinara +97956,bio/DiscoglossusGalganoi +98139,bio/Oriolus +98381,bio/Notolabrus +98398,bio/Gyrinocheilus +98647,bio/Epalzeorhynchos +98648,bio/EpalzeorhynchosBicolor +98805,bio/BactroceraDorsalisComplex +98921,bio/TakifuguPardalis +98922,bio/MyotisDaubentonii +99490,bio/LoxodontaCyclotis +99855,bio/SpermophilusPygmaeus +100124,bio/Pseudobarbus +100823,bio/NatrixNatrix +100937,bio/PapioPapio +101364,bio/CarassiusGibelio +101699,bio/TestudoHorsfieldii +101840,bio/PetroleuciscusBorysthenicus +101898,bio/Vimba +101899,bio/VimbaMelanops +102107,bio/PrunusMume +102210,bio/Benincasa +102211,bio/BenincasaHispida +102245,bio/Boulengerula +102246,bio/BoulengerulaTaitana +103373,bio/HoplobatrachusTigerinus +103431,bio/BufoCryptotympanicus +103433,bio/IngerophrynusGaleatus +103434,bio/DuttaphrynusHimalayanus +103819,bio/Mycteroperca +103830,bio/Mythimna +103889,bio/Hyles +104499,bio/Chlosyne +104514,bio/Melitaea +104688,bio/BactroceraOleae +104690,bio/BactroceraMinax +104691,bio/BactroceraTsuneonis +104895,bio/LitoriaRubella +104896,bio/LitoriaEwingii +104954,bio/UperoleiaMjobergii +105012,bio/AphyosemionElberti +105427,bio/XenopusMuelleri +105513,bio/IcterusGalbula +105721,bio/Oligosoma +106173,bio/Cynoglossus +106331,bio/CallitrichineGammaherpesvirus3 +106727,bio/ChelonoidisBecki +107025,bio/Mergellus +107026,bio/MergellusAlbellus +107765,bio/Synagrops +107965,bio/Dendrotriton +109178,bio/PelophylaxPlancyi +109271,bio/OsteoglossumBicirrhosum +109296,bio/MuntiacusVuquangensis +109673,bio/Falcipennis +109674,bio/FalcipennisCanadensis +109716,bio/Apolemichthys +109718,bio/Centropyge +109940,bio/Amolops +109960,bio/OdorranaNasica +109961,bio/Limnonectes +109962,bio/LimnonectesBlythii +109965,bio/QuasipaaSpinosa +110071,bio/Hoplobatrachus +110072,bio/HoplobatrachusRugulosus +110076,bio/OdorranaChapaensis +110077,bio/HylaranaErythraea +110094,bio/LimnonectesDabanus +110102,bio/NanoranaYunnanensis +110107,bio/LimnonectesKuhlii +110111,bio/HumeranaLateralis +110116,bio/OdorranaSchmackeri +110118,bio/HylaranaTaipehensis +110212,bio/MontiviperaRaddei +110620,bio/ArdeaAlba +110684,bio/Ixobrychus +110792,bio/Meandrusa +110793,bio/MeandrusaPayeni +110926,bio/CygnusColumbianus +111065,bio/HyloxalusBocagei +111124,bio/AndinobatesFulguritus +111128,bio/AmeeregaParvula +111130,bio/LeptodactylusMystacinus +111183,bio/TrachylepisSpilogaster +111367,bio/FejervaryaCancrivora +111783,bio/Reinhardtius +111784,bio/ReinhardtiusHippoglossoides +111811,bio/CaprimulgusEuropaeus +111880,bio/Aglais +111881,bio/NymphalisUrticae +111893,bio/Coenonympha +111897,bio/Erebia +111898,bio/ErebiaAethiopella +111900,bio/ErebiaCassioides +111902,bio/ErebiaEuryale +111904,bio/ErebiaMeolans +111905,bio/ErebiaMontana +111906,bio/ErebiaPharte +111907,bio/ErebiaRossii +111915,bio/Lasiommata +111916,bio/LasiommataMaera +111917,bio/LasiommataMegera +111918,bio/LasiommataPetropolitana +111922,bio/Melanargia +111923,bio/MelanargiaGalathea +111924,bio/MelanargiaLachesis +111925,bio/MelanargiaRussiae +111932,bio/Pararge +111933,bio/ParargeXiphia +111980,bio/Dumetella +111981,bio/DumetellaCarolinensis +112179,bio/RhodeusSuigensis +112509,bio/HordeumVulgareSubspVulgare +113289,bio/Anthanassa +113305,bio/AnthanassaTexana +113307,bio/AsterocampaLeilia +113315,bio/ChlosyneLacinia +113345,bio/MelitaeaTrivia +113379,bio/Kaloula +113380,bio/KaloulaBorealis +113381,bio/Onychodactylus +113382,bio/OnychodactylusFischeri +113383,bio/RanaHuanrensis +113391,bio/HynobiusLeechii +113540,bio/ScleropagesFormosus +113543,bio/Arapaima +113544,bio/ArapaimaGigas +114085,bio/CyanocoraxYncas +114108,bio/Hoplosternum +114109,bio/HoplosternumLittorale +114277,bio/SpottedFeverGroup +116049,bio/BolitoglossaMexicana +116057,bio/RanoideaRaniformis +116150,bio/ParargeAegeria +117858,bio/Dipturus +117864,bio/Okamejei +117870,bio/Bathyraja +117883,bio/Trygonorrhina +117934,bio/Moxostoma +118137,bio/Niwaella +118138,bio/NiwaellaDelicata +118144,bio/Moringua +118156,bio/Ophisurus +118169,bio/Nemichthys +118230,bio/LeiopelmaArcheyi +118234,bio/Sitana +118235,bio/SitanaPonticeriana +118643,bio/AtelesChamek +118688,bio/CycluraLewisi +119041,bio/TakifuguXanthopterus +119253,bio/Dryocampa +119254,bio/DryocampaRubicunda +119281,bio/Pachysphinx +119282,bio/PachysphinxModesta +119410,bio/Gallirex +119430,bio/Hippospongia +119431,bio/HippospongiaCommunis +119487,bio/Siniperca +119488,bio/SinipercaChuatsi +119608,bio/LarusVegae +119609,bio/LarusCachinnans +119683,bio/Argyrops +119705,bio/Chrysoblephus +119711,bio/EvynnisTumifrons +119714,bio/Evynnis +119724,bio/Nemipterus +119737,bio/Pomadasys +119745,bio/Scolopsis +119768,bio/Stephopaedes +119769,bio/MertensophryneAnotis +120218,bio/SiphatelesBicolorObesa +120495,bio/BabinaAdenopleura +120497,bio/Nanorana +120502,bio/QuasipaaBoulengeri +121155,bio/Odorrana +121156,bio/OdorranaMargaretae +121158,bio/OdorranaHejiangensis +121160,bio/OdorranaLivida +121164,bio/Pelophylax +121165,bio/PelophylaxHubeiensis +121168,bio/GlandiranaTientaiensis +121175,bio/Rana_Subgenus +121178,bio/Pantherana +121227,bio/Pthirus +121228,bio/PthirusPubis +121236,bio/Aquarana +121281,bio/Gymnothorax +121327,bio/Erythrolamprus +121350,bio/ErythrolamprusTyphlus +121400,bio/GallirexJohnstoni +121835,bio/Cacopsylla +121839,bio/CacopsyllaPyri +121869,bio/HylaArborea +122765,bio/TrachypithecusCristatus +123222,bio/Cypselurus +123242,bio/Triphoturus +123243,bio/TriphoturusNigrescens +123332,bio/Diogenichthys +123333,bio/DiogenichthysAtlanticus +123654,bio/Muscisaxicola +123659,bio/MuscisaxicolaGriseus +123717,bio/Hypoatherina +124104,bio/LiburnascincusCoensis +125062,bio/Mitu +125072,bio/Pipile +125246,bio/VandijkophrynusAngusticeps +125247,bio/PoyntonophrynusDombensis +125252,bio/SclerophrysLemairii +125253,bio/MertensophryneLindneri +125854,bio/VandijkophrynusInyangae +125862,bio/Copsychus +126328,bio/Coris_BonyFishes +126587,bio/Nyctixalus +126670,bio/Chlorurus +126965,bio/Theloderma +126966,bio/ThelodermaCorticale +127010,bio/Fejervarya +127020,bio/HylaranaChalconota +127021,bio/HylaranaNigrovittata +127028,bio/Sphaerotheca_FrogsToads +127079,bio/SphaerothecaBreviceps +127175,bio/PolypedatesMutus +127313,bio/Boloria +127345,bio/Kallima +127629,bio/Hildebrandtia_FrogsToads +127641,bio/HildebrandtiaOrnata +127645,bio/HoplobatrachusOccipitalis +127654,bio/PtychadenaAnchietae +127971,bio/Pangio +127972,bio/PangioKuhlii +128105,bio/ProechimysGuyannensis +129005,bio/HoplobatrachusCrassus +129007,bio/Indirana +129008,bio/KaloulaTaprobanica +129015,bio/Micrixalus +129016,bio/MicrixalusFuscus +129017,bio/Microhyla +129020,bio/Nyctibatrachus +129025,bio/RaorchestesCharius +129028,bio/Clinotarsus +129029,bio/ClinotarsusCurtipes +129072,bio/Tylosurus +129077,bio/TylosurusCrocodilus +129107,bio/Xenentodon +129108,bio/XenentodonCancila +129216,bio/LyciasalamandraLuschani +129237,bio/BolitoglossaEngelhardti +129241,bio/BolitoglossaMorio +129398,bio/Appias +129788,bio/RuditapesPhilippinarum +129884,bio/Tylototriton +129885,bio/TylototritonTaliangensis +130717,bio/Archiaphyosemion +130720,bio/Enneapterygius +130738,bio/Pachydactylus +130786,bio/MicrixalusKottigeharensis +130825,bio/OchotonaCurzoniae +131645,bio/GalerucellaNymphaeae +132459,bio/PuerariaMontana +132587,bio/AnserFabalis +132696,bio/BoloriaEpithore +132697,bio/CoenonymphaTullia +132699,bio/Euphilotes +132706,bio/ParnassiusPhoebus +132707,bio/Proserpinus +132708,bio/ProserpinusClarkiae +132709,bio/Zerynthia +132710,bio/ZerynthiaRumina +133894,bio/Penaeus +134396,bio/Sesamia +134470,bio/Stramonita +134471,bio/StramonitaHaemastoma +134629,bio/Plectropomus +134700,bio/HyperoliusHorstockii +134759,bio/Gyrinophilus +134760,bio/GyrinophilusPorphyriticus +134762,bio/PseudotritonRuber +134910,bio/ApodemusUralensis +134919,bio/Pungitius +135775,bio/Sillaginodes +135776,bio/SillaginodesPunctatus +137062,bio/Barbodes +138069,bio/Lysandra +138070,bio/LysandraBellargus +138083,bio/InciliusMacrocristatus +138084,bio/InciliusCampbelli +138085,bio/InciliusNebulifer +139271,bio/PinusSubgenPinus +139973,bio/Archips +140017,bio/LampropeltisTriangulum +140444,bio/LophuraHatinhensis +141838,bio/Probosciger +141839,bio/ProboscigerAterrimus +141976,bio/PlethodonCinereus +142466,bio/AphelocomaCalifornica +142475,bio/Poecile +143020,bio/TomicusPiniperda +143028,bio/Anableps +143039,bio/Semaprochilodus +143313,bio/ChlorophthalmusAgassizi +143329,bio/Crenimugil +143330,bio/CrenimugilCrenilabis +143350,bio/PagrusMajor +143399,bio/Schistura +143402,bio/Leptobotia +143403,bio/LeptobotiaElongata +143421,bio/LeptopelisModestus +143422,bio/LeptopelisNatalensis +143439,bio/PolypedatesMaculatus +143442,bio/PtychadenaOxyrhynchus +143461,bio/Phrynobatrachus +143502,bio/ChiromantisRufescens +143526,bio/MicrohylaOrnata +143529,bio/PhelsumaLaticauda +143533,bio/PolypedatesColletti +143535,bio/PtychadenaPorosissima +143539,bio/CorrelophusCiliatus +143558,bio/Breviceps +143562,bio/Dermatonotus +143563,bio/DermatonotusMuelleri +143566,bio/Elachistocleis +143568,bio/HeleophryneRegis +143592,bio/SphaerothecaDobsonii +143627,bio/Micryletta +143647,bio/Strongylopus +143648,bio/StrongylopusFasciatus +143667,bio/Ramanella +143895,bio/NotacanthusChemnitzii +144708,bio/Bombus_Subgenus +145400,bio/AnolisLeachii +145888,bio/Anartia_Butterflies +146139,bio/Selar +146146,bio/SelarCrumenophthalmus +146617,bio/PhalacrocoraxCapillatus +146625,bio/LeucocarboChalconotus +146711,bio/OccidozygaMartensii +146730,bio/EuphlyctisEhrenbergii +146731,bio/HydrophylaxGracilis +147650,bio/AllochrocebusSolatus +147909,bio/EuryceaSpelaea +147949,bio/MicropterusDolomieu +149981,bio/Lefua +149983,bio/OsteogasterRabauti +149984,bio/Gonorynchus +149986,bio/GonorynchusGreyi +150241,bio/Arthroleptella +150245,bio/ArthroleptellaLightfooti +150257,bio/Amblyeleotris +150287,bio/Boleophthalmus +150290,bio/Brachygobius +150297,bio/Glossogobius +150305,bio/Istigobius +150319,bio/PtereleotrisZebra +150323,bio/PtereleotrisEvides +150324,bio/Redigobius +150325,bio/RedigobiusBikolanus +150436,bio/PanulirusVersicolor +150710,bio/DendropsophusMicrocephalus +151303,bio/Dendrolimus +151304,bio/DendrolimusPini +151541,bio/DanausChrysippus +151542,bio/Danaus_Subgenus +151543,bio/Anosia +151724,bio/Fusigobius +152347,bio/LithobatesYavapaiensis +152539,bio/EcseniusBicolor +153621,bio/MycteropercaBonaci +154031,bio/Limia +154334,bio/MacacineGammaherpesvirus5 +154348,bio/LefuaCostata +154816,bio/GyrinocheilusAymonieri +154823,bio/MoxostomaCervinum +155165,bio/PlebejusArgyrognomon +155167,bio/PlebejusMelissa +156159,bio/Colluricincla +156196,bio/Abrothrix +156562,bio/Cyanistes +156563,bio/CyanistesCaeruleus +156564,bio/Lophophanes +156565,bio/LophophanesCristatus +156870,bio/NidiranaOkinavana +156873,bio/HylaranaLatouchii +156874,bio/PeltophrynePeltocephala +156875,bio/PeltophryneGuentheri +156876,bio/PeltophryneGundlachi +156877,bio/PeltophryneLonginasus +156878,bio/PeltophryneTaladai +156879,bio/PeltophryneEmpusa +156881,bio/DuttaphrynusStomaticus +156896,bio/Acontias +156991,bio/Liua_Salamanders +156992,bio/LiuaShihi +157304,bio/Anoplophora +157791,bio/VignaRadiata +158052,bio/PicaHudsonia +158688,bio/PlebejusMelissaSamuelis +159457,bio/RhinellaMacrorhina +160130,bio/Goniodes +160721,bio/EpinephelusItajara +160725,bio/HyporthodusNiphobles +160734,bio/PlectropomusLeopardus +160741,bio/Rypticus +160742,bio/RypticusSaponaceus +160760,bio/SpinusSpinus +161274,bio/BombinaMaxima +161276,bio/OreochromisUrolepisHornorum +161447,bio/Corythoichthys +161459,bio/Hippichthys +161623,bio/Passerculus +161624,bio/PasserculusSandwichensis +161679,bio/Limosa +161680,bio/LimosaLimosa +161697,bio/Leptobrachium +161698,bio/LeptobrachiumChapaense +161701,bio/Xenophrys +161704,bio/MicrylettaInornata +161706,bio/RhacophorusReinwardtii +161707,bio/KurixalusVerrucosus +161767,bio/AmphiprionPercula +161939,bio/Cryptoblepharus +161940,bio/CryptoblepharusBoutonii +163119,bio/Scorpaenopsis +163125,bio/Pampus +163128,bio/Arripis +163129,bio/ArripisGeorgianus +163133,bio/Oplegnathus +163134,bio/OplegnathusFasciatus +163136,bio/Kuhlia +163137,bio/KuhliaMugil +163828,bio/PercinaPalmaris +164016,bio/Pterygoplichthys +164282,bio/AmazophrynellaMinuta +164286,bio/Nectophrynoides +164291,bio/Pedostibes +164293,bio/Pelophryne +164301,bio/Brachycephalus +164302,bio/BrachycephalusEphippium +164310,bio/LeptobrachellaPelodytoides +164648,bio/PiliocolobusBadius +164736,bio/AmietiaFuscigula +164737,bio/Amietia +164738,bio/AmietiaVertebralis +164740,bio/AmniranaGalamensis +164743,bio/TomopternaTuberculosa +164744,bio/Apristurus +164746,bio/ApristurusLaurussonii +164968,bio/Paramesotriton +164969,bio/ParamesotritonCaudopunctatus +164970,bio/ParamesotritonDeloustali +164971,bio/ParamesotritonGuanxiensis +164973,bio/TylototritonVerrucosus +165098,bio/Scolymia +165099,bio/ScolymiaCubensis +165226,bio/RhinellaMargaritifera +165846,bio/AnartiaJatrophae +165858,bio/DanausMelanippus +165861,bio/DanausEresimus +166779,bio/PtereleotrisMicrolepis +167803,bio/Aldabrachelys +167804,bio/AldabrachelysGigantea +167931,bio/Glandirana +167933,bio/HylaChinensis +167935,bio/OdorranaGrahami +167953,bio/ProechimysQuadruplicatus +168630,bio/Chilo +168631,bio/ChiloSuppressalis +170207,bio/SimiasConcolor +171407,bio/RanitomeyaReticulata +171585,bio/NymphalisIo +171592,bio/NymphalisAntiopa +171594,bio/NymphalisPolychloros +171801,bio/Argynnis +171959,bio/SorghumBicolorSubspDrummondii +172122,bio/Scopelarchus +172268,bio/Argyrosomus +172552,bio/LychasMucronatus +172918,bio/Tor +173242,bio/OncorhynchusMasouFormosanus +173307,bio/Hemicaranx +173308,bio/HemicaranxLeucurus +173330,bio/Trachinotus +174268,bio/Alcis +174269,bio/AlcisRepandata +175116,bio/Chloropsis +175439,bio/ZebrasomaFlavescens +175823,bio/Aceros +175930,bio/CarpodacusErythrinus +176013,bio/AraChloropterus +176014,bio/AraMacao +176015,bio/AratingaSolstitialis +176038,bio/Eolophus +176039,bio/EolophusRoseicapilla +176042,bio/Nestor +176043,bio/NestorMeridionalis +176187,bio/TakifuguPorphyreus +176188,bio/TakifuguPoecilonotus +176316,bio/CicindelaMaritima +176508,bio/MakalataMacrura +177060,bio/TakifuguVermicularis +177088,bio/Maconellicoccus +177089,bio/MaconellicoccusHirsutus +177184,bio/NeoromiciaBrunneus +178292,bio/Paragnetina +178293,bio/ParagnetinaMedia +179360,bio/Carangoides +179362,bio/CarangoidesOtrynter +179673,bio/Diachrysia +179674,bio/DiachrysiaChrysitis +180173,bio/Cylindraspis +180174,bio/CylindraspisInepta +180214,bio/MelanoplusSpretus +181096,bio/CorvusCornix +181099,bio/OriolusOriolus +181118,bio/Pseudopodoces +181119,bio/PseudopodocesHumilis +181329,bio/Hypsipyla +181330,bio/HypsipylaRobusta +181392,bio/Carapus +181398,bio/Sirembo +181399,bio/SiremboImberbis +181421,bio/Caulophryne +181422,bio/CaulophrynePelagica +181436,bio/Ostichthys +181437,bio/OstichthysJaponicus +181442,bio/Zenion +181443,bio/ZenionJaponicum +181473,bio/Arcos +182256,bio/AlouattaGuariba +182935,bio/Mniotilta +182936,bio/MniotiltaVaria +182948,bio/Setophaga +183176,bio/Xiphocolaptes +183177,bio/XiphocolaptesMajor +183652,bio/Peprilus +183653,bio/PeprilusTriacanthus +184238,bio/CrocodylusPalustris +184439,bio/Centropristis +184440,bio/CentropristisStriata +184446,bio/Pristigenys +184539,bio/CriocerisDuodecimpunctata +184780,bio/MecistopsCataphractus +185585,bio/Crex +185586,bio/CrexCrex +185747,bio/Quietula +185748,bio/QuietulaYcauda +185749,bio/Lythrypnus +185875,bio/Anisosticta +185876,bio/AnisostictaNovemdecimpunctata +186211,bio/GoniodesGigas +186463,bio/Ruditapes +186466,bio/Mizuhopecten +186600,bio/GonyosomaBoulengeri +186601,bio/Sonora +186990,bio/HipposiderosArmiger +187007,bio/MiniopterusFuliginosus +187414,bio/Amblyospiza +187415,bio/AmblyospizaAlbifrons +188106,bio/Cetoscarus +188107,bio/CetoscarusBicolor +188113,bio/Hipposcarus +188374,bio/Ardeola +188380,bio/IxobrychusCinnamomeus +188567,bio/Aselliscus +188568,bio/AselliscusStoliczkanus +188718,bio/Hyphessobrycon +188763,bio/PanineBetaherpesvirus2 +189497,bio/Echidna +189919,bio/Pseudacris +189921,bio/Saurenchelys +189922,bio/SaurenchelysFierasfer +190368,bio/Xanthorhoe +190369,bio/XanthorhoeFerrugata +190476,bio/CaimanLatirostris +191198,bio/BuergeriaOxycephala +191206,bio/ThelodermaAsperum +191398,bio/BoloriaSelene +191473,bio/DiscoglossusMontalentii +191474,bio/DiscoglossusSardus +191476,bio/PelodytesCaucasicus +191477,bio/PelobatesFuscus +191716,bio/ArchipsRosana +191812,bio/Somniosus +191813,bio/SomniosusMicrocephalus +191873,bio/ThylamysPusillus +191975,bio/Paralucia +191976,bio/ParaluciaPyrodiscus +192188,bio/GrapholitaMolesta +192190,bio/Pandemis +192191,bio/PandemisHeparana +192206,bio/Callaeas +192207,bio/CallaeasCinereus +192592,bio/Erpeton +192593,bio/ErpetonTentaculatum +192736,bio/Scinax +192744,bio/Hyalinobatrachium +192752,bio/Lithobates +194199,bio/PseudacrisOcularis +194917,bio/CeratitisCosyra +195315,bio/Narcine +195593,bio/Ancylopsetta +195595,bio/Aseraggodes +195596,bio/AseraggodesKobensis +195651,bio/Symphurus +195653,bio/SymphurusPlagusia +195821,bio/AnablepsAnableps +196249,bio/Antaresia +196387,bio/NotamacropusIrma +196770,bio/MoxostomaMacrolepidotum +196774,bio/MoxostomaPappillosum +196781,bio/MoxostomaAustrinum +197464,bio/AgalychnisCallidryas +198026,bio/Melanitta +198027,bio/MelanittaNigra +198323,bio/CinaraTujafilina +198633,bio/Eristalis +198635,bio/EristalisTenax +198938,bio/ArtemisiospizaBelli +201800,bio/Pantherophis +201991,bio/StrixOccidentalis +201992,bio/StrixOccidentalisLucida +202063,bio/NototheniaNeglecta +202455,bio/Aulacorthum +202456,bio/AulacorthumSolani +202595,bio/Pteragogus +202839,bio/PachydactylusWahlbergii +203116,bio/SchizothoraxCurvifrons +203276,bio/Aboma +203277,bio/AbomaEtheostoma +203558,bio/TurdusGrayi +203786,bio/Bradypterus +204813,bio/Lagocephalus +204814,bio/LagocephalusLunaris +204942,bio/SacaliaBealei +204965,bio/CuoraFlavomarginata +204968,bio/CuoraGalbinifrons +204969,bio/Pelodiscus +205083,bio/DreissenaRostriformis +205123,bio/ChannaMarulius +205131,bio/Mystus +205595,bio/GenettaMaculata +206143,bio/PampusArgenteus +206427,bio/SitophilusLinearis +206429,bio/Rhabdalestes +208071,bio/CurrucaCantillans +209165,bio/Ompok +209478,bio/PseudophilautusFemoralis +209479,bio/PhilautusAurifasciatus +209480,bio/RaorchestesSignatus +209678,bio/Proceratophrys +209679,bio/ProceratophrysBoiei +209680,bio/Eupsophus +210138,bio/Eleutheronema +210139,bio/EleutheronemaTetradactylum +210202,bio/ZhangixalusSchlegelii +210409,bio/PortunusTrituberculatus +210425,bio/Proteus_Salamanders +210570,bio/Microstoma_BonyFishes +210572,bio/Parachela_BonyFishes +210578,bio/Centropogon_BonyFishes +210581,bio/Gouania_BonyFishes +210590,bio/Ophidion_BonyFishes +210591,bio/Scuticaria_BonyFishes +210628,bio/Macrognathus +211510,bio/ThectocercusAcuticaudatus +211679,bio/PipilePipile +211967,bio/CentrocercusMinimus +212358,bio/BoanaAlbomarginata +213803,bio/TrachycephalusVenulosus +213858,bio/ElapheSauromates +214017,bio/AcronictaDactylina +214018,bio/AcronictaHasta +214130,bio/Euchaetes +214131,bio/EuchaetesEgle +214132,bio/Eulithis +214133,bio/EulithisDiversilineata +214156,bio/ApantesisVirguncula +214160,bio/Haploa +214161,bio/HaploaConfusa +214170,bio/Hydraecia +214171,bio/HydraeciaMicacea +214181,bio/KorscheltellusLupulinus +214293,bio/OrthosiaRevicta +214331,bio/Pyrrharctia +214332,bio/PyrrharctiaIsabella +214365,bio/Spilosoma +214366,bio/SpilosomaVirginicum +214430,bio/Scortum +214431,bio/ScortumBarcoo +214449,bio/CrociduraOlivieri +214486,bio/SebastesSchlegelii +214687,bio/MusaAcuminataSubspMalaccensis +215328,bio/Halieutaea +215329,bio/HalieutaeaStellata +215336,bio/AtherinomorusLacunosus +215357,bio/Larimichthys +215358,bio/LarimichthysCrocea +215380,bio/Parapercis +215402,bio/ChannaArgus +215440,bio/NototodarusSloanii +216193,bio/CurrucaCommunis +217619,bio/CucumisMeloSubspAgrestis +217634,bio/AnoplophoraGlabripennis +218470,bio/Philoria +218474,bio/PhiloriaKundagungan +218713,bio/Borbo +218714,bio/BorboCinnara +218719,bio/Carterocephalus +218720,bio/CarterocephalusPalaemon +218734,bio/Hesperia +218743,bio/Ochlodes +218747,bio/Pelopidas +218750,bio/PelopidasMathias +219332,bio/Euclea_Moths +219333,bio/EucleaDelphinii +219593,bio/AythyaFerina +220671,bio/PlenodomusLingamleptosphaeriaMaculansSpeciesComplex +220781,bio/Glaphyromorphus +221568,bio/ProteusAnguinus +221865,bio/Jenkinsia +221866,bio/JenkinsiaLamprotaenia +221904,bio/Hydrotaea +221905,bio/HydrotaeaAenescens +223138,bio/Canthigaster +223772,bio/Geranoaetus +223773,bio/GeranoaetusMelanoleucus +223805,bio/SynagropsJaponicus +223891,bio/SolanumVirginianum +224340,bio/XenopusEpitropicalis +224704,bio/Harengula +224706,bio/Brevoortia +224708,bio/BrevoortiaTyrannus +224715,bio/Etrumeus +224716,bio/EtrumeusTeres +224717,bio/Anchoa +224718,bio/AnchoaMitchilli +225060,bio/MicropterusPunctulatus +225117,bio/PyrusXBretschneideri +225336,bio/Alaus +225337,bio/AlausMyops +225390,bio/LepomisMiniatus +225391,bio/MicropterusFloridanus +226820,bio/Ratufa +226889,bio/PleurodelesPoireti +227460,bio/ApaloneSpiniferaAspera +227977,bio/Macrodon +227978,bio/MacrodonAncylodon +228010,bio/Lampides +228011,bio/LampidesBoeticus +228029,bio/CyclonaiasKieneriana +228088,bio/Cyclonaias +228306,bio/LarvivoraCyane +228420,bio/LeptodactylusMelanonotus +228422,bio/PristimantisRidens +228425,bio/EleutherodactylusPantoni +228429,bio/CraugastorAugusti +228433,bio/CraugastorCrassidigitus +228434,bio/CraugastorLongirostris +228444,bio/CraugastorLaticeps +228445,bio/CraugastorChac +228449,bio/CraugastorStejnegerianus +228452,bio/CraugastorBransfordii +228563,bio/Petroica +228564,bio/PetroicaTraversi +228608,bio/XenopusGilli +228648,bio/Euhyas +228649,bio/Craugastor +228670,bio/SpeaHammondii +229057,bio/LagocephalusSceleratus +230655,bio/SaxicolaDacotiae +230979,bio/Euryapteryx +230980,bio/EuryapteryxCurtus +231021,bio/EspadaranaProsoblepon +231224,bio/PseudacrisNigrita +233201,bio/Squalius +233775,bio/MegophrysFeae +233779,bio/SpeaBombifrons +233780,bio/SpeaIntermontana +234793,bio/SalmoLetnica +235326,bio/PhylloscopusChloronotus +235354,bio/NymphalisLalbum +236742,bio/UromastyxBenti +236793,bio/ChiloSacchariphagus +238031,bio/ElopichthysBambusa +238032,bio/Elopichthys +238840,bio/GlyptocephalusStelleri +240164,bio/Johnius +240173,bio/CraugastorOmiltemanus +240395,bio/GlandiranaEmeljanovi +240396,bio/Meristogenys +240405,bio/Staurois +240406,bio/StauroisLatopalmatus +241069,bio/MenthaXGracilis +241142,bio/AbrothrixJelskii +241267,bio/Bodianus +241338,bio/Pseudojuloides +241340,bio/PseudojuloidesCerasinus +241532,bio/Cinnycerthia +241749,bio/Arremon +242266,bio/Plebejus +242581,bio/PseudacrisCadaverina +242978,bio/Antennarius +242980,bio/Histrio +242981,bio/HistrioHistrio +243225,bio/ViduaCodringtoni +243561,bio/Plotosus +243562,bio/PlotosusLineatus +244289,bio/Peridroma +244290,bio/PeridromaSaucia +244447,bio/CynoglossusSemilaevis +244448,bio/Cleisthenes +244449,bio/CleisthenesHerzensteini +244453,bio/Zebrias +245045,bio/Aplonis +245046,bio/AplonisPanayensis +245147,bio/LiuaTsinpaensis +245712,bio/Dianema_BonyFishes +245776,bio/DianemaUrostriatum +245847,bio/MimusTrifasciatus +245850,bio/MimusMacdonaldi +246411,bio/LimnonectesMicrodiscus +246418,bio/LimnonectesMacrocephalus +247085,bio/Megophrys +247094,bio/HymenochirusBoettgeri +247538,bio/GranatinaGranatina +247977,bio/Aidemosyne +247978,bio/AidemosyneModesta +248134,bio/Tenualosa +248792,bio/GastrophryneOlivacea +248868,bio/PhyllomedusaTomopterna +248880,bio/Trachycephalus +248943,bio/Adenomera +248945,bio/NannophryneVariegata +249001,bio/Pseudogobius +249002,bio/PseudogobiusOlorum +251502,bio/OmmatotritonVittatus +254007,bio/DecimGroup +254361,bio/Autographa +254363,bio/AutographaGamma +254381,bio/Plusia +254382,bio/PlusiaFestucae +254538,bio/Falcunculus +254539,bio/FalcunculusFrontatus +255532,bio/Podothecus +255564,bio/DipturusTrachyderma +255570,bio/Kryptopterus +257879,bio/AeorestesCinereus +257884,bio/MyotisCiliolabrum +257886,bio/Pseudopentaceros +258452,bio/StegastesLeucostictus +259990,bio/Lile +260511,bio/Argentina_BonyFishes +260891,bio/Saproscincus +261519,bio/ParapercisSexfasciata +261944,bio/LiopholisInornata +262014,bio/Xenopus_Subgenus +262651,bio/PapilioDemodocus +262664,bio/PapilioThoas +263371,bio/Saucrobotys +263372,bio/SaucrobotysFutilalis +263450,bio/Lophostoma_Bats +263451,bio/LophostomaSilvicolum +263700,bio/Asymbolus +263928,bio/YponomeutaRorrellus +264213,bio/LutjanusSanguineus +264363,bio/Paragobiodon +264364,bio/ParagobiodonXanthosoma +265032,bio/MegophrysShapingensis +265034,bio/Scutiger_FrogsToads +265035,bio/ScutigerBoulengeri +265036,bio/XenophrysMinor +265040,bio/LeptobrachiumBoringii +265041,bio/LeptobrachiumLiui +265043,bio/Oreolalax +265044,bio/OreolalaxPopei +265359,bio/Lycaena +266506,bio/BolitoglossaDunni +266507,bio/BolitoglossaFlavimembris +266509,bio/BolitoglossaLincolni +266517,bio/BolitoglossaRostrata +267130,bio/AcanthogobiusHasta +267839,bio/MinervaryaRufescens +267840,bio/MinervaryaBrevipalmata +267844,bio/HydrophylaxMalabaricus +267845,bio/IndosylviranaAurantiaca +268489,bio/Lasiodora +268490,bio/LasiodoraParahybana +269193,bio/Thorius +270251,bio/Pseudemys +270252,bio/PseudemysConcinna +270329,bio/LepomisGibbosus +270453,bio/Zizina +270454,bio/ZizinaOtis +270463,bio/VanessaIndica +270526,bio/Solenostomus +270536,bio/Toxotes +270551,bio/Epigonus +270567,bio/Platycephalus +270573,bio/Labracinus +270574,bio/LabracinusCyclophthalmus +270577,bio/Pseudanthias +270608,bio/Bembrops +271217,bio/MythimnaSeparata +272047,bio/CalidrisRuficollis +272189,bio/Lankanectes +272190,bio/LankanectesCorrugatus +272789,bio/Atypichthys +272797,bio/HolacanthusTricolor +274457,bio/EubleekeriaJonesi +274464,bio/Gerres +274727,bio/Caracanthus +274728,bio/CaracanthusMaculatus +274730,bio/Pseudogramma +275431,bio/Ircinia +278733,bio/Menticirrhus +278734,bio/MenticirrhusAmericanus +278736,bio/MenticirrhusLittoralis +278772,bio/Stellifer +278773,bio/StelliferRastrifer +279537,bio/DesmognathusFolkertsi +279931,bio/ArenariaMelanocephala +279961,bio/CalidrisPusilla +279982,bio/SmiliscaBaudinii +280780,bio/RhabdalestesMaunensis +281757,bio/Otocinclus +282069,bio/PhylloscopusYunnanensis +282253,bio/Ogilbyina +282254,bio/OgilbyinaNovaehollandiae +282315,bio/Zizeeria +282316,bio/ZizeeriaKnysna +282391,bio/LycaenaPhlaeas +283033,bio/Sander +283035,bio/SanderLucioperca +283213,bio/LeptobrachiumHasseltii +283215,bio/MegophrysOmeimontis +283217,bio/MegophrysMicrostoma +283373,bio/CypselurusHiraii +283843,bio/HylesGallii +283868,bio/Hippotion +283870,bio/HippotionCelerio +284583,bio/PerccottusGlenii +284584,bio/Perccottus +284700,bio/Dicrossus +285991,bio/Homopus +285992,bio/ChersobiusSignatus +285996,bio/HomopusAreolatus +286016,bio/ChersobiusSolus +286536,bio/Coilia +286537,bio/CoiliaMystus +288314,bio/Salamandrella +288315,bio/SalamandrellaKeyserlingii +288316,bio/Pachyhynobius +288317,bio/PachyhynobiusShangchengensis +288645,bio/Enoplometopus +288646,bio/EnoplometopusOccidentalis +288788,bio/Lechriodus +288789,bio/LechriodusMelanopyga +290154,bio/Bactericera +290155,bio/BactericeraCockerelli +291688,bio/HesperiaComma +291689,bio/HesperiaJuba +291690,bio/HesperiaLindseyi +291691,bio/HesperiaNevada +291694,bio/Polites +291695,bio/PolitesSabuleti +291793,bio/Chanodichthys +291939,bio/LimnonectesFragilis +293340,bio/Grapholita +293908,bio/Cheilopogon +294366,bio/Pseudobranchus +294758,bio/DicamptodonAterrimus +295659,bio/Lasioderma +295660,bio/LasiodermaSerricorne +297009,bio/Lyciasalamandra +297528,bio/SaproscincusMustelinus +299648,bio/LithobatesMaculatus +299668,bio/LithobatesPustulosus +299683,bio/LithobatesSevosus +299684,bio/LithobatesCapito +299727,bio/RanoideaDahlii +300230,bio/ChelonodontopsPatoca +300297,bio/Chilatherina +300304,bio/LabidesthesSicculus +300414,bio/Variola +300415,bio/VariolaLouti +300855,bio/Bembecia +300877,bio/PrionailurusBengalensisEuptilurus +301030,bio/Pennisetia +301031,bio/PennisetiaHylaeiformis +301037,bio/BembeciaIchneumoniformis +301040,bio/Pyropteron +301041,bio/PyropteronChrysidiforme +301166,bio/EuphilotesBattoides +301283,bio/Neosilurus +301299,bio/RhinellaAtacamensis +302418,bio/SmutsiaTemminckii +302537,bio/AnaxyrusBaxteri +302540,bio/AnaxyrusHemiophrys +302541,bio/AnaxyrusCalifornicus +302544,bio/InciliusMarmoreus +302546,bio/InciliusMelanochlorus +302776,bio/Pristolepis +302777,bio/PristolepisFasciata +303304,bio/AraGlaucogularis +303694,bio/Pseudobalistes +303695,bio/PseudobalistesFuscus +303738,bio/Aracana +303747,bio/Torquigener +303935,bio/CarcharhinusPerezii +304009,bio/HydrocynusBrevis +304017,bio/HyphessobryconEques +305659,bio/Dioryctria +305662,bio/DioryctriaAbietella +305819,bio/PseudophilautusLeucorhinus +305821,bio/PhilautusNeelanethrus +306578,bio/EpinephelusChlorostigma +306589,bio/Cophixalus +306590,bio/CophixalusOrnatus +307205,bio/FanniaCanicularis +307978,bio/PseudobranchusStriatus +308091,bio/Milyeringa +308092,bio/MilyeringaVeritas +309541,bio/TakifuguObscurus +309910,bio/Pseudoplatystoma +309911,bio/PseudoplatystomaCorruscans +310513,bio/OchlerotatusSollicitans +310571,bio/EpinephelusLanceolatus +310664,bio/OdorranaSwinhoana +310666,bio/OdorranaHosii +310668,bio/ClinotarsusAlticola +310713,bio/CeratotheriumSimumCottoni +310804,bio/HeliconiusPeruvianus +310915,bio/PangasianodonHypophthalmus +311037,bio/KallimaInachus +311327,bio/Tortrix +311328,bio/TortrixViridana +311576,bio/Gracixalus +311577,bio/GracixalusCarinensis +311778,bio/Kurixalus +311779,bio/KurixalusEiffingeri +311820,bio/PseudophilautusSchmarda +314003,bio/LythrypnusDalli +314240,bio/Idiacanthus_BonyFishes +314248,bio/Lophiodes +314334,bio/DryophytesAvivoca +315381,bio/PiculusLeucolaemus +315409,bio/Iniistius +316131,bio/Schedophilus +316160,bio/PseudobarbusQuathlambae +316162,bio/Nematalosa +316163,bio/NematalosaErebi +317167,bio/PsalidoprocneNitens +317171,bio/PsalidoprocneObscura +317174,bio/PsalidoprocnePristoptera +317299,bio/Acris +317301,bio/AcrisGryllus +317303,bio/AgalychnisSpurrelli +317308,bio/Osteopilus +317312,bio/Cyclorana +317313,bio/RanoideaBrevipes +317319,bio/GastrothecaMarsupiata +317327,bio/BoanaBoans +317335,bio/TlalocohylaLoquax +317336,bio/ExerodontaMelanomma +317344,bio/IsthmohylaRivularis +317360,bio/Ischnocnema +317363,bio/LitoriaPeronii +317382,bio/AgalychnisLemur +317388,bio/SmiliscaFodiens +317398,bio/SmiliscaCyanosticta +317402,bio/Triprion +317403,bio/TriprionPetasatus +317899,bio/LeuciscusDanilewskii +317942,bio/Microbatrachella +317943,bio/MicrobatrachellaCapensis +318254,bio/NyctimantisBrunoi +318255,bio/Aplastodiscus +318302,bio/AplastodiscusAlbosignatus +318367,bio/LitoriaMeiriana +318376,bio/TrachycephalusResinifictrix +318396,bio/ScinaxStaufferi +318402,bio/Nyctimantis +318405,bio/Phasmahyla +318408,bio/Pleurodema +318412,bio/Tepuihyla +318413,bio/TepuihylaEdelcae +318551,bio/AmolopsLoloensis +318742,bio/Mayaheros +318743,bio/MayaherosUrophthalmus +319323,bio/BarbodesSemifasciolatus +319443,bio/Melamphaes +319444,bio/MelamphaesLugubris +319543,bio/MyliobatisCalifornica +319817,bio/OryzorictesHova +320016,bio/Xestia +320266,bio/Catopsilia +320267,bio/CatopsiliaPomona +320293,bio/Pyrisitia +320294,bio/PyrisitiaProterpia +320472,bio/IsthmuraSierraoccidentalis +320587,bio/Prionotus +320612,bio/PodothecusAccipenserinus +321043,bio/HibiscusKokio +321806,bio/InciliusCycladen +322711,bio/HabromysLepturus +323737,bio/Trachylepis +323754,bio/LissotritonMontandoni +323755,bio/LissotritonItalicus +324348,bio/ParadactylodonPersicus +324349,bio/PseudotritonMontanus +325165,bio/Nomascus +325167,bio/Hoolock +325554,bio/RanaSauteri +325556,bio/AmolopsChunganensis +325557,bio/AmolopsGranulosus +325558,bio/AmolopsLifanensis +326431,bio/Kryptolebias +326940,bio/OdorranaVersabilis +326968,bio/ZiziphusJujuba +326975,bio/Kalophrynus +327781,bio/PseudogrammaGregoryi +327803,bio/MycteropercaAcutirostris +327806,bio/MycteropercaFusca +327815,bio/Acanthistius +327941,bio/MycteropercaInterstitialis +327944,bio/EpinephelusDaemelii +327958,bio/AmietiaAngolensis +327960,bio/AmolopsHainanensis +327965,bio/PhrynobatrachusNatalensis +329116,bio/TorTambroides +329257,bio/PulchranaGlandulosa +329258,bio/PulchranaBaramica +330459,bio/Hyperomyzus +330460,bio/HyperomyzusLactucae +332575,bio/EuryceaCirrigera +332576,bio/EuryceaGuttolineata +332578,bio/PlethodonAngusticlavius +333424,bio/CarapusBoraborensis +333676,bio/AmniranaAlbolabris +333684,bio/ArthroleptidesMartiensseni +333686,bio/PhrynobatrachusAcridoides +333694,bio/StrongylopusGrayii +334384,bio/Diapterus +334885,bio/PseudopentacerosRichardsoni +334892,bio/AtypichthysStrigatus +334915,bio/VariolaAlbimarginata +334930,bio/Cymbacephalus +334938,bio/Pterygotrigla +334942,bio/ChelidonichthysKumu +334986,bio/HydrolagusOgilbyi +334999,bio/PateobatisJenkinsii +335394,bio/Actinemys +335395,bio/ActinemysMarmorata +335999,bio/ManducaQuinquemaculata +336072,bio/LitoriaMicrobelos +336074,bio/LitoriaRothii +336075,bio/LitoriaBicolor +336077,bio/LitoriaNasuta +336078,bio/LitoriaInermis +336080,bio/LitoriaCoplandi +336081,bio/LitoriaWatjulumensis +336082,bio/CycloranaLongipes +336083,bio/RanoideaAlboguttata +337631,bio/Brachyplatystoma +337742,bio/Belodontichthys +337775,bio/KryptopterusMacrocephalus +337883,bio/TrygonorrhinaFasciata +338093,bio/PterygoplichthysScrophus +339868,bio/Lissotriton +340506,bio/Lepidosaphes +341695,bio/Oreocryptophis +341696,bio/OreocryptophisPorphyraceus +342440,bio/Heteropriacanthus +342441,bio/HeteropriacanthusCruentatus +342442,bio/Mulloidichthys +342569,bio/Calotriton +342815,bio/QuasipaaExilispinosa +342817,bio/NanoranaLiebigii +342819,bio/NanoranaMaculosa +343929,bio/CopsychusSaularis +345721,bio/PontiaBeckerii +346248,bio/Dosidicus +346249,bio/DosidicusGigas +346448,bio/RhaeboGuttatus +346451,bio/PhrynoidisJuxtasper +349641,bio/Plectorhinchus +351164,bio/PapilioPolyctor +351416,bio/Athyma +352245,bio/CleisthenesPinetorum +354129,bio/AmbystomaRivulare +354432,bio/Polytus +354433,bio/PolytusMellerborgi +354943,bio/Gesta +354944,bio/GestaGesta +355513,bio/Leuresthes +355514,bio/LeuresthesTenuis +355677,bio/HydrophisStokesii +355912,bio/Gnorimoschema +355915,bio/GnorimoschemaGallaesolidaginis +356210,bio/HyalinobatrachiumFleischmanni +356215,bio/LechriodusFletcheri +356218,bio/LeptopelisBocagii +356228,bio/AlcalusBaluensis +356243,bio/PtychadenaCooperi +356264,bio/Calluella +356265,bio/CalluellaGuttulata +356300,bio/Heleioporus +356301,bio/HeleioporusAustraliacus +356314,bio/PapuranaDaemeli +356329,bio/Sooglossus +357280,bio/Acantopsis +357281,bio/AcantopsisChoirorhynchos +357811,bio/ApogonImberbis +359533,bio/KurixalusNaso +359535,bio/KurixalusAppendiculatus +359538,bio/KurixalusBisacculus +359668,bio/RanaShuchinae +360504,bio/Hapalogenys +360505,bio/HapalogenysAnalis +363190,bio/CoiliaGrayii +364768,bio/PhysalaemusSignifer +365053,bio/Ilisha +365059,bio/CoiliaNasus +365581,bio/PangasiusSanitwongsei +367642,bio/AfrixalusDorsalis +367647,bio/ElachistocleisOvalis +367648,bio/WijayaranaMasonii +367669,bio/StrongylopusBonaespei +367674,bio/CornuferGuppyi +369509,bio/PseudoranaWeiningensis +369511,bio/NidiranaPleuraden +369514,bio/OdorranaAndersonii +369515,bio/SylviranaSpinulosa +369626,bio/Balantiocheilos +369627,bio/BalantiocheilosMelanopterus +369633,bio/Crossocheilus +370040,bio/PlanilizaHaematocheilus +370356,bio/Neolissochilus +370357,bio/NeolissochilusHexagonolepis +371028,bio/PersicariaPerfoliata +371673,bio/HolocentrusAdscensionis +371709,bio/OsteopilusMarianae +371864,bio/MelanittaFusca +374066,bio/Bokermannohyla +374069,bio/Dendropsophus +374082,bio/Exerodonta +374083,bio/Isthmohyla +374085,bio/Tlalocohyla +374458,bio/AlausOculatus +374600,bio/AgriadesGlandon +374649,bio/HypsipetesAmaurotis +375434,bio/LeptodactylusFallax +376636,bio/Gollum +376637,bio/GollumAttenuatus +376738,bio/Acentrogobius +376739,bio/AcentrogobiusJanthinopterus +376895,bio/CaranxIgnobilis +377265,bio/Taudactylus +377266,bio/TaudactylusAcutirostris +377306,bio/Assa +377307,bio/AssaDarlingtoni +377316,bio/AtelopusZeteki +377347,bio/Thoropa +377348,bio/ThoropaMiliaris +377352,bio/Chacophrys +377353,bio/ChacophrysPierottii +378387,bio/AppiasAlbina +379421,bio/Plioreocepta +381124,bio/ZeaMaysSubspMays +382769,bio/Lycodonomorphus +383841,bio/PtychadenaUzungwensis +384871,bio/AmeeregaPulchripecta +384895,bio/DendrobatesTruncatus +384899,bio/EpipedobatesEspinosai +384902,bio/AmeeregaPetersi +384907,bio/Allobates +385652,bio/Echinotriton +385654,bio/EchinotritonChinhaiensis +385657,bio/NotophthalmusMeridionalis +385674,bio/TylototritonAsperrimus +385676,bio/TylototritonKweichowensis +385678,bio/TylototritonWenxianensis +386281,bio/BrassicaRapaVarPurpuraria +389261,bio/CrociduraAleksandrisi +389288,bio/BufotesBoulengeri +389293,bio/BufotesLatastii +389298,bio/BufotesPseudoraddei +389299,bio/BufotesBaturae +389303,bio/BufotesSurdus +389874,bio/MegophrysBaluensis +390297,bio/Agonostomus +390299,bio/Ambassis +390307,bio/CentropogonAustralisWhite1790 +390342,bio/Inimicus +390363,bio/PeprilusAlepidotus +390369,bio/Plagiotremus +390464,bio/Bagrus +390465,bio/BagrusDocmak +390484,bio/NeosilurusAter +390718,bio/MeristogenysAmoropalamus +390976,bio/Diaphania +390977,bio/DiaphaniaIndica +391187,bio/Scolecenchelys +391205,bio/Heteroconger +391206,bio/HeterocongerHassi +391220,bio/ScuticariaTigrina +391223,bio/MoringuaJavanica +391864,bio/ChalcoranaRaniceps +391866,bio/SylviranaCubitalis +392815,bio/Chlorocebus +392903,bio/PseudobalistesFlavimarginatus +392922,bio/Paramonacanthus +394460,bio/GastrothecaOvifera +396790,bio/Macolor +396791,bio/MacolorNiger +397597,bio/Siphamia +399177,bio/AbavoranaLuctuosa +399316,bio/Necromys +400053,bio/SylvaemusGroup +400187,bio/ErynnisPropertius +400502,bio/SympetrumVicinum +401547,bio/HemidactylusFasciatus +402710,bio/MystusOculatus +403223,bio/Clupanodon +403224,bio/ClupanodonThrissa +404976,bio/RanaSakuraii +405016,bio/ArgynnisLaodice +405018,bio/ArgynnisPandora +405022,bio/BoloriaEunomia +405189,bio/GlaphyromorphusFuscicaudis +410297,bio/Gerbilliscus +410301,bio/GerbilliscusKempi +410303,bio/GerbilliscusRobustus +411568,bio/Setipinna +411962,bio/Schrankia +411963,bio/SchrankiaCostaestrigalis +412675,bio/CucumisMeloSubspMelo +415320,bio/Euchloe_Subgenus +415322,bio/Elphinstonia +415323,bio/EuchloeCharlonia +415331,bio/EuchloeAusonia +416556,bio/DendrolimusTabulaeformis +416559,bio/GalerucellaNymphaeaeComplex +417459,bio/Heterophallus +417944,bio/Brotula +418657,bio/MurexiaRothschildi +418659,bio/MurexiaNaso +418663,bio/MurexiaMelanurus +419645,bio/MicrohylaBorneensis +419646,bio/RamanellaVariegata +419956,bio/CalviaQuattuordecimguttata +420420,bio/CycloranaMaini +420422,bio/NecturusPunctatus +420445,bio/Leptophryne +420446,bio/LeptophryneBorbonica +420447,bio/Mertensophryne +420460,bio/DipturusBatis +420590,bio/DendrolimusSuperans +423320,bio/CatocalaNupta +423492,bio/Mecistops +423606,bio/Fukomys +423607,bio/FukomysMechowii +425200,bio/Lycalopex +426091,bio/Enchelycore +427924,bio/DreissenaRostriformisBugensis +428035,bio/Lumpenus +428445,bio/Datnioides +428446,bio/DatnioidesPolota +428466,bio/LeptobrachiumAilaonicum +430793,bio/NyctibatrachusBeddomii +431941,bio/RanaMegatympanum +432164,bio/BrotulaBarbata +432528,bio/GrammostolaRosea +433684,bio/TakifuguFlavidus +433688,bio/TakifuguAlboplumbeus +435003,bio/Plicofollis +435155,bio/HarpadonNehereus +435225,bio/SillagoSihama +435228,bio/Thryssa +435239,bio/Osteomugil +435638,bio/PhoenicopterusRoseus +435999,bio/TrachinotusBlochii +436885,bio/ScopelarchusAnalis +437330,bio/DanioFeegradei +439704,bio/PorphyrioHochstetteri +439832,bio/Devario +439892,bio/SiganusSutor +441319,bio/CatopsiliaScylla +441366,bio/GouaniaWilldenowi +441663,bio/ParachromisFriedrichsthalii +442324,bio/Nymphalis_Subgenus +442325,bio/Euvanessa +442327,bio/Roddia +443710,bio/ParapercisColias +443716,bio/SchedophilusLabyrinthicus +443751,bio/Bidyanus +443761,bio/ChiloscylliumIndicum +443773,bio/Chrysochir +443774,bio/ChrysochirAureus +443787,bio/Hephaestus +443788,bio/HephaestusJenkinsi +443809,bio/Rhombosolea +445152,bio/Hypopachus +445153,bio/HypopachusVariolosus +445438,bio/VespaSimillima +445506,bio/PseudotropheusCrabro +445771,bio/OreolalaxChuanbeiensis +445772,bio/OreolalaxJingdongensis +445774,bio/OreolalaxMajor +445777,bio/OreolalaxOmeimontis +445778,bio/OreolalaxPingii +445779,bio/OreolalaxRugosus +445780,bio/OreolalaxSchmidti +445782,bio/OreolalaxXiangchengensis +445783,bio/ScutigerGlandulatus +445784,bio/ScutigerMammatus +445787,bio/LeptobrachiumLeishanense +446415,bio/ArgentinaSilus +446489,bio/CriniaRiparia +446501,bio/Plataplochilus +446502,bio/PlataplochilusNgaensis +447134,bio/Myodes +447135,bio/MyodesGlareolus +447236,bio/Parnassius_Subgenus +447920,bio/ArizelocichlaNigriceps +448029,bio/ArgyrosomusJaponicus +448039,bio/ParagobiodonEchinocephalus +448113,bio/OdorranaTiannanensis +448114,bio/OdorranaTormota +448381,bio/OligosomaHomalonotum +448438,bio/EleutherodactylusDimidiatus +448469,bio/EleutherodactylusLuteolus +448482,bio/EleutherodactylusPinarensis +448486,bio/EleutherodactylusRicordii +448676,bio/IschnocnemaGuentheri +449102,bio/Pristimantis +449221,bio/CraugastorSandersoni +451696,bio/Opsaridium +452076,bio/ChannaStewartii +452081,bio/ChannaDiplogramma +452646,bio/NeogaleVison +453924,bio/OncorhynchusClarkiiPleuriticus +454142,bio/LutjanusPurpureus +454751,bio/Ommatotriton +455156,bio/ParalichthysAdspersus +457511,bio/CobitisChoii +458026,bio/MonacoaGrimaldii +458604,bio/Raneya +458605,bio/RaneyaBrasiliensis +460200,bio/EmberizaCalandra +460622,bio/GonatodesAlbogularis +461231,bio/ColluricinclaTenebrosa +461241,bio/Psophodes +461284,bio/LeptobrachellaLiui +461400,bio/AeorestesEgregius +461409,bio/MarmosopsInvictus +462318,bio/GracixalusJinxiuensis +462319,bio/LiuixalusRomeri +462321,bio/ZhangixalusDugritei +462322,bio/ZhangixalusFeae +462324,bio/ZhangixalusMaximus +462328,bio/ZhangixalusOmeimontis +463597,bio/GerresOyena +464359,bio/ApantesisDoris +464373,bio/ApantesisPhyllira +464718,bio/Apantesis +464720,bio/Diacrisia +464721,bio/DiacrisiaSannio +464756,bio/Schizopyge +465452,bio/Neodon_Rodents +466149,bio/Prognathodes +467031,bio/AraAmbiguus +467706,bio/ExcidobatesCaptivus +467740,bio/PhrynobatrachusParvulus +467741,bio/PhrynobatrachusRungwensis +467742,bio/PhrynobatrachusUkingensis +467775,bio/IrciniaStrobilina +469796,bio/OvisOrientalis +471713,bio/LophochroaLeadbeateri +472225,bio/AcanthascusDawsoni +472706,bio/Micaelamys +472707,bio/MicaelamysNamaquensis +472711,bio/MaxomysHellwaldii +473129,bio/Kerria_ScaleInsects +473130,bio/KerriaLacca +473183,bio/Epichoristodes +473184,bio/EpichoristodesAcerbella +473345,bio/Antimora +473346,bio/AntimoraRostrata +473458,bio/GymnothoraxMeleagris +474494,bio/Ceratalaspis +475180,bio/Gymnapogon +476017,bio/HyperoliusMarmoratus +476251,bio/SalamandrellaTridactyla +476506,bio/HeteronotiaSpelea +477932,bio/CorvusCornixCapellanus +478982,bio/DuttaphrynusScaber +479651,bio/PlanilizaAffinis +479705,bio/PseudantechinusBilarni +480210,bio/Austrochaperina +481308,bio/Loxostege +481309,bio/LoxostegeSticticalis +481462,bio/GasterosteusAculeatusWilliamsoni +482143,bio/SpeleomantesStrinatii +482374,bio/Ornipholidotos +482375,bio/OrnipholidotosPeucetia +482536,bio/Galeopterus +482537,bio/GaleopterusVariegatus +482914,bio/MugilGyrans +483428,bio/GalegeeskaRevoilii +484165,bio/RutilusKutum +485636,bio/Hethemia +485637,bio/HethemiaPistasciaria +486151,bio/ChromisNotata +486220,bio/CornuferBoulengeri +486473,bio/Speleomantes +487618,bio/DanioMargaritatus +488224,bio/NyctixalusMargaritifer +488246,bio/PolypedatesMacrotis +488249,bio/Ghatixalus +488252,bio/GhatixalusVariabilis +490056,bio/Hyloxalus +490305,bio/Makalata +490727,bio/Tandanus +491159,bio/MicrokaylaWettsteini +491200,bio/AnserFabalisMiddendorffii +491871,bio/Chiromyscus +491955,bio/SaxicolaCaprata +492764,bio/SesamiaInferens +493409,bio/Oxyurichthys +493413,bio/OxyurichthysPapuensis +495042,bio/Cetengraulis +495824,bio/ApristurusPlatyrhynchus +495863,bio/BrevitrygonWalga +495865,bio/HydrolagusTrolli +496013,bio/Glaucostegus +496087,bio/Glyphis_SharksRays +496089,bio/Hemipristis +496090,bio/HemipristisElongata +496415,bio/DipturusMaugeanus +497004,bio/Hypselobarbus +498270,bio/Trimma +498271,bio/TrimmaOkinawae +498517,bio/Clava +498518,bio/ClavaMulticornis +499857,bio/Thyrsites +499858,bio/ThyrsitesAtun +501720,bio/ThryssaBaelama +505324,bio/Sigmops +505396,bio/Callistoctopus +505953,bio/Virbia +505955,bio/VirbiaFerruginosa +505961,bio/GyrinophilusPalleucus +507706,bio/Ameerega +507971,bio/Ptilopsis +507973,bio/PtilopsisLeucotis +509078,bio/HypsiglenaSlevini +510768,bio/OtocinclusAffinis +512429,bio/AustrochaperinaRobusta +512457,bio/MicrohylaAchatina +512458,bio/MicrohylaBerdmorei +512777,bio/TandanusTandanus +515824,bio/CallistoctopusMinor +516037,bio/Sewellia_BonyFishes +516038,bio/SewelliaLineolata +516811,bio/RaiamasSenegalensis +518105,bio/CulexPipiensComplex +520854,bio/RaorchestesGlandulosus +520858,bio/RaorchestesBeddomii +520860,bio/RaorchestesBombayensis +520875,bio/RaorchestesTravancoricus +521022,bio/CetengraulisEdentulus +521099,bio/MicropterusPunctulatusPunctulatus +521259,bio/Phoebastria +521382,bio/BolitoglossaRobusta +521416,bio/LampanyctusMacdonaldi +521419,bio/CoryphopterusTortugae +525815,bio/Clossiana +526129,bio/SachatamiaIlex +526138,bio/SachatamiaAlbomaculata +530166,bio/Cerradomys +532072,bio/Astrochelys +532073,bio/AstrochelysYniphora +533315,bio/PlectorhinchusGibbosus +536571,bio/PhrynobatrachusGutturosus +542827,bio/Rhinopithecus +544411,bio/ChlorurusBowersi +544413,bio/ChlorurusJapanensis +544415,bio/ScarusAltipinnis +545688,bio/CypselurusPoecilopterus +546548,bio/Pelates +546549,bio/PelatesQuadrilineatus +548164,bio/NotolabrusFucicola +548508,bio/IridosornisPorphyrocephalus +552877,bio/ChloropsisAurifrons +552897,bio/BradypterusBrunneus +552898,bio/Eremomela +552899,bio/EremomelaGregalis +552919,bio/Lioptilus +552920,bio/LioptilusNigricapillus +552921,bio/Nesillas +552922,bio/NesillasTypica +555355,bio/Thalasseus +555356,bio/ThalasseusMaximus +555602,bio/SebastesFuscescens +557290,bio/OvisOrientalisOphion +561726,bio/Histiophryne +563992,bio/Dermanura +566292,bio/StichopusHorrens +566407,bio/SynodontisBatensoda +568896,bio/Eubleekeria +568926,bio/Neoromicia +568927,bio/AfronycterisNana +570414,bio/RattusMacleari +570415,bio/RattusNativitatis +571339,bio/Mesoclemmys +571825,bio/GlyphisGlyphis +573212,bio/Blepsias +573213,bio/BlepsiasCirrhosus +573377,bio/AriusMaculatus +573891,bio/StrongylopusWageri +575557,bio/OmpokMalabaricus +577198,bio/ArthroleptisFrancei +577200,bio/ArthroleptisReichei +577205,bio/ArthroleptisXenodactylus +578142,bio/LycodonomorphusRufulus +578143,bio/LycodonomorphusWhytii +582433,bio/Brachaelurus +582434,bio/BrachaelurusWaddi +584662,bio/RaorchestesMenglaensis +585466,bio/BurhinusGrallarius +586024,bio/NanoranaAenea +586785,bio/CentropygeBispinosa +587054,bio/Istiblennius +587066,bio/Pareques +590941,bio/RasboraLateristriata +591287,bio/HexanematichthysSagor +591288,bio/HemiariusSona +591301,bio/Hexanematichthys +591302,bio/Hemiarius +591932,bio/Piliocolobus +591934,bio/PiliocolobusRufomitratus +596107,bio/HimanturaUndulata +596145,bio/OmpokPabda +613076,bio/Crossodactylodes +613087,bio/Calyptocephallela +622367,bio/AmblypharyngodonMelettinus +622399,bio/AmblyeleotrisPeriophthalma +622413,bio/IstigobiusRigilius +622600,bio/MinervaryaPierrei +624848,bio/GerresLongirostris +627180,bio/SemaprochilodusTaeniurus +632609,bio/NidiranaChapaensis +633869,bio/CryptobranchusAlleganiensisAlleganiensis +635074,bio/Myotomys +635075,bio/MyotomysSloggetti +635150,bio/ProceratophrysAppendiculata +637726,bio/Sicydium_BonyFishes +638140,bio/FibramiaLateralis +638272,bio/Apogon_Subgenus +638290,bio/Ostorhinchus +642922,bio/BrachyplatystomaFilamentosum +643422,bio/Petroleuciscus +643485,bio/HyperoliusConcolor +643490,bio/HyperoliusMontanus +643491,bio/HyperoliusPhantasticus +643493,bio/HyperoliusPlatyceps +651656,bio/Incilius +651658,bio/Ingerophrynus +651664,bio/Phrynoidis +651667,bio/Rhinella +651669,bio/Vandijkophrynus +651670,bio/Anaxyrus +651673,bio/Bufotes +651674,bio/Epidalea +651675,bio/Nannophryne +651676,bio/Poyntonophrynus +651678,bio/Peltophryne +651679,bio/Rhaebo +651680,bio/Duttaphrynus +651720,bio/Neotrygon +651721,bio/NeotrygonKuhlii +651724,bio/TaeniuraMeyeni +652442,bio/InimicusJaponicus +655099,bio/ChrysoblephusPuniceus +655831,bio/NectophrynoidesViviparus +655832,bio/PedostibesTuberculosus +655833,bio/PelophryneSignata +655847,bio/BufoVerrucosissimus +655848,bio/CalyptocephallelaGayi +655852,bio/DuttaphrynusBrevirostris +655855,bio/DuttaphrynusHololius +655856,bio/DuttaphrynusParietalis +655869,bio/StephopaedesLoveridgei +655891,bio/MertensophryneUzunguensis +658163,bio/BabinaHolsti +658176,bio/ArothronReticularis +658181,bio/Cyclichthys +658182,bio/CyclichthysOrbicularis +659170,bio/Iduna +661134,bio/SphyrnaTudes +661228,bio/AgonostomusMonticola +662560,bio/Rusa +662561,bio/RusaUnicolor +663277,bio/MegophrysMontana +666058,bio/Chamaepsila +666059,bio/ChamaepsilaRosae +666682,bio/DryophytesImmaculatus +666914,bio/Hyemoschus +666915,bio/HyemoschusAquaticus +670114,bio/SchisturaSavona +670346,bio/IxobrychusEurhythmus +670488,bio/HippichthysCyanospilos +670521,bio/AcanthurusBariene +670918,bio/RaorchestesLongchuanensis +670925,bio/ThelodermaMoloch +670929,bio/Feihyla +671158,bio/CarcharhinusBrachyurus +671161,bio/Nasolamia +671162,bio/NasolamiaVelox +672773,bio/Pseudopus +672774,bio/PseudopusApodus +672787,bio/ChiromyscusLangbianis +673032,bio/ViejaBifasciata +673854,bio/DasyatisPastinaca +681189,bio/Drepanornis +681214,bio/CycloranaCryptotis +681215,bio/CycloranaCultripes +681216,bio/RanoideaMaculosa +681217,bio/CycloranaNovaehollandiae +681218,bio/RanoideaPlatycephala +681219,bio/CycloranaVagitus +681220,bio/CycloranaVerrucosa +681221,bio/LitoriaAdelaidensis +681226,bio/LitoriaBurrowsi +681227,bio/LitoriaCavernicola +681237,bio/RanoideaCyclorhynchus +681241,bio/LitoriaDentata +681251,bio/LitoriaLatopalmata +681254,bio/LitoriaLongirostris +681258,bio/LitoriaNigrofrenata +681259,bio/LitoriaNyakalensis +681262,bio/LitoriaParaewingi +681263,bio/LitoriaPersonata +681274,bio/LitoriaTyleri +683850,bio/PtychadenaChristyi +685118,bio/LimnonectesNamiyei +685121,bio/Cornufer +685169,bio/Pterorana +687230,bio/LeptobrachiumNigrops +687235,bio/LeptobrachellaHeteropus +687869,bio/HapalogenysNigripinnis +689408,bio/PhrynobatrachusLatifrons +691798,bio/TenualosaThibaudeaui +693458,bio/Phycodurus +693459,bio/PhycodurusEques +693640,bio/ChelonDumerili +693642,bio/ParachelonGrandisquamis +693644,bio/MugilCapurrii +693712,bio/PygathrixCinerea +694279,bio/NimbapanchaxJeanpoli +694306,bio/PhrynobatrachusGraueri +694311,bio/PhrynobatrachusVersicolor +694503,bio/LimnonectesPlicatellus +694504,bio/MicrixalusSaxicola +694506,bio/MegophrysLongipes +694510,bio/IngerophrynusParvus +696752,bio/Nimbapanchax +697147,bio/ChiromantisPetersii +697160,bio/ChiromantisNongkhorensis +698420,bio/SphaerothecaRolandae +700175,bio/Neodactria +700176,bio/NeodactriaCaliginosella +700637,bio/MelamphaesSuborbitalis +700668,bio/ScorpaenopsisDiabolus +700796,bio/HarengulaHumeralis +702266,bio/MelesLeucurus +703910,bio/Cirripectes +704175,bio/PhoeniconaiasMinor +705554,bio/KaloulaBaleata +709362,bio/BoulengerulaChangamwensis +711521,bio/CrossocheilusSiamensis +712047,bio/Cistugo +712048,bio/CistugoSeabrae +713925,bio/LeopardusJacobita +714659,bio/CetengraulisMysticetus +715368,bio/Espadarana +715370,bio/Sachatamia +716691,bio/HylobatesAlbibarbis +717467,bio/Nimbaphrynoides +717468,bio/NimbaphrynoidesOccidentalis +721938,bio/SigmopsBathyphilus +721939,bio/SynodusSynodus +722432,bio/Conodon +722433,bio/ConodonNobilis +722435,bio/Enneanectes +723540,bio/MobulaHypostoma +740927,bio/Chesnonia +740928,bio/ChesnoniaVerrucosa +741976,bio/MegophrysAceras +743423,bio/Nasuella +743424,bio/NasuellaOlivacea +744555,bio/PrognathodesFalcifer +745121,bio/Cilus +745122,bio/CilusGilberti +745261,bio/PhrynobatrachusNatalensisSpeciesComplex +745779,bio/Raorchestes +746842,bio/ScolopsisBilineata +747526,bio/Amphichthys +747527,bio/AmphichthysCryptocentrus +747772,bio/Calophysus +747773,bio/CalophysusMacropterus +749526,bio/EigenmanniaVirescens +753481,bio/Leucoptera_Moths +753488,bio/LeucopteraMalifoliella +753639,bio/SargocentronTiereoides +753643,bio/AcanthurusAchilles +753644,bio/AcanthurusNigricauda +753646,bio/MyripristisPralinia +753647,bio/SargocentronMelanospilos +753649,bio/ZebrasomaRostratum +753650,bio/Plectrypops +753651,bio/PlectrypopsLima +753897,bio/AtherinomorusVaigiensis +753902,bio/CraterocephalusEyresii +753914,bio/CraterocephalusStramineus +753915,bio/HypoatherinaHarringtonensis +753916,bio/HypoatherinaTemminckii +758446,bio/Irania_Birds +758447,bio/IraniaGutturalis +762043,bio/OkamejeiBoesemani +762045,bio/SetipinnaTenuifilis +762047,bio/ZebriasFasciatus +762061,bio/RubricatochromisLetourneuxi +762504,bio/PhasmahylaJandaia +762637,bio/Cryptoheros_Subgenus +764543,bio/AcontiasLineatus +764832,bio/GlossogobiusOlivaceus +764833,bio/PtereleotrisCalliura +764836,bio/SicydiumPlumieri +765185,bio/Harriotta +765186,bio/HarriottaRaleighana +767251,bio/GasteropelecusSternicla +767411,bio/AcanthopagrusBifasciatus +797091,bio/LimnonectesKuhliiSpeciesComplex +797160,bio/OchlodesVenata +798166,bio/NeodonIrene +798169,bio/NeodonSikimensis +857615,bio/AmblypharyngodonMola +857645,bio/ParachelaOxygastroides +857658,bio/RasboraDusonensis +857659,bio/RasboraEinthovenii +857662,bio/RasboraRasbora +858229,bio/AmbassisMacleayi +858497,bio/CheilopogonAtrisignis +859894,bio/PetrogaleConcinna +861345,bio/LepidosaphesPini +862141,bio/Quasipaa +862142,bio/QuasipaaFasciculispina +862507,bio/Mus_Subgenus +862508,bio/Coelomys +862791,bio/TorquigenerHypselogeneion +862798,bio/Auriglobus +862799,bio/AuriglobusModestus +862800,bio/Omegophora +862801,bio/OmegophoraArmilla +862826,bio/EchinorhinusBrucus +862897,bio/Isistius +862898,bio/IsistiusBrasiliensis +862899,bio/Oxynotus +864176,bio/Pseudhymenochirus +864177,bio/PseudhymenochirusMerlini +866009,bio/SchizopygeNiger +866635,bio/ThylamysPusillusSpeciesComplex +868862,bio/PetrocephalusCatostoma +870552,bio/HalichoeresMelanotis +873202,bio/VermivoraBachmanii +876122,bio/Bythaelurus +876627,bio/GymnothoraxAlbimarginatus +877584,bio/NidiranaDaunchina +877586,bio/PteroranaKhare +879473,bio/CirripectesCastaneus +879476,bio/CirripectesQuagga +879482,bio/EnneanectesCarminalis +879483,bio/EnneanectesPectoralis +879491,bio/EntomacrodusStriatus +879501,bio/IstiblenniusDussumieri +879502,bio/IstiblenniusLineatus +879513,bio/OmobranchusObliquus +879519,bio/PlagiotremusRhinorhynchos +879520,bio/PlagiotremusTapeinosoma +879681,bio/Alticus +879682,bio/AlticusSaliens +879705,bio/Atrosalarias +879706,bio/AtrosalariasFuscus +879711,bio/Blenniella +879712,bio/BlenniellaChrysospilos +879878,bio/Nannosalarias +879879,bio/NannosalariasNativitatis +880961,bio/MicrostomaMicrostoma +882191,bio/PseudobalistesNaufragium +882735,bio/VespaAffinis +882753,bio/AntennariusMaculatus +882754,bio/AntennariusMultiocellatus +882771,bio/Antennatus +882772,bio/AntennatusTuberosus +882775,bio/Rhycherus +882776,bio/RhycherusFilamentosus +882786,bio/MacrognathusAral +882817,bio/IdiacanthusFasciola +882857,bio/Photonectes +882858,bio/PhotonectesBraueri +884168,bio/CoregonusMigratorius +885580,bio/FukomysDamarensis +886298,bio/AlburnusTarichi +886300,bio/PelatesOctolineatus +887134,bio/RexeaPrometheoides +904093,bio/EpinotiaRadicana +904236,bio/Myuchelys +907928,bio/MaxomysRajah +909114,bio/CephalopholisHemistiktos +909122,bio/PlectorhinchusSchotaf +909123,bio/PomadasysStridens +909126,bio/ScolopsisGhanam +909366,bio/Glauconycteris +909367,bio/GlauconycterisArgentata +909369,bio/GlauconycterisVariegata +909696,bio/Oligocephalus +909702,bio/Litocara +910305,bio/Trypauchen +912803,bio/Bahaba +912804,bio/BahabaTaipingensis +912805,bio/JohniusAmblycephalus +925459,bio/BalearicaRegulorum +927612,bio/Plagiognathops +928324,bio/ChikilaFulleri +928525,bio/LeptodactylusBolivianus +929715,bio/BidyanusWelchi +932675,bio/LabeoBoggut +932716,bio/Gymnelus +932717,bio/GymnelusViridis +933226,bio/NipponocyprisKoreanus +933990,bio/Nipponocypris +933992,bio/ChanodichthysErythropterus +935645,bio/StarksiaSluiteri +941983,bio/ChelonMelinopterus +941984,bio/ToxotesJaculatrix +958669,bio/SholicolaAlbiventris +978109,bio/AcerosWaldeni +979144,bio/Pseudophilautus +979184,bio/Liuixalus +980415,bio/LethenteronCamtschaticum +980578,bio/KalophrynusInterlineatus +987431,bio/XestiaCnigrum +990218,bio/FusigobiusDuospilus +990556,bio/ArgyropsFilamentosus +990946,bio/ParatapesTextilis +991001,bio/Rogadius +991003,bio/Sebastapistes +992341,bio/LimnonectesDoriae +992342,bio/LimnonectesHascheanus +992343,bio/LimnonectesKohchangae +992344,bio/LimnonectesLimborgi +992947,bio/ArremonAssimilis +996475,bio/RanaSierrae +997023,bio/Herklotsichthys +997024,bio/HerklotsichthysQuadrimaculatus +998003,bio/CorisCuvieri +999462,bio/AlcesAmericanus +1001915,bio/HypselobarbusThomassi +1003683,bio/AmbassisAmbassis +1004435,bio/Oophaga +1004436,bio/Ranitomeya +1004470,bio/Excidobates +1008893,bio/Hylarana +1008990,bio/Paradactylodon +1010709,bio/PlectorhinchusLessonii +1010711,bio/PlectorhinchusVittatus +1016941,bio/OxynotusCentrina +1017371,bio/MulloidichthysPfluegeri +1029687,bio/BolitoglossaMulleri +1037525,bio/AmietiaRuwenzorica +1040952,bio/Rhinomugil +1041117,bio/MyuchelysGeorgesi +1041596,bio/Liopholis +1042646,bio/GadusChalcogrammus +1043195,bio/Inegocia +1045542,bio/AmbassisGymnocephalus +1045544,bio/KuhliaMarginata +1046120,bio/Gobioides +1046121,bio/GobioidesBroussonnetii +1046901,bio/Cyriopagopus +1047088,bio/ArvicolaAmphibius +1047102,bio/AthymaPerius +1048219,bio/PorcineBocavirus1 +1048220,bio/PorcineBocavirus2 +1048243,bio/SimianEndogenousRetrovirus +1048669,bio/NanoranaVicina +1054643,bio/TrypauchenVagina +1070161,bio/Ericosoma +1070322,bio/Sibynophis +1070323,bio/SibynophisCollaris +1071977,bio/ArthroleptisAdolfifriederici +1072479,bio/MyliobatisFreminvillei +1072485,bio/TaeniuraGrabata +1072513,bio/Typhlonarke +1072514,bio/TyphlonarkeAysoni +1085684,bio/HephaestusFuliginosus +1088130,bio/RusaTimorensis +1089686,bio/HistiophryneBougainvilli +1091402,bio/RanitomeyaSirensis +1093613,bio/CrossocheilusLangei +1094710,bio/Kajikia +1095381,bio/Giuris +1095382,bio/GiurisMargaritaceus +1095716,bio/IlishaMegaloptera +1104375,bio/UperoleiaRusselli +1104425,bio/NyctibatrachusSanctipalustris +1108006,bio/AnthusNovaeseelandiae +1108805,bio/Sufflogobius +1108806,bio/SufflogobiusBibarbatus +1109079,bio/MituTomentosum +1110376,bio/IdunaPallida +1110606,bio/LitoriaCastanea +1111465,bio/CrenimugilSeheli +1111470,bio/RhinomugilCorsula +1111477,bio/Neomyxus +1111478,bio/NeomyxusLeuciscus +1112861,bio/SapajusFlavius +1114792,bio/EquusFerus +1115652,bio/FeihylaKajau +1116803,bio/Andinobates +1120762,bio/LovettiaSealii +1120768,bio/RanaFisheri +1124502,bio/AwaousOcellaris +1129741,bio/Chroicocephalus +1130116,bio/LeptobrachellaVentripunctata +1130117,bio/MegophrysParva +1131247,bio/Scenopoeetes +1131888,bio/DendrotritonMegarhinus +1131890,bio/DendrotritonXolocalcae +1133662,bio/AdenomeraLutzi +1134580,bio/OsteomugilSpeigleri +1137846,bio/ChelonoidisNigraSpeciesComplex +1138020,bio/HyperoliusBenguellensis +1141927,bio/RhencusMacracanthus +1141933,bio/PelatesSexlineatus +1143719,bio/CervusNipponMantchuricus +1146954,bio/BlenniellaGibbifrons +1146960,bio/CephalopholisSpiloparaea +1146965,bio/CorythoichthysFlavofasciatus +1146973,bio/IstiblenniusBellus +1146980,bio/PseudanthiasEvansi +1147084,bio/Exallias +1147085,bio/ExalliasBrevis +1147086,bio/Foa +1147087,bio/FoaBrachygramma +1147743,bio/SolenostomusParadoxus +1154649,bio/DiapterusRhombeus +1155711,bio/AmblyglyphidodonTernatensis +1156095,bio/CarapusMourlani +1156139,bio/ScolecenchelysGymnota +1156144,bio/StenogobiusGenivittatus +1156498,bio/BelodontichthysDinema +1157335,bio/NemipterusNematophorus +1158920,bio/ArdeolaGrayii +1159274,bio/EchidnaCatenata +1160816,bio/ApusPallidus +1161366,bio/Amniataba +1161368,bio/AmniatabaCaudavittata +1161369,bio/AmniatabaPercoides +1162258,bio/GastrophrynePictiventris +1163533,bio/ScuticariaOkinawae +1165301,bio/Woodworthia +1165302,bio/WoodworthiaMaculata +1167616,bio/EpinephelusBontoides +1168020,bio/RanaCoreana +1170831,bio/Montivipera +1171662,bio/Fritziana +1171664,bio/FritzianaFissilis +1171665,bio/FritzianaGoeldii +1171711,bio/GrusParadisea +1175540,bio/RhynchorhamphusGeorgii +1175541,bio/NarkeDipterygia +1175560,bio/Rhynchorhamphus +1178017,bio/EupsophusAltor +1181264,bio/RhonciscusCrocro +1182014,bio/EnchelycoreNigricans +1182147,bio/BodianusEclancheri +1182148,bio/CorisAuricularis +1182153,bio/IniistiusPentadactylus +1182257,bio/Monopenchelys +1182258,bio/MonopenchelysAcuta +1183148,bio/ParequesUmbrosus +1184739,bio/ParapercisXanthozona +1185436,bio/IndiranaBrachytarsus +1188029,bio/PristigenysNiphonia +1188031,bio/Brachypterois +1188032,bio/BrachypteroisSerrulata +1191327,bio/AmniranaDarlingi +1192867,bio/ChroicocephalusRidibundus +1198083,bio/HalichoeresBicolor +1200804,bio/OceanodromaMonteiroi +1201173,bio/SalmoPeristericus +1201327,bio/RaorchestesChalazodes +1202793,bio/RhacophorusTranslineatus +1202794,bio/RhacophorusVerrucopus +1203020,bio/Simias +1203425,bio/NotolabrusCelidotus +1203428,bio/RhombosoleaPlebeia +1203600,bio/AndinobatesOpisthomelas +1206914,bio/BembropsGobioides +1206920,bio/LutjanusBiguttatus +1206930,bio/Diademichthys +1206931,bio/DiademichthysLineatus +1206946,bio/PteragogusEnneacanthus +1206947,bio/Ulaema +1206948,bio/UlaemaLefroyi +1206982,bio/AracanaAurita +1208316,bio/Hyporthodus +1208378,bio/Babina +1209400,bio/LampanyctusAustralis +1212470,bio/SetophagaStriata +1212746,bio/AwaousStamineus +1213614,bio/Brochiraja +1213615,bio/BrochirajaAsperula +1213663,bio/AsymbolusAnalis +1213666,bio/BathyrajaPallida +1213672,bio/BrochirajaSpinifera +1213673,bio/BythaelurusDawsoni +1213681,bio/GaleusArae +1213707,bio/RhinobatosRhinobatos +1213717,bio/TorpedoTorpedo +1213718,bio/UrobatisMaculatus +1217922,bio/Amazophrynella +1218007,bio/PuntiusArenatus +1223622,bio/GraphiurusKelleni +1227136,bio/Pachypterus +1227137,bio/PachypterusAtherinoides +1230708,bio/InegociaHarrisii +1230718,bio/PlatycephalusRichardsoni +1230725,bio/CymbacephalusBeauforti +1230726,bio/InegociaJaponica +1231073,bio/Schultzea +1231074,bio/SchultzeaBeta +1231620,bio/EpinephelusFaveatus +1231899,bio/OphidionHolbrookii +1232745,bio/NemichthysCurvirostris +1233221,bio/Agriades +1234705,bio/OphisurusSerpens +1234954,bio/MesoclemmysGibba +1236050,bio/ChlorurusEnneacanthus +1236055,bio/ChlorurusStrongylocephalus +1236056,bio/HipposcarusHarid +1236062,bio/ScarusFalcipinnis +1236080,bio/ScarusViridifucatus +1238289,bio/GlossogobiusCircumspectus +1240248,bio/GonyosomaPrasinum +1241976,bio/SonoraMichoacanensis +1241977,bio/SonoraMutabilis +1246547,bio/ProechimysSemispinosus +1249234,bio/MegophrysBrachykolos +1249237,bio/XenophrysMangshanensis +1249487,bio/AnchoaIschana +1249488,bio/AnchoaLucida +1250777,bio/ChilatherinaLorentzii +1250785,bio/GlossolepisMultisquamata +1260531,bio/MenticirrhusElongatus +1260532,bio/MicropogoniasMegalops +1263180,bio/Guentherus +1263181,bio/GuentherusAltivela +1265597,bio/HydrophisBelcheri +1266867,bio/EpigonusPandionis +1266874,bio/LumpenusLampretaeformis +1266880,bio/PrionotusCarolinus +1268092,bio/PomacentrusImitator +1268094,bio/StegastesFlavilatus +1271572,bio/StrongylopusFuelleborni +1273186,bio/PleurodemaKriegi +1280522,bio/DicrossusFilamentosus +1282961,bio/BoleophthalmusBoddarti +1283716,bio/BrevicepsAdspersus +1286116,bio/AncylopsettaOmmata +1286174,bio/Soleichthys +1286175,bio/SoleichthysHeterorhinos +1294539,bio/Diaphorapteryx +1294540,bio/DiaphorapteryxHawkinsi +1295506,bio/PristimantisConservatio +1298884,bio/LileStolifera +1300103,bio/LeptopelisFiziensis +1302381,bio/LeptodactylusLatrans +1302559,bio/AllobatesChalcopis +1302775,bio/ZebriasZebrinus +1302782,bio/MugilogobiusCavifrons +1302783,bio/MugilogobiusMertoni +1302786,bio/PseudogobiusJavanicus +1303107,bio/SirenIntermediaTexana +1306750,bio/Ebosia +1306751,bio/EbosiaBleekeri +1307780,bio/Oxybasis +1311454,bio/IstigobiusOrnatus +1311497,bio/SebastapistesCyanostigma +1311505,bio/ZebrasomaVelifer +1314640,bio/CinnycerthiaOlivascens +1316009,bio/Cerdocyon +1316015,bio/PrionurusBiafraensis +1316676,bio/LatoniaNigriventer +1319981,bio/FeihylaHansenae +1325494,bio/PseudanthiasPulcherrimus +1325495,bio/PseudanthiasRandalli +1328069,bio/Prolemur +1328070,bio/ProlemurSimus +1329237,bio/CanthigasterCallisterna +1329240,bio/CanthigasterPunctatissima +1329249,bio/TorquigenerSquamicauda +1329252,bio/Chonerhinos +1329253,bio/ChonerhinosNaritus +1331681,bio/RhacophorusCalcadensis +1333648,bio/DatnioidesUndecimradiatus +1334086,bio/AphyosemionAmoenum +1334848,bio/LabidesthesSicculusVanhyningi +1338018,bio/PseudophryneAustralis +1338022,bio/PseudophryneMajor +1338023,bio/PseudophryneOccidentalis +1342827,bio/LeptopelisGramineus +1342830,bio/LeptopelisVannutellii +1342833,bio/PtychadenaErlangeri +1342840,bio/LeptopelisRagazzii +1343680,bio/NarcineBancroftii +1343690,bio/PseudanthiasVentralis +1346795,bio/OpsaridiumMicrolepis +1351707,bio/Liburnascincus +1355937,bio/ColinusNigrogularis +1356035,bio/PomacanthusChrysurus +1356052,bio/RhacophorusMargaritifer +1357725,bio/ParamonacanthusPusillus +1364862,bio/TarsigerCyanurus +1365533,bio/AwaousFlavus +1365539,bio/BrachygobiusNunus +1365699,bio/Odonteleotris +1365700,bio/OdonteleotrisMacrodon +1367116,bio/PterygotriglaHemisticta +1367118,bio/RogadiusAsper +1368164,bio/Agarista_Moths +1368165,bio/AgaristaAgricola +1378173,bio/ScolopsisXenochroa +1379451,bio/AcanthistiusPictus +1380542,bio/ThoriusAdelos +1386171,bio/SardinellaBrasiliensis +1390257,bio/GyrinophilusPorphyriticusDanielsi +1390258,bio/GyrinophilusPorphyriticusDunni +1390262,bio/PseudotritonMontanusFlavissimus +1390265,bio/PseudotritonRuberSchencki +1391725,bio/LeptobrachellaGracilis +1394124,bio/OdorranaAnlungensis +1394127,bio/OdorranaKuangwuensis +1394129,bio/OdorranaLungshengensis +1394135,bio/OdorranaWuchuanensis +1395009,bio/StenatherinaPanatela +1395012,bio/Stenatherina +1396860,bio/AbramitesHypselonotus +1399764,bio/OstorhinchusRueppellii +1405560,bio/LophiodesMutilus +1405644,bio/EcseniusYaeyamaensis +1405645,bio/EnneapterygiusMinutus +1405656,bio/PetroscirtesLupus +1405661,bio/RhabdoblenniusSnowi +1408259,bio/Oloptum +1411154,bio/DatnioidesPulcher +1412109,bio/Sagmariasus +1412110,bio/SagmariasusVerreauxi +1412449,bio/Hoplopagrus +1412450,bio/HoplopagrusGuentherii +1414481,bio/ParapercisSchauinslandii +1415635,bio/PachyanasChathamica +1421018,bio/RaorchestesParvulus +1428451,bio/CrossodactylodesBokermanni +1431193,bio/Latonia +1431475,bio/GymnapogonVanderbilti +1431494,bio/SiphamiaRoseigaster +1431513,bio/Vincentia +1431514,bio/VincentiaNovaehollandiae +1436200,bio/Ambastaia +1436202,bio/AmbastaiaSidthimunki +1441476,bio/PtychadenaChrysogaster +1445676,bio/LeptomantisBimaculatus +1446469,bio/OstichthysKaianus +1453604,bio/PterodromaRupinarum +1453815,bio/PsophodesCristatus +1455662,bio/PlicofollisPlatystomus +1455677,bio/GlaucostegusObtusus +1458430,bio/DendrelaphisPunctulatus +1459836,bio/PristipomoidesArgyrogrammicus +1460501,bio/MacroscelidesMicus +1462579,bio/SceloporusUnicanthalis +1462580,bio/SceloporusBrownorum +1462606,bio/GlycineSubgenSoja +1474818,bio/CentropygeVenusta +1474870,bio/ApolemichthysArcuatus +1475060,bio/PseudacrisHypochondriaca +1475061,bio/PseudacrisSierra +1479064,bio/Correlophus +1479094,bio/RatufaMacroura +1480063,bio/PungitiusPlatygaster +1485181,bio/Istiompax +1486644,bio/HypsiglenaUnaocularus +1486652,bio/Parapelophryne +1486653,bio/ParapelophryneScalpta +1496304,bio/Malayopython +1496311,bio/MalayopythonReticulatus +1498493,bio/Indotyphlops +1498866,bio/MicrixalusElegans +1498878,bio/MicrixalusPhyllophilus +1499639,bio/Pleroma_Eudicots +1500691,bio/ArcosNudus +1502711,bio/Erythranthe +1502868,bio/Paracentropogon +1502869,bio/ParacentropogonRubripinnis +1502963,bio/SquatinaArgentina +1507498,bio/Eladinea +1508173,bio/Magnadigita +1508175,bio/Bolitoglossa_Subgenus +1510417,bio/LimnonectesKhasianus +1513182,bio/LimnonectesMacrognathus +1513809,bio/BokermannohylaAlvarengai +1517487,bio/Boesemania +1517488,bio/BoesemaniaMicrolepis +1517489,bio/Novaculops +1517490,bio/NovaculopsWoodi +1517830,bio/Dryobates +1517834,bio/DryobatesMinor +1517969,bio/EpiplatysAnnulatus +1521260,bio/Lycopodiopsida +1522394,bio/CephalopholisAurantia +1523025,bio/Leucocarbo +1523891,bio/Haemorhous +1526411,bio/Mareca +1527435,bio/Hynobius_Subgenus +1527437,bio/Satobius +1532884,bio/Sapajus +1534316,bio/Leptobrachella +1574408,bio/CervusCanadensis +1585921,bio/Chikila +1592217,bio/Horornis +1604642,bio/Fibramia +1647189,bio/Spinus +1659744,bio/Humerana +1659745,bio/Pulchrana +1659746,bio/Papurana +1659747,bio/Sylvirana +1659749,bio/Abavorana +1659765,bio/Indosylvirana +1664462,bio/Psittacara +1709198,bio/Isthmura +1729444,bio/Hydrophylax_FrogsToads +1743244,bio/Arizelocichla +1756210,bio/Pternistis +1780241,bio/Monacoa +1795275,bio/Alcalus +1798711,bio/CyanobacteriotamelainabacteriaGroup +1812035,bio/Plecturocebus +1862675,bio/Sclerophrys +1897773,bio/Chloris_Birds +1926313,bio/Dryophytes +1930104,bio/Brevitrygon +1930205,bio/Curruca +1935872,bio/Planiliza +1935921,bio/Parachelon +1960645,bio/Sholicola +1960649,bio/Notamacropus +1965096,bio/Callithrix_Subgenus +1965102,bio/Mico +1971489,bio/Cephalopachus +1987911,bio/Zeugodacus_Subgenus +2013023,bio/Larvivora +2023954,bio/Boana +2045281,bio/Aeorestes +2054187,bio/Nidirana +2059839,bio/Allochrocebus +2067478,bio/Amnirana +2070548,bio/Rhencus +2070549,bio/Rhonciscus +2079297,bio/Urva +2083494,bio/Vieja +2116695,bio/Microkayla +2182372,bio/Osphranter +2212484,bio/Pateobatis +2267536,bio/Chersobius +2358450,bio/Chelonodontops +2502001,bio/Artemisiospiza +2545484,bio/Minervarya +2570238,bio/Alkekengi +2602927,bio/Paratapes +2608109,bio/Haptista +2681187,bio/Leontocebus +2715641,bio/Granatina +2725783,bio/Zhangixalus +2731430,bio/Pseudorana +2736677,bio/Smutsia +2753819,bio/Craspedocephalus +2763318,bio/Arthroleptides +2777048,bio/Fimbriaphyllia +2777057,bio/SileneSectLychnis +2777074,bio/SileneSectBehenantha +2777416,bio/Ranoidea_Genus +2778563,bio/Afronycteris +2782528,bio/Leptomantis +2786935,bio/Chalcorana +2819854,bio/Galegeeska +2819877,bio/Lophochroa +2821307,bio/Chlorodrepanis +2821309,bio/Coloeus +2823197,bio/Spatula +2823206,bio/Thectocercus +2823303,bio/Tarsiger +2839957,bio/Phoeniconaias +2841271,bio/Testudinata +2854839,bio/Heraclides +2854840,bio/Pterourus +2860737,bio/Wijayarana +2861789,bio/Cabalus +2902005,bio/Neogale +2934977,bio/Gonopterodendron +3019017,bio/Nipponoluciola +3025441,bio/Rubricatochromis +3048151,bio/AvibirnavirusGumboroense +3050134,bio/MacavirusAlcelaphinegamma1 +3050250,bio/LymphocryptovirusCallitrichinegamma3 +3050252,bio/VaricellovirusCaprinealpha1 +3050257,bio/VaricellovirusCercopithecinealpha9 +3050276,bio/VaricellovirusEquidalpha1 +3050278,bio/VaricellovirusEquidalpha4 +3050281,bio/PercavirusEquidgamma2 +3050287,bio/MardivirusGallidalpha2 +3050292,bio/SimplexvirusHumanalpha1 +3050294,bio/VaricellovirusHumanalpha3 +3050299,bio/LymphocryptovirusHumangamma4 +3050301,bio/IctavirusIctaluridallo1 +3050305,bio/SimplexvirusMacacinealpha1 +3050308,bio/CytomegalovirusMacacinebeta3 +3050315,bio/RhadinovirusMacacinegamma5 +3050320,bio/MardivirusMeleagridalpha1 +3050327,bio/RhadinovirusMuridgamma4 +3050334,bio/CytomegalovirusPaninebeta2 +3052046,bio/BocaparvovirusUngulate2 +3162714,bio/Osteogaster diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf deleted file mode 100644 index e6217a7ab5..0000000000 --- a/scripts/biomedical/NCBI_Taxonomy/test_data/host_enum_expected.mcf +++ /dev/null @@ -1,58 +0,0 @@ -Node:dcid:BiologicalHostEnum -name: "BiologicalHostEnum" -typeOf: schema:Class -subClassOf: schema:Enumeration -description: "A host is a larger organism that harbors a smaller organism. The relationship between the two organisms can be parasitic, mutualistic, or commensalist. This encodes the type of larger organism that is serving as a host." - -Node:dcid:BiologicalHostAlgae -name: algae -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostArchaea -name: archaea -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostBacteria -name: bacteria -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostEukaryoticAlgae -name: eukaryotic algae -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostFungi -name: fungi -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostHuman -name: human -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostHumanStool -name: human stool -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostInsects -name: insects -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostInvertebrates -name: invertebrates -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostLandPlants -name: land plants -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostPlants -name: plants -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostProtozoa -name: protozoa -typeOf: dcs:BiologicalHostEnum - -Node:dcid:BiologicalHostVertebrates -name: vertebrates -typeOf: dcs:BiologicalHostEnum - diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/input/categories.dmp b/scripts/biomedical/NCBI_Taxonomy/test_data/input/categories.dmp new file mode 100644 index 0000000000..3c00ed34b6 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/input/categories.dmp @@ -0,0 +1,7636 @@ +B 562 562 +B 786 786 +B 950 950 +E 2711 2711 +E 3311 3311 +E 3350 3350 +E 3447 3447 +E 3464 3464 +E 3485 3485 +E 3505 3505 +E 3512 3512 +E 3527 3527 +E 3528 3528 +E 3560 3560 +E 3621 3621 +E 3631 3631 +E 3635 3635 +E 3654 3654 +E 3668 3668 +E 3670 3670 +E 3694 3694 +E 3702 3702 +E 3728 3728 +E 3735 3735 +E 3750 3750 +E 3755 3755 +E 3755 3756 +E 3816 3816 +E 3847 3847 +E 3866 3866 +E 3902 3902 +E 3914 3914 +E 3915 3915 +E 3983 3983 +E 3986 3986 +E 4058 4058 +E 4060 4060 +E 4075 4075 +E 4113 4113 +E 4120 4120 +E 4151 4151 +E 4155 4155 +E 4182 4182 +E 4212 4212 +E 4212 4215 +E 4230 4230 +E 4400 4400 +E 4456 4456 +E 4460 4460 +E 4558 4558 +E 4565 4565 +E 4641 4641 +E 4787 4787 +E 4792 4792 +E 4932 4932 +E 5022 5022 +E 5101 5101 +E 5322 5322 +E 6116 6116 +E 6204 6204 +E 6221 6221 +E 6266 6266 +E 6271 6271 +E 6287 6287 +E 6326 6326 +E 6344 6344 +E 6396 6396 +E 6454 6454 +E 6573 6573 +E 6584 6584 +E 6587 6587 +E 6594 6594 +E 6687 6687 +E 6689 6689 +E 6717 6717 +E 6741 6741 +E 6759 6759 +E 6848 6848 +E 6852 6852 +E 6924 6924 +E 6941 6941 +E 6945 6945 +E 7007 7007 +E 7011 7011 +E 7051 7051 +E 7091 7091 +E 7098 7098 +E 7113 7113 +E 7116 7116 +E 7119 7119 +E 7127 7127 +E 7130 7130 +E 7141 7141 +E 7160 7160 +E 7175 7175 +E 7460 7460 +E 7461 7461 +E 7462 7462 +E 7463 7463 +E 7460 7469 +E 7507 7507 +E 7612 7612 +E 7660 7660 +E 7719 7719 +E 7755 7755 +E 7765 7765 +E 7852 7852 +E 7857 7857 +E 7873 7873 +E 7902 7902 +E 7913 7913 +E 7936 7936 +E 7943 7943 +E 7946 7946 +E 7955 7955 +E 7965 7965 +E 7973 7973 +E 7994 7994 +E 8001 8001 +E 8005 8005 +E 8017 8017 +E 8020 8020 +E 8020 8021 +E 8034 8034 +E 8034 8035 +E 8060 8060 +E 8063 8063 +E 8078 8078 +E 8090 8090 +E 8096 8096 +E 8097 8097 +E 8127 8127 +E 8173 8173 +E 8175 8175 +E 8187 8187 +E 8197 8197 +E 8199 8199 +E 8204 8204 +E 8226 8226 +E 8227 8227 +E 8237 8237 +E 8238 8238 +E 8237 8242 +E 8255 8255 +E 8284 8284 +E 8286 8286 +E 8305 8305 +E 8313 8313 +E 8316 8316 +E 8319 8319 +E 8321 8321 +E 8323 8323 +E 8324 8324 +E 8325 8325 +E 8326 8326 +E 8330 8330 +E 8354 8354 +E 8355 8355 +E 8364 8364 +E 8368 8368 +E 8371 8371 +E 8384 8384 +E 8386 8386 +E 8387 8387 +E 8388 8388 +E 8395 8395 +E 8400 8400 +E 8403 8403 +E 8406 8406 +E 8409 8409 +E 8410 8410 +E 8420 8420 +E 8425 8425 +E 8439 8439 +E 8443 8443 +E 8467 8467 +E 8469 8469 +E 8472 8472 +E 8475 8475 +E 8485 8485 +E 8499 8499 +E 8508 8508 +E 8517 8517 +E 8558 8558 +E 8569 8569 +E 8584 8584 +E 8605 8605 +E 8630 8630 +E 8631 8631 +E 8633 8633 +E 8635 8635 +E 8637 8637 +E 8656 8656 +E 8657 8657 +E 8663 8663 +E 8670 8670 +E 8682 8682 +E 8688 8688 +E 8693 8693 +E 8695 8695 +E 8714 8714 +E 8714 8719 +E 8723 8723 +E 8725 8725 +E 8765 8765 +E 8767 8767 +E 8769 8769 +E 8787 8787 +E 8797 8797 +E 8801 8801 +E 8813 8813 +E 8838 8838 +E 8839 8839 +E 8839 8840 +E 8843 8843 +E 8843 8844 +E 8845 8845 +E 8855 8855 +E 8861 8861 +E 8871 8871 +E 8872 8872 +E 8873 8873 +E 8874 8874 +E 8875 8875 +E 8876 8876 +E 8885 8885 +E 8895 8895 +E 8909 8909 +E 8932 8932 +E 8945 8945 +E 8957 8957 +E 8959 8959 +E 8964 8964 +E 8973 8973 +E 9002 9002 +E 9014 9014 +E 9017 9017 +E 9019 9019 +E 9020 9020 +E 9031 9031 +E 9043 9043 +E 9052 9052 +E 9059 9059 +E 9067 9067 +E 9105 9105 +E 9135 9135 +E 9151 9151 +E 9160 9160 +E 9209 9209 +E 9210 9210 +E 9226 9226 +E 9228 9228 +E 9248 9248 +E 9258 9258 +E 9261 9261 +E 9267 9267 +E 9275 9275 +E 9302 9302 +E 9310 9310 +E 9314 9314 +E 9319 9319 +E 9333 9333 +E 9337 9337 +E 9355 9355 +E 9368 9368 +E 9371 9371 +E 9378 9378 +E 9387 9387 +E 9395 9395 +E 9400 9400 +E 9411 9411 +E 9426 9426 +E 9430 9430 +E 9433 9433 +E 9435 9435 +E 9463 9463 +E 9477 9477 +E 9483 9483 +E 9487 9487 +E 9488 9488 +E 9495 9495 +E 9503 9503 +E 9505 9505 +E 9514 9514 +E 9515 9515 +E 9516 9516 +E 9519 9519 +E 9521 9521 +E 9523 9523 +E 9530 9530 +E 9534 9534 +E 9535 9535 +E 9538 9538 +E 9541 9541 +E 9544 9544 +E 9545 9545 +E 9546 9546 +E 9552 9552 +E 9555 9555 +E 9556 9556 +E 9557 9557 +E 9557 9562 +E 9565 9565 +E 9580 9580 +E 9593 9593 +E 9593 9595 +E 9600 9600 +E 9601 9601 +E 9600 9602 +E 9620 9620 +E 9622 9622 +E 9627 9627 +E 9634 9634 +E 9651 9651 +E 9651 9652 +E 9654 9654 +E 9659 9659 +E 9664 9664 +E 9685 9685 +E 9704 9704 +E 9711 9711 +E 9725 9725 +E 9735 9735 +E 9736 9736 +E 9739 9739 +E 9742 9742 +E 9749 9749 +E 9764 9764 +E 9770 9770 +E 9777 9777 +E 9783 9783 +E 9785 9785 +E 9786 9786 +E 9794 9794 +E 9796 9796 +E 9798 9798 +E 9801 9801 +E 9807 9807 +E 9813 9813 +E 9813 9814 +E 9843 9843 +E 9848 9848 +E 9849 9849 +E 9852 9852 +E 9852 9853 +E 9870 9870 +E 9886 9886 +E 9899 9899 +E 9901 9901 +E 9902 9902 +E 9906 9906 +E 9913 9913 +E 9915 9915 +E 9917 9917 +E 9923 9923 +E 9925 9925 +E 9927 9927 +E 9940 9938 +E 9940 9940 +E 9978 9978 +E 9986 9986 +E 9995 9995 +E 9997 9997 +E 10007 10002 +E 10007 10003 +E 10007 10004 +E 10007 10005 +E 10007 10006 +E 10007 10007 +E 10012 10012 +E 10019 10019 +E 10023 10023 +E 10029 10029 +E 10034 10034 +E 10036 10036 +E 10054 10054 +E 10068 10068 +E 10085 10085 +E 10089 10089 +E 10090 10090 +E 10090 10091 +E 10090 10092 +E 10093 10093 +E 10096 10096 +E 10103 10103 +E 10112 10112 +E 10113 10113 +E 10116 10116 +E 10117 10117 +E 10121 10121 +E 10129 10129 +E 10141 10141 +E 10146 10146 +E 10149 10149 +E 10157 10157 +E 10172 10172 +E 10175 10175 +V 12305 12305 +V 12305 12306 +V 12305 12307 +V 12305 12308 +V 12305 12309 +V 12305 12310 +V 12305 12311 +V 12305 12312 +E 12946 12946 +E 12983 12983 +E 13013 13013 +E 13029 13029 +E 13037 13037 +E 13040 13040 +E 13091 13091 +E 13139 13139 +E 13151 13151 +E 13164 13164 +E 13266 13266 +E 13290 13290 +E 13397 13397 +E 13427 13427 +E 13489 13489 +E 13603 13603 +E 13632 13632 +E 13676 13676 +E 13708 13708 +E 13721 13721 +E 13735 13735 +E 13746 13746 +E 13764 13764 +E 13834 13834 +E 15371 15371 +E 23013 23013 +E 27457 27457 +E 27596 27596 +E 27606 27606 +E 27616 27616 +E 27654 27654 +E 27695 27695 +E 27706 27706 +E 27720 27720 +E 27771 27771 +E 27777 27777 +E 27787 27787 +E 27788 27788 +E 27790 27790 +E 27923 27923 +E 28437 28437 +E 28483 28483 +E 28502 28502 +E 28540 28540 +E 28588 28588 +E 28737 28737 +E 28835 28835 +E 28913 28913 +E 29017 29017 +E 29022 29022 +E 29058 29058 +E 29073 29073 +E 29089 29089 +E 29091 29091 +E 29092 29092 +E 29139 29139 +E 29642 29642 +E 29694 29694 +E 29706 29706 +E 29892 29892 +E 30195 30195 +E 30317 30317 +E 30325 30325 +E 30326 30326 +E 30327 30327 +E 30331 30331 +E 30332 30332 +E 30334 30334 +E 30335 30335 +E 30336 30336 +E 30338 30338 +E 30343 30343 +E 30344 30344 +E 30374 30374 +E 30408 30408 +E 30414 30414 +E 30415 30415 +E 30423 30423 +E 30425 30425 +E 30427 30427 +E 30456 30456 +E 30461 30461 +E 30489 30489 +E 30520 30520 +E 30521 30521 +E 9940 30528 +E 30531 30531 +E 30532 30532 +E 30576 30576 +E 30590 30590 +E 30591 30591 +E 30594 30594 +E 30596 30596 +E 30609 30609 +E 30630 30630 +E 30640 30640 +E 30732 30732 +E 30804 30804 +E 30991 30991 +E 30993 30993 +E 31033 31033 +E 34903 31138 +E 31155 31155 +E 31155 31156 +V 12305 31717 +V 12305 31718 +V 12305 31719 +E 32549 32549 +E 32560 32560 +E 33118 33118 +E 33120 33120 +E 33434 33434 +E 33453 33453 +E 33466 33466 +E 33519 33519 +E 33529 33529 +E 33548 33548 +E 33610 33610 +E 33790 33790 +E 34172 34172 +E 34205 34205 +E 34647 34647 +E 34649 34649 +E 34676 34676 +E 34740 34740 +E 34816 34816 +E 34819 34819 +E 34886 34886 +E 34892 34892 +E 34903 34903 +E 13735 34908 +E 34924 34924 +E 34929 34929 +E 35046 35046 +E 10090 35531 +E 9319 35580 +E 35732 35732 +E 35883 35883 +E 35924 35924 +E 36221 36221 +E 36223 36223 +E 36229 36229 +E 36245 36245 +E 36247 36247 +E 36249 36249 +E 36272 36272 +E 36275 36275 +E 36288 36288 +E 36312 36312 +E 36313 36313 +E 36317 36317 +E 36318 36318 +V 12305 36400 +E 36796 36796 +E 36799 36799 +E 36800 36800 +E 37003 37003 +E 37022 37022 +E 37032 37032 +E 37039 37039 +E 37088 37088 +E 37185 37185 +E 37285 37285 +E 37295 37295 +E 37347 37347 +E 37438 37438 +E 9355 37551 +E 37601 37601 +E 37607 37607 +E 37610 37610 +B 562 37762 +E 38527 38527 +E 38565 38565 +E 7175 38569 +E 38598 38598 +E 38620 38620 +E 38679 38679 +E 27787 38764 +E 38772 38772 +E 38773 38773 +E 38934 38934 +E 39023 39023 +E 39030 39030 +E 39082 39082 +E 39099 39099 +E 39343 39343 +E 10090 39442 +E 39501 39501 +E 39534 39534 +E 39589 39589 +E 39591 39591 +E 39602 39602 +E 39603 39603 +E 39604 39604 +E 39682 39682 +E 39705 39705 +E 39708 39708 +E 39855 39855 +E 39958 39958 +E 39993 39993 +E 40009 40009 +E 40075 40075 +E 40095 40095 +E 40104 40104 +E 40157 40157 +E 40169 40169 +E 40180 40180 +E 40205 40205 +E 40224 40224 +E 40229 40229 +E 40450 40450 +E 40505 40505 +E 40690 40690 +E 41107 41107 +E 41139 41139 +E 8020 41164 +E 42043 42043 +E 42043 42044 +E 42059 42059 +E 42061 42061 +E 42147 42147 +E 42150 42150 +E 42151 42151 +E 42196 42196 +E 42229 42229 +E 42284 42284 +E 42286 42286 +E 42296 42296 +E 42299 42299 +E 42337 42337 +E 7175 42434 +E 42514 42514 +E 34647 42519 +E 42526 42526 +E 42563 42563 +E 43042 43042 +E 43044 43044 +E 43104 43104 +E 43327 43327 +E 43332 43332 +E 9901 43346 +E 9901 43347 +E 43385 43385 +E 43472 43472 +E 43532 43532 +E 43542 43542 +E 43558 43558 +E 43645 43645 +E 43700 43700 +E 43777 43777 +E 44326 44326 +E 7460 44477 +E 44492 44492 +E 44664 44664 +E 44679 44679 +E 45171 45171 +E 45325 45325 +E 45487 45487 +E 45623 45623 +E 45644 45644 +E 45779 45779 +E 10090 46456 +E 46502 46502 +E 46514 46514 +E 46750 46750 +E 46780 46780 +E 46906 46906 +E 46906 46907 +E 46963 46963 +E 47435 47435 +E 47436 47436 +E 47437 47437 +E 47543 47543 +E 47548 47548 +E 47549 47549 +E 47555 47555 +E 47559 47559 +E 47561 47561 +E 47564 47564 +E 47577 47577 +E 47586 47586 +E 31033 47663 +E 10023 47974 +E 9487 48018 +E 48169 48169 +E 48191 48191 +E 48193 48193 +E 48456 48456 +E 48849 48849 +E 48890 48890 +E 48988 48988 +E 9261 49271 +E 49554 49554 +E 49652 49652 +E 50353 50353 +E 50591 50591 +E 50733 50733 +E 50790 50790 +E 50911 50911 +E 50913 50913 +E 50914 50914 +E 50915 50915 +E 51089 51089 +E 51342 51342 +E 51750 51750 +E 51752 51752 +E 51844 51844 +E 51846 51846 +E 51891 51891 +E 51896 51896 +E 51896 51897 +E 51902 51902 +E 51949 51949 +E 51959 51959 +E 51980 51980 +E 52105 52105 +E 52158 52158 +E 52232 52232 +E 29058 52318 +E 52372 52372 +E 52617 52617 +E 52631 52631 +E 52653 52653 +E 52814 52814 +E 52838 52838 +E 53222 53222 +E 53883 53883 +E 54021 54021 +E 54054 54054 +E 54133 54133 +E 54181 54181 +E 54319 54319 +E 54328 54328 +E 54342 54342 +E 30414 54391 +E 54484 54484 +E 54484 54486 +E 54497 54497 +E 54500 54500 +E 54563 54563 +E 54769 54769 +E 54971 54971 +E 55055 55055 +E 55108 55108 +E 55534 55534 +E 56217 56217 +E 56313 56313 +E 56364 56364 +E 56435 56435 +E 56722 56722 +E 57176 57176 +E 57374 57374 +E 57375 57375 +E 57378 57378 +E 10090 57486 +E 57544 57544 +E 57550 57550 +E 57550 57551 +E 57550 57552 +E 57554 57554 +E 57555 57555 +E 57571 57571 +E 57571 57572 +E 57571 57573 +E 57571 57574 +E 57805 57805 +E 57989 57989 +E 58071 58071 +E 58187 58187 +E 58209 58209 +E 58317 58317 +E 58319 58319 +E 58325 58325 +E 58512 58512 +E 58517 58517 +E 58519 58519 +E 57550 58673 +E 57550 58674 +E 57550 58675 +E 57550 58676 +E 57550 58677 +E 58767 58767 +E 58824 58824 +E 59529 59529 +E 59538 59538 +E 59557 59557 +E 59661 59661 +E 59946 59946 +E 60273 60273 +E 60281 60281 +E 60283 60283 +E 60402 60402 +E 60468 60468 +E 60710 60710 +E 61156 61156 +E 61195 61195 +E 30331 61428 +E 61614 61614 +E 61616 61616 +E 61620 61620 +E 61621 61621 +E 61817 61817 +E 61819 61819 +E 61836 61836 +E 61851 61851 +E 61852 61852 +E 61853 61853 +E 62067 62067 +E 62226 62226 +E 62330 62330 +E 63058 63058 +E 63479 63479 +E 63614 63614 +E 10175 63618 +E 10175 63619 +E 10175 63620 +E 10175 63621 +E 63787 63787 +E 64152 64152 +E 64176 64176 +E 64415 64415 +E 64459 64459 +E 64799 64799 +E 64884 64884 +E 65476 65476 +E 65621 65621 +E 65771 65771 +E 66062 66062 +E 66063 66063 +E 66169 66169 +E 66627 66627 +E 68449 68449 +E 68464 68464 +E 68476 68476 +E 68722 68722 +E 68732 68732 +E 68736 68736 +E 68737 68737 +E 69077 69077 +E 69081 69081 +E 69229 69229 +E 69489 69489 +E 69811 69811 +E 4565 69995 +E 70019 70019 +E 8663 70142 +E 70548 70548 +E 70825 70825 +E 72011 72011 +E 72247 72247 +E 72248 72248 +E 72255 72255 +E 72882 72882 +E 73327 73327 +E 9794 73334 +E 9807 73337 +E 73493 73493 +E 73634 73634 +E 74133 74133 +E 74364 74364 +E 74940 74940 +E 75032 75032 +E 75042 75042 +E 75046 75046 +E 75329 75329 +E 75332 75332 +E 75348 75348 +E 75358 75358 +E 75562 75562 +E 75832 75832 +E 75836 75836 +E 75838 75838 +E 75839 75839 +E 75842 75842 +E 75864 75864 +E 75988 75988 +E 75990 75990 +E 76215 76215 +E 76219 76219 +E 76235 76235 +E 76239 76239 +E 76338 76338 +E 76340 76340 +E 76717 76717 +E 77027 77027 +E 78195 78195 +E 78394 78394 +E 7127 78512 +E 78615 78615 +E 78617 78617 +E 78620 78620 +E 78620 78621 +E 78876 78876 +E 78897 78897 +E 79015 79015 +E 79626 79626 +E 79684 79684 +E 10090 80274 +E 80345 80345 +E 4113 80418 +E 80772 80772 +E 80789 80789 +E 80836 80836 +E 80839 80839 +E 80949 80949 +E 80951 80951 +E 80966 80966 +E 81370 81370 +E 81636 81636 +E 9530 81944 +E 82464 82464 +E 82466 82466 +E 82595 82595 +B 562 83333 +B 562 83334 +E 83875 83875 +E 83912 83912 +E 83971 83971 +E 84645 84645 +E 85589 85589 +E 30596 85699 +E 86068 86068 +E 86207 86207 +E 9870 86327 +E 9870 86328 +E 9870 86329 +E 86345 86345 +E 86366 86366 +E 86373 86373 +E 86543 86543 +E 86606 86606 +E 86918 86918 +E 86921 86921 +E 86942 86942 +E 87138 87138 +E 88031 88031 +E 88116 88116 +E 88120 88120 +E 7460 88217 +E 88445 88445 +E 88445 88446 +E 88445 88447 +E 88448 88448 +E 89462 89462 +E 89468 89468 +E 9052 89548 +E 9052 89549 +E 8020 90313 +E 9541 90386 +E 9545 90388 +E 90408 90408 +E 91611 91611 +E 91721 91721 +E 91738 91738 +E 91745 91745 +E 92439 92439 +E 9654 92709 +E 9654 92710 +E 9654 92711 +E 92724 92724 +E 92731 92731 +E 92733 92733 +E 92734 92734 +E 92737 92737 +E 93715 93715 +E 7461 94128 +E 7461 94129 +E 94232 94232 +E 94413 94413 +E 94437 94437 +E 94835 94835 +E 94993 94993 +E 95143 95143 +E 95181 95181 +E 10121 95534 +E 95602 95602 +E 10121 95727 +E 95972 95972 +E 96430 96430 +E 96741 96741 +E 96932 96932 +E 97956 97956 +E 8284 98386 +E 98648 98648 +E 98921 98921 +E 98922 98922 +E 9783 99487 +E 9783 99488 +E 99490 99490 +E 99855 99855 +E 49554 100615 +E 925459 100784 +E 100823 100823 +E 9534 100936 +E 100937 100937 +E 101364 101364 +E 9927 101655 +E 9927 101656 +E 9927 101657 +E 9927 101658 +E 9927 101659 +E 101699 101699 +E 101840 101840 +E 9534 101841 +E 8284 101881 +E 101899 101899 +E 102107 102107 +E 102211 102211 +E 102246 102246 +E 103373 103373 +E 103431 103431 +E 103433 103433 +E 103434 103434 +E 104688 104688 +E 104690 104690 +E 104691 104691 +E 104895 104895 +E 104896 104896 +E 104954 104954 +E 105012 105012 +E 105427 105427 +E 105513 105513 +E 105513 105582 +E 9556 106398 +E 106727 106727 +E 107026 107026 +E 109178 109178 +E 109271 109271 +E 109296 109296 +E 109674 109674 +E 109960 109960 +E 109962 109962 +E 109965 109965 +E 110072 110072 +E 110076 110076 +E 110077 110077 +E 110094 110094 +E 110102 110102 +E 110107 110107 +E 110111 110111 +E 110116 110116 +E 110118 110118 +E 110212 110212 +E 110620 110620 +E 110793 110793 +E 110926 110926 +E 111065 111065 +E 111124 111124 +E 111128 111128 +E 111130 111130 +E 111183 111183 +E 111367 111367 +E 111784 111784 +E 111811 111811 +E 111881 111881 +E 111898 111898 +E 111900 111900 +E 111902 111902 +E 111904 111904 +E 111905 111905 +E 111906 111906 +E 111907 111907 +E 111916 111916 +E 111917 111917 +E 111918 111918 +E 111923 111923 +E 111924 111924 +E 111925 111925 +E 111933 111933 +E 111981 111981 +E 112179 112179 +E 113305 113305 +E 113307 113307 +E 113315 113315 +E 113345 113345 +E 113380 113380 +E 113382 113382 +E 113383 113383 +E 113391 113391 +E 113540 113540 +E 113544 113544 +E 114085 114085 +E 114109 114109 +E 116049 116049 +E 116057 116057 +E 10090 116058 +E 116150 116150 +V 12305 117109 +V 12305 117110 +V 12305 117111 +V 12305 117112 +V 12305 117113 +V 12305 117114 +V 12305 117115 +V 12305 117116 +V 12305 117117 +V 12305 117118 +V 12305 117119 +V 12305 117120 +V 12305 117121 +V 12305 117122 +V 12305 117123 +V 12305 117124 +V 12305 117125 +V 12305 117126 +V 12305 117127 +E 9433 117602 +E 9433 117604 +E 118138 118138 +E 118230 118230 +E 118235 118235 +E 118643 118643 +E 118688 118688 +E 119041 119041 +E 119254 119254 +E 119282 119282 +E 119431 119431 +E 119488 119488 +E 119608 119608 +E 119609 119609 +E 119711 119711 +E 119769 119769 +E 9915 119909 +E 30591 120088 +E 120495 120495 +E 120502 120502 +E 33519 120803 +E 33519 120805 +E 33519 120827 +E 121156 121156 +E 121158 121158 +E 121160 121160 +E 121165 121165 +E 121168 121168 +E 121228 121228 +E 121350 121350 +E 121400 121400 +E 121400 121529 +E 121839 121839 +E 121869 121869 +E 122765 122765 +E 123243 123243 +E 123333 123333 +E 123659 123659 +E 9923 123799 +E 59529 123934 +E 124104 124104 +E 125246 125246 +E 125247 125247 +E 125252 125252 +E 125253 125253 +E 125854 125854 +E 8443 126640 +E 57571 126663 +E 126966 126966 +E 127020 127020 +E 127021 127021 +E 127079 127079 +E 127175 127175 +E 127641 127641 +E 127645 127645 +E 127654 127654 +E 127972 127972 +E 128105 128105 +E 68476 128140 +E 68476 128141 +E 129005 129005 +E 129008 129008 +E 129016 129016 +E 129025 129025 +E 129029 129029 +E 129077 129077 +E 129077 129078 +E 129108 129108 +E 129216 129216 +E 129237 129237 +E 129241 129241 +E 39030 129303 +E 39030 129304 +E 39030 129305 +E 39030 129306 +E 129788 129788 +E 129885 129885 +E 130786 130786 +E 130825 130825 +E 131645 131645 +E 33548 132548 +E 132587 132587 +E 8843 132591 +E 132696 132696 +E 132697 132697 +E 132706 132706 +E 132708 132708 +E 132710 132710 +E 134471 134471 +E 134700 134700 +E 39591 134736 +E 134910 134910 +E 135776 135776 +E 39591 136882 +E 39591 136883 +E 138070 138070 +E 138083 138083 +E 138084 138084 +E 138085 138085 +E 140017 140017 +E 140444 140444 +E 141839 141839 +E 141976 141976 +E 142466 142466 +E 143020 143020 +E 143313 143313 +E 143330 143330 +E 143350 143350 +E 143403 143403 +E 143421 143421 +E 143422 143422 +E 143439 143439 +E 143442 143442 +E 143502 143502 +E 143526 143526 +E 143529 143529 +E 143533 143533 +E 143535 143535 +E 143539 143539 +E 143563 143563 +E 143568 143568 +E 143592 143592 +E 143648 143648 +E 143895 143895 +E 5022 143996 +E 145400 145400 +E 146146 146146 +E 146617 146617 +E 146625 146625 +E 146711 146711 +E 146730 146730 +E 146731 146731 +E 147650 147650 +E 1496311 147707 +E 1496311 147708 +E 147909 147909 +E 147949 147949 +E 9725 149090 +E 149983 149983 +E 149986 149986 +E 150245 150245 +E 150319 150319 +E 150323 150323 +E 150325 150325 +E 150436 150436 +E 150710 150710 +E 151304 151304 +E 151541 151540 +E 151541 151541 +E 152347 152347 +E 7902 152493 +E 7902 152494 +E 152539 152539 +E 9739 152705 +E 153621 153621 +E 154348 154348 +E 154816 154816 +E 154823 154823 +E 155165 155165 +E 155167 155167 +B 562 155864 +E 156563 156563 +E 156565 156565 +E 129216 156863 +E 129216 156865 +E 129216 156868 +E 156870 156870 +E 156873 156873 +E 156874 156874 +E 156875 156875 +E 156876 156876 +E 156877 156877 +E 156878 156878 +E 156879 156879 +E 156881 156881 +E 156992 156992 +E 8499 157164 +E 4151 157260 +E 3914 157680 +E 3914 157739 +E 3915 157748 +E 158052 158052 +E 48849 158053 +E 155167 158687 +E 155167 158688 +E 9736 158747 +E 98922 159318 +E 159457 159457 +E 160721 160721 +E 160725 160725 +E 160734 160734 +E 160742 160742 +E 160760 160760 +E 161274 161274 +E 161624 161624 +E 10012 161639 +E 10012 161640 +E 161680 161680 +E 161698 161698 +E 161704 161704 +E 161706 161706 +E 161707 161707 +E 161767 161767 +E 161940 161940 +E 57571 162712 +E 9852 162953 +E 9852 162954 +E 163129 163129 +E 163134 163134 +E 163137 163137 +E 163828 163828 +E 164282 164282 +E 164302 164302 +E 164310 164310 +E 164648 164648 +E 164736 164736 +E 164738 164738 +E 164740 164740 +E 164743 164743 +E 164746 164746 +E 164969 164969 +E 164970 164970 +E 164971 164971 +E 164973 164973 +E 140017 165013 +E 140017 165033 +E 140017 165036 +E 140017 165038 +E 140017 165040 +E 140017 165055 +E 165099 165099 +E 165226 165226 +E 165846 165846 +E 165858 165858 +E 165858 165859 +E 165861 165861 +E 151541 165862 +E 151541 165863 +E 151541 165864 +E 151541 165865 +E 165861 165867 +E 166779 166779 +E 9535 167131 +E 167804 167804 +E 79626 167853 +E 167933 167933 +E 167935 167935 +E 167953 167953 +E 168631 168631 +B 562 168807 +B 562 168927 +E 170207 170207 +E 8443 171366 +E 171407 171407 +E 171585 171585 +E 171592 171592 +E 171594 171594 +E 34740 171916 +E 34740 171917 +E 34740 171918 +E 4558 171959 +E 172552 172552 +E 8020 173242 +E 173308 173308 +E 662561 173987 +E 1088130 173988 +E 174269 174269 +E 9515 174598 +E 175439 175439 +E 175930 175930 +E 175930 175931 +E 176013 176013 +E 176014 176014 +E 176015 176015 +E 176039 176039 +E 176043 176043 +E 37607 176085 +E 37607 176086 +E 176187 176187 +E 176188 176188 +E 176316 176316 +E 176508 176508 +E 177060 177060 +E 177089 177089 +E 177184 177184 +E 178293 178293 +E 10090 179238 +E 179362 179362 +E 179674 179674 +E 180174 180174 +E 180214 180214 +E 181096 181096 +E 181099 181099 +E 181119 181119 +E 181330 181330 +E 181399 181399 +E 181422 181422 +E 181437 181437 +E 181443 181443 +E 29058 182075 +E 9503 182254 +E 182256 182256 +E 30590 182257 +E 182936 182936 +E 183177 183177 +B 562 183192 +E 3902 183292 +E 3902 183293 +E 182256 183328 +E 9593 183511 +E 183653 183653 +E 184238 184238 +E 184440 184440 +E 184539 184539 +E 184780 184780 +E 185586 185586 +E 185748 185748 +E 185876 185876 +E 186211 186211 +E 186600 186600 +E 186990 186990 +E 187007 187007 +E 187415 187415 +E 188107 188107 +E 188380 188380 +E 188568 188568 +E 5322 188764 +E 189922 189922 +E 9521 190117 +E 190369 190369 +E 43327 190471 +E 190476 190476 +E 3866 190745 +E 3866 190746 +E 3866 190747 +E 191198 191198 +E 191206 191206 +E 191398 191398 +E 9870 191431 +E 8443 191471 +E 191473 191473 +E 191474 191474 +E 191476 191476 +E 191477 191477 +E 191477 191478 +E 191716 191716 +E 191813 191813 +E 191873 191873 +E 191976 191976 +E 192188 192188 +E 192191 192191 +E 192207 192207 +E 192207 192208 +E 192593 192593 +E 36223 192855 +E 36223 192856 +E 36223 192857 +E 36223 192858 +E 9535 192859 +E 9535 192860 +E 194199 194199 +E 9870 194539 +E 194917 194917 +E 195596 195596 +E 195653 195653 +E 195821 195821 +E 196387 196387 +E 196770 196770 +E 196774 196774 +E 196781 196781 +E 197464 197464 +E 198027 198027 +E 29706 198030 +E 9521 198114 +E 198323 198323 +E 198635 198635 +E 198938 198938 +B 562 199310 +E 7460 200405 +E 7460 200406 +E 7460 200407 +E 7460 200408 +E 7460 200409 +E 7460 200410 +E 7460 200411 +E 202063 202063 +E 9725 202275 +E 202456 202456 +E 202839 202839 +E 203116 203116 +E 203277 203277 +E 203558 203558 +E 62330 204002 +E 204814 204814 +E 204942 204942 +E 204965 204965 +E 204965 204966 +E 204965 204967 +E 204968 204968 +E 205123 205123 +E 205595 205595 +E 206143 206143 +E 206427 206427 +E 34924 206547 +E 119609 207913 +E 208071 208071 +E 36229 208089 +E 36229 208090 +E 8499 208213 +E 156563 208220 +E 9031 208524 +E 9031 208525 +E 9031 208526 +E 209478 209478 +E 209479 209479 +E 209480 209480 +E 209679 209679 +E 210139 210139 +E 210202 210202 +E 210409 210409 +E 9555 211508 +E 211510 211510 +E 211679 211679 +E 109674 211915 +E 211967 211967 +E 212358 212358 +E 7460 212527 +E 4641 213592 +E 213803 213803 +E 8324 213857 +E 213858 213858 +E 132706 213961 +E 93715 213969 +E 132710 213982 +E 214017 214017 +E 214018 214018 +E 214131 214131 +E 214133 214133 +E 214156 214156 +E 214161 214161 +E 214171 214171 +E 214181 214181 +E 214293 214293 +E 214332 214332 +E 214366 214366 +E 214431 214431 +E 214449 214449 +E 214486 214486 +E 4641 214685 +E 4641 214686 +E 4641 214687 +E 4641 214697 +E 9002 214889 +E 215329 215329 +E 215336 215336 +E 215358 215358 +E 215402 215402 +E 215440 215440 +E 7460 216129 +E 216193 216193 +B 562 216592 +E 217634 217634 +B 562 217992 +E 218474 218474 +E 218714 218714 +E 218720 218720 +E 218720 218721 +E 218750 218750 +E 218750 218751 +E 219333 219333 +E 219593 219593 +E 33120 221454 +E 221568 221568 +E 221866 221866 +E 221905 221905 +E 9794 221981 +E 9310 223564 +E 9310 223565 +E 9786 223589 +E 223773 223773 +E 223773 223774 +E 223773 223775 +E 223805 223805 +E 223891 223891 +E 224340 224340 +E 224708 224708 +E 224716 224716 +E 224718 224718 +E 9742 224731 +E 225060 225060 +E 225117 225117 +E 9852 225176 +E 225337 225337 +E 5022 225342 +E 5022 225343 +E 225390 225390 +E 225391 225391 +E 57571 226888 +E 226889 226889 +E 55534 227460 +E 55534 227461 +E 78620 227540 +E 78620 227541 +E 111881 227542 +E 218720 227544 +E 227978 227978 +E 228011 228011 +E 228029 228029 +E 4641 228179 +E 4641 228180 +E 9870 228255 +E 9870 228256 +E 228306 228306 +E 228420 228420 +E 228422 228422 +E 228425 228425 +E 228429 228429 +E 228433 228433 +E 228434 228434 +E 228444 228444 +E 228445 228445 +E 228449 228449 +E 228452 228452 +E 228564 228564 +E 228608 228608 +E 228670 228670 +E 229057 229057 +E 230655 230655 +E 9986 230741 +E 230980 230980 +E 231021 231021 +E 231224 231224 +E 9923 231416 +E 4565 231718 +E 9228 232646 +E 9228 232648 +E 9228 232650 +E 204968 232862 +E 7175 233155 +E 233775 233775 +E 233779 233779 +E 233780 233780 +E 234793 234793 +E 235326 235326 +E 235354 235354 +E 236742 236742 +E 236793 236793 +E 238031 238031 +E 238840 238840 +E 10117 239728 +E 240173 240173 +E 240395 240395 +E 240406 240406 +E 241069 241069 +E 241142 241142 +E 241340 241340 +E 231224 242559 +E 242581 242581 +E 231224 242838 +E 242981 242981 +E 243225 243225 +E 243562 243562 +E 244290 244290 +B 562 244314 +B 562 244315 +B 562 244316 +B 562 244317 +B 562 244318 +B 562 244319 +B 562 244320 +B 562 244321 +B 562 244322 +B 562 244323 +B 562 244324 +B 562 244325 +B 562 244326 +E 244447 244447 +E 244449 244449 +E 245046 245046 +E 245147 245147 +E 245776 245776 +E 245847 245847 +E 245850 245850 +E 246411 246411 +E 246418 246418 +E 247094 247094 +E 247538 247538 +E 247978 247978 +E 34740 248309 +E 34740 248310 +E 34740 248311 +E 34740 248312 +E 34740 248313 +E 34740 248314 +E 248792 248792 +E 248868 248868 +E 248945 248945 +E 249002 249002 +E 251502 251502 +E 254363 254363 +E 254382 254382 +E 254539 254539 +E 255564 255564 +V 12305 255721 +E 9886 256803 +E 30461 257817 +E 10175 257864 +E 257879 257879 +E 257884 257884 +E 4641 258441 +E 258452 258452 +E 8957 258924 +E 204965 260616 +E 30331 261169 +E 8387 261170 +E 8387 261171 +E 261519 261519 +E 261944 261944 +E 262651 262651 +E 262664 262664 +E 263372 263372 +E 263451 263451 +E 263928 263928 +E 264213 264213 +E 264364 264364 +E 265032 265032 +E 265035 265035 +E 265036 265036 +E 265040 265040 +E 265041 265041 +E 265044 265044 +E 34740 265455 +E 9067 265498 +E 30195 265513 +E 266506 266506 +E 266507 266507 +E 266509 266509 +E 266517 266517 +E 267130 267130 +E 267839 267839 +E 267840 267840 +E 267844 267844 +E 267845 267845 +E 268490 268490 +E 270252 270252 +E 270329 270329 +E 270454 270454 +E 270463 270463 +E 270574 270574 +E 99855 270926 +E 99855 270928 +E 271217 271217 +E 272047 272047 +E 272190 272190 +E 272797 272797 +E 37601 273488 +E 9843 273917 +E 9843 273918 +E 1110376 274415 +E 274457 274457 +E 274728 274728 +E 278734 278734 +E 278736 278736 +E 278773 278773 +E 13037 278856 +E 13037 278857 +E 279537 279537 +E 34924 279577 +E 279931 279931 +E 279961 279961 +E 7460 279976 +E 7460 279977 +E 279982 279982 +E 30591 280755 +E 280780 280780 +E 282069 282069 +E 282254 282254 +E 282316 282316 +E 282391 282391 +E 283035 283035 +E 283213 283213 +E 283215 283215 +E 283217 283217 +E 283373 283373 +E 283843 283843 +E 283870 283870 +E 284583 284583 +E 4932 285006 +E 9794 285027 +E 37607 285252 +E 43777 285955 +E 285992 285992 +E 285992 285993 +E 285992 285995 +E 285996 285996 +E 286016 286016 +E 286537 286537 +E 8034 287195 +E 288315 288315 +E 288317 288317 +E 8355 288554 +E 288646 288646 +E 288789 288789 +E 7462 288810 +E 290155 290155 +E 9433 291299 +E 291688 291688 +E 291689 291689 +E 291690 291690 +E 291691 291691 +E 291695 291695 +E 38527 291790 +E 291939 291939 +E 9248 292131 +E 9248 292132 +E 7461 292787 +E 251502 292827 +B 786 293614 +E 7460 293688 +E 7460 293692 +E 7460 293694 +E 7460 293708 +E 7460 293709 +E 1110376 294175 +E 1110376 294176 +E 294758 294758 +E 295660 295660 +E 57571 297008 +E 42337 297358 +E 42337 297359 +E 297528 297528 +E 299648 299648 +E 299668 299668 +E 299683 299683 +E 299684 299684 +E 299727 299727 +E 4151 299800 +E 300230 300230 +E 300415 300415 +E 301031 301031 +E 301037 301037 +E 301041 301041 +E 301166 301166 +E 301299 301299 +E 183177 301975 +E 183177 301976 +E 34924 301987 +E 34924 301988 +E 34924 301989 +E 30338 302095 +E 30338 302096 +E 30338 302097 +E 302418 302418 +E 302537 302537 +E 302540 302540 +E 302541 302541 +E 302544 302544 +E 302546 302546 +E 302777 302777 +E 303304 303304 +E 54133 303485 +E 303695 303695 +E 303935 303935 +E 304009 304009 +E 304017 304017 +E 305662 305662 +E 305819 305819 +E 305821 305821 +E 306578 306578 +E 306590 306590 +E 282391 307087 +E 405016 307101 +E 307205 307205 +E 6584 307665 +E 6584 307666 +E 4932 307796 +E 307978 307978 +E 308092 308092 +E 309541 309541 +E 309911 309911 +E 310513 310513 +E 310571 310571 +E 310664 310664 +E 310666 310666 +E 310668 310668 +E 9807 310713 +E 310804 310804 +E 310915 310915 +E 311037 311037 +E 311328 311328 +E 311577 311577 +E 311779 311779 +E 311820 311820 +E 99855 312065 +E 8499 313440 +E 314003 314003 +E 314334 314334 +E 315381 315381 +E 316160 316160 +E 316163 316163 +B 562 316385 +B 562 316401 +B 562 316407 +B 562 316435 +E 317167 317167 +E 317171 317171 +E 317174 317174 +E 317301 317301 +E 317303 317303 +E 317313 317313 +E 317319 317319 +E 317327 317327 +E 317335 317335 +E 317336 317336 +E 317344 317344 +E 317363 317363 +E 317382 317382 +E 317388 317388 +E 317398 317398 +E 317403 317403 +E 317899 317899 +E 317943 317943 +E 318254 318254 +E 318302 318302 +E 318367 318367 +E 318376 318376 +E 318396 318396 +E 318413 318413 +E 318551 318551 +E 318743 318743 +E 319323 319323 +E 319444 319444 +E 319543 319543 +E 319817 319817 +E 320267 320267 +E 320294 320294 +E 74133 320454 +E 74133 320455 +E 320472 320472 +E 320612 320612 +E 321043 321043 +E 321043 321059 +E 321806 321806 +E 322711 322711 +E 9736 323441 +E 9736 323442 +E 323754 323754 +E 323755 323755 +E 324348 324348 +E 325554 325554 +E 325556 325556 +E 325557 325557 +E 325558 325558 +E 326940 326940 +E 326968 326968 +E 64176 327161 +E 327781 327781 +E 327803 327803 +E 327806 327806 +E 327941 327941 +E 327944 327944 +E 327958 327958 +E 327960 327960 +E 327965 327965 +E 54342 328272 +E 101699 328332 +E 101699 328333 +E 329116 329116 +E 329257 329257 +E 329258 329258 +E 132706 330361 +E 132706 330363 +E 132706 330364 +E 132706 330365 +E 132706 330366 +E 132710 330374 +E 132710 330375 +E 330460 330460 +E 235326 331019 +E 88116 331027 +B 562 331111 +B 562 331112 +E 9704 332523 +E 332575 332575 +E 332576 332576 +E 332578 332578 +E 333424 333424 +E 333676 333676 +E 333684 333684 +E 333686 333686 +E 333694 333694 +E 57571 333711 +E 270463 334113 +E 75348 334711 +E 334885 334885 +E 334892 334892 +E 334915 334915 +E 334942 334942 +E 334986 334986 +E 334999 334999 +E 8957 335093 +E 111811 335104 +E 111811 335111 +E 335395 335395 +E 335999 335999 +E 336072 336072 +E 336074 336074 +E 336075 336075 +E 336077 336077 +E 336078 336078 +E 336080 336080 +E 336081 336081 +E 336082 336082 +E 336083 336083 +E 161940 337512 +E 161940 337517 +E 337775 337775 +E 337883 337883 +E 338093 338093 +B 562 340184 +B 562 340185 +B 562 340186 +B 562 340197 +E 65476 340657 +E 65476 340665 +E 65476 340666 +B 562 341037 +E 9852 341674 +E 341696 341696 +E 342441 342441 +E 342815 342815 +E 342817 342817 +E 342819 342819 +E 9487 343424 +E 343929 343929 +E 36249 344225 +E 32560 344269 +E 32560 344270 +B 562 344601 +B 562 344610 +E 4641 344755 +E 345721 345721 +E 346249 346249 +E 346448 346448 +E 346451 346451 +E 7460 346609 +E 7460 346610 +E 7460 346611 +E 7460 346612 +E 116150 348720 +E 116150 348721 +E 31155 349119 +E 31155 349120 +E 351164 351164 +E 8078 351661 +E 352245 352245 +E 57571 353267 +E 57571 353268 +E 57571 353269 +E 57571 353270 +E 57571 353271 +E 9160 353272 +E 374649 353273 +E 36249 353277 +E 354129 354129 +E 351164 354207 +E 351164 354208 +E 351164 354210 +E 354433 354433 +E 354944 354944 +E 355514 355514 +E 355677 355677 +E 355915 355915 +E 356210 356210 +E 356215 356215 +E 356218 356218 +E 356228 356228 +E 356243 356243 +E 356265 356265 +E 356301 356301 +E 356314 356314 +E 764543 357123 +E 764543 357124 +E 357281 357281 +E 357811 357811 +B 562 358709 +E 359533 359533 +E 359535 359535 +E 359538 359538 +E 359668 359668 +E 51342 359807 +E 360505 360505 +E 214449 361450 +E 214449 361451 +E 214449 361452 +E 214449 361453 +E 214449 361454 +E 214449 361455 +B 562 362663 +E 363190 363190 +E 9783 363578 +B 562 364106 +E 364768 364768 +E 365059 365059 +E 30640 365147 +E 365581 365581 +E 34903 365635 +E 34903 365644 +E 183177 366678 +B 562 366836 +B 562 366837 +B 562 366838 +B 562 366839 +E 36245 367111 +E 367642 367642 +E 367647 367647 +E 367648 367648 +E 367669 367669 +E 367674 367674 +V 12305 367797 +V 12305 367798 +E 4120 368086 +E 369509 369509 +E 369511 369511 +E 369514 369514 +E 369515 369515 +E 369627 369627 +E 75348 369649 +E 370040 370040 +E 370357 370357 +E 371028 371028 +E 371673 371673 +E 371709 371709 +E 371864 371864 +E 132710 371884 +E 132710 371885 +E 142466 371887 +E 88120 371898 +E 142466 372286 +E 88120 372367 +E 33548 373030 +E 33548 373031 +E 33548 373032 +B 562 373045 +E 33120 374032 +E 374458 374458 +E 374600 374600 +E 374649 374649 +E 375434 375434 +E 376637 376637 +B 562 376724 +B 562 376725 +E 376739 376739 +E 376895 376895 +E 377266 377266 +E 377307 377307 +E 377316 377316 +E 377348 377348 +E 377353 377353 +E 378387 378387 +E 9906 380177 +B 562 381476 +E 156563 381522 +E 156563 381524 +E 111811 382661 +E 383841 383841 +E 384871 384871 +E 384895 384895 +E 384899 384899 +E 384902 384902 +E 385654 385654 +E 385657 385657 +E 8326 385667 +E 8324 385672 +E 8324 385673 +E 385674 385674 +E 385676 385676 +E 385678 385678 +B 562 386585 +E 55534 387427 +E 55534 387428 +E 55534 387429 +E 55534 387430 +E 55534 387431 +E 8957 387753 +E 8957 387754 +E 8957 387756 +E 8957 387757 +E 8957 387758 +E 8957 387759 +E 8957 387760 +E 389261 389261 +E 389288 389288 +E 389293 389293 +E 389298 389298 +E 389299 389299 +E 389303 389303 +E 389874 389874 +E 191477 389875 +E 390307 390307 +E 390363 390363 +E 390465 390465 +E 390484 390484 +E 390718 390718 +E 390977 390977 +E 391206 391206 +E 391220 391220 +E 391223 391223 +E 8485 391341 +E 391864 391864 +E 391866 391866 +E 89462 391902 +E 392903 392903 +E 394460 394460 +E 8325 395388 +E 8325 395389 +E 251502 395390 +E 396791 396791 +B 562 397447 +B 562 397448 +B 562 397449 +B 562 397450 +B 562 397451 +B 562 397452 +B 562 397453 +B 562 397454 +E 399177 399177 +E 662561 399782 +E 4151 399788 +E 9031 400035 +V 12305 400123 +E 400187 400187 +E 400502 400502 +E 8387 400544 +E 401547 401547 +E 402710 402710 +E 403224 403224 +E 4787 403677 +B 562 404387 +B 562 404388 +B 562 404389 +B 562 404390 +B 562 404391 +B 562 404392 +B 562 404393 +B 562 404394 +B 562 404395 +B 562 404396 +B 562 404397 +B 562 404398 +B 562 404399 +B 562 404400 +E 404976 404976 +E 9031 405000 +E 405016 405016 +E 405018 405018 +E 405022 405022 +E 405189 405189 +E 36247 405412 +E 36247 405413 +B 562 405955 +E 9593 406788 +E 132710 407151 +B 562 409438 +B 562 410290 +E 410301 410301 +E 410303 410303 +E 411963 411963 +E 8020 412663 +B 562 413997 +E 415323 415323 +E 415323 415324 +E 415331 415331 +E 415331 415332 +E 416556 416556 +E 418657 418657 +E 418659 418659 +E 418663 418663 +E 419645 419645 +E 419646 419646 +E 419956 419956 +E 109674 420181 +E 109674 420182 +E 420420 420420 +E 420422 420422 +E 420446 420446 +E 420460 420460 +E 420590 420590 +E 423320 423320 +E 8034 423369 +E 8034 423370 +E 29089 423449 +E 29089 423450 +E 423607 423607 +E 4565 425487 +E 7460 428022 +E 7460 428024 +E 7127 428388 +E 428446 428446 +E 428466 428466 +E 102107 430501 +E 102107 430502 +E 430793 430793 +E 431941 431941 +B 562 431946 +E 432164 432164 +E 432528 432528 +E 433684 433684 +E 433688 433688 +B 950 434131 +E 435155 435155 +E 435225 435225 +E 435638 435638 +E 435999 435999 +E 436885 436885 +E 437330 437330 +B 562 439184 +E 30325 439429 +E 30325 439430 +E 30325 439431 +E 30325 439432 +E 439704 439704 +B 562 439855 +E 439892 439892 +E 441319 441319 +E 441366 441366 +E 9801 441537 +E 9801 441538 +E 7460 441644 +E 441663 441663 +E 8801 441894 +E 1042646 442960 +E 443710 443710 +E 443716 443716 +E 443761 443761 +E 443774 443774 +E 443788 443788 +E 8355 443947 +B 562 444447 +B 562 444448 +B 562 444449 +B 562 444450 +B 562 444451 +B 562 444452 +B 562 444453 +B 562 444454 +E 13746 444852 +E 13746 444853 +E 445153 445153 +E 445506 445506 +E 445771 445771 +E 445772 445772 +E 445774 445774 +E 445777 445777 +E 445778 445778 +E 445779 445779 +E 445780 445780 +E 445782 445782 +E 445783 445783 +E 445784 445784 +E 445787 445787 +E 446415 446415 +E 446489 446489 +E 446502 446502 +E 447135 447135 +E 93715 447138 +E 132706 447151 +E 132710 447166 +E 447920 447920 +E 448029 448029 +E 448039 448039 +E 448113 448113 +E 448114 448114 +E 448381 448381 +E 448438 448438 +E 448469 448469 +E 448482 448482 +E 448486 448486 +E 448676 448676 +E 449221 449221 +E 66169 451750 +E 452076 452076 +E 452081 452081 +E 452646 452646 +E 72011 454007 +E 454142 454142 +E 8324 454750 +E 8319 454945 +E 455156 455156 +E 8845 457285 +E 457511 457511 +E 458026 458026 +E 52631 458323 +E 52631 458324 +E 52631 458325 +E 458605 458605 +E 45171 459181 +E 460200 460200 +E 460622 460622 +E 60710 460674 +E 461231 461231 +E 461284 461284 +E 461400 461400 +E 461409 461409 +E 4932 462209 +E 4932 462210 +E 134471 462251 +E 462318 462318 +E 462319 462319 +E 462321 462321 +E 462322 462322 +E 462324 462324 +E 462328 462328 +E 463597 463597 +E 41139 463703 +E 4932 464025 +E 464359 464359 +E 464373 464373 +E 464721 464721 +E 270454 465731 +E 270454 465733 +E 270454 465734 +E 270454 465735 +E 270454 465736 +E 282316 465741 +E 4932 466209 +E 467031 467031 +E 467706 467706 +E 467740 467740 +E 467741 467741 +E 467742 467742 +E 467775 467775 +E 4932 468558 +B 562 469008 +E 4932 471510 +E 471713 471713 +E 4932 471859 +E 4932 471861 +E 472225 472225 +E 472707 472707 +E 472711 472711 +E 473130 473130 +E 473184 473184 +E 473346 473346 +E 473458 473458 +B 562 475609 +E 476017 476017 +E 476251 476251 +E 9627 476260 +E 476506 476506 +E 10090 477815 +E 10090 477816 +E 181096 477932 +E 181096 477933 +E 30423 477937 +E 30423 477938 +E 30423 477939 +E 34924 477948 +B 562 478004 +B 562 478005 +B 562 478006 +B 562 478007 +B 562 478008 +E 3983 478097 +E 98922 478518 +E 478982 478982 +E 479651 479651 +E 479705 479705 +E 10012 480991 +E 481309 481309 +B 562 481805 +E 36317 482138 +E 36317 482139 +E 482143 482143 +E 52838 482283 +E 482375 482375 +B 562 482457 +B 562 482458 +E 482537 482537 +E 482914 482914 +E 483428 483428 +E 484165 484165 +E 8499 484476 +E 485637 485637 +E 486151 486151 +E 486220 486220 +E 4641 487149 +E 52838 487150 +E 487618 487618 +E 488224 488224 +E 488246 488246 +E 488252 488252 +B 562 488477 +E 27706 489037 +E 491159 491159 +E 132587 491200 +E 265041 491747 +E 265041 491748 +E 265041 491752 +E 164648 491852 +E 164648 491853 +E 491955 491955 +E 492764 492764 +E 493413 493413 +E 9521 495298 +E 9521 495299 +E 9521 495300 +E 495824 495824 +E 495863 495863 +E 495865 495865 +E 496090 496090 +E 496415 496415 +E 498271 498271 +B 562 498388 +E 498518 498518 +E 43645 498769 +E 499858 499858 +E 501720 501720 +E 9556 501791 +B 562 502346 +E 4932 502869 +E 30425 505311 +E 460200 505316 +E 505955 505955 +E 505961 505961 +E 30461 507945 +E 30461 507946 +E 30461 507947 +E 30461 507948 +E 30461 507949 +E 30461 507950 +E 507973 507973 +E 56313 507979 +E 56313 507980 +E 56313 507981 +E 56313 507982 +E 60710 508712 +E 509078 509078 +E 3983 510188 +E 3983 510189 +E 510768 510768 +B 562 511145 +E 3635 511458 +E 3635 511459 +E 3635 511460 +B 562 511693 +E 54769 512417 +E 54769 512418 +E 512429 512429 +E 512457 512457 +E 512458 512458 +E 512777 512777 +E 515824 515824 +E 516038 516038 +E 516811 516811 +E 491955 517767 +E 491955 517768 +E 491955 517769 +E 230655 517770 +E 230655 517771 +E 36275 520209 +E 520854 520854 +E 520858 520858 +E 520860 520860 +E 520875 520875 +E 521022 521022 +E 225060 521099 +E 521382 521382 +E 521416 521416 +E 521419 521419 +B 562 525281 +E 101840 525887 +E 526129 526129 +E 526138 526138 +B 562 526563 +B 562 527799 +B 562 531853 +E 532073 532073 +E 533315 533315 +B 562 536056 +E 536571 536571 +E 4932 538975 +E 4932 538976 +E 75839 541004 +E 208071 543504 +E 208071 543506 +B 562 544404 +E 544411 544411 +E 544413 544413 +E 544415 544415 +E 34740 544891 +E 34740 544892 +E 34740 544893 +E 34740 544894 +E 34740 544895 +E 4932 545124 +E 34740 545166 +E 545688 545688 +E 546549 546549 +E 415331 547574 +E 72255 547575 +E 415331 547762 +E 415331 548135 +E 415331 548136 +E 548164 548164 +E 548508 548508 +E 9783 548880 +B 562 550672 +B 562 550673 +B 562 550674 +B 562 550675 +B 562 550676 +B 562 550677 +B 562 550678 +B 562 550679 +B 562 550680 +B 562 550681 +B 562 550682 +B 562 550683 +B 562 550684 +B 562 550685 +B 562 550686 +B 562 550687 +B 562 550688 +B 562 550689 +B 562 550690 +B 562 550691 +E 552877 552877 +E 552897 552897 +E 552899 552899 +E 552920 552920 +E 552922 552922 +E 555356 555356 +E 555602 555602 +B 562 556266 +E 2711 558545 +E 4932 559292 +E 9433 559842 +E 51342 561552 +B 562 563770 +E 566292 566292 +E 566407 566407 +B 562 566546 +E 3447 568525 +E 568927 568927 +E 9986 568996 +B 562 569579 +E 4565 570172 +E 570414 570414 +E 570415 570415 +B 562 570506 +E 8078 571281 +E 571825 571825 +E 573213 573213 +B 562 573235 +E 573377 573377 +E 132697 573586 +E 132697 573587 +E 132697 573588 +E 573891 573891 +E 4641 574478 +B 562 574521 +E 4932 574961 +E 575557 575557 +E 577198 577198 +E 577200 577200 +E 577205 577205 +B 562 577665 +B 562 577666 +B 562 577667 +B 562 577668 +B 562 577669 +B 562 577670 +B 562 577671 +B 562 577672 +B 562 577673 +B 562 577674 +B 562 577675 +B 562 577676 +B 562 577677 +B 562 577678 +E 578142 578142 +E 578143 578143 +E 4932 580239 +E 4932 580240 +B 562 580464 +E 582434 582434 +E 584662 584662 +B 562 585034 +B 562 585035 +B 562 585055 +B 562 585056 +B 562 585057 +B 562 585395 +B 562 585396 +B 562 585397 +E 585466 585466 +E 586024 586024 +E 586785 586785 +E 482537 586973 +E 482537 586975 +E 9019 588856 +E 48849 589923 +E 590941 590941 +E 64799 591140 +E 591287 591287 +E 591288 591288 +E 591934 591934 +B 562 591946 +B 562 595495 +B 562 595496 +E 596107 596107 +E 596145 596145 +E 91738 596525 +E 111907 596563 +E 113345 596617 +E 132706 596631 +E 132706 596632 +E 7116 596636 +E 7116 596637 +E 64459 596644 +E 64459 596645 +E 39682 604432 +E 4932 614664 +E 4932 614665 +E 51750 621282 +E 622367 622367 +E 622367 622368 +E 622399 622399 +E 622413 622413 +E 622600 622600 +E 624848 624848 +B 562 626528 +B 562 626529 +B 562 626530 +B 562 626531 +B 562 626532 +B 562 626533 +B 562 626534 +B 562 626535 +B 562 626536 +E 627180 627180 +E 30425 627345 +E 30425 627346 +E 4641 630236 +E 632609 632609 +E 73327 634357 +B 562 634468 +B 562 634469 +E 635075 635075 +E 143529 635084 +E 635150 635150 +B 562 637388 +B 562 637912 +E 638140 638140 +E 642922 642922 +E 643485 643485 +E 643490 643490 +E 643491 643491 +E 643493 643493 +E 161680 643564 +E 4932 643680 +E 42043 645006 +E 43044 647911 +E 43044 647912 +E 651721 651721 +E 651724 651724 +E 652442 652442 +E 655099 655099 +E 7462 655644 +B 562 655817 +E 655831 655831 +E 655832 655832 +E 655833 655833 +E 655847 655847 +E 655848 655848 +E 655852 655852 +E 655855 655855 +E 655856 655856 +E 655869 655869 +E 655891 655891 +E 4058 656367 +B 562 656371 +B 562 656372 +B 562 656373 +B 562 656374 +B 562 656379 +B 562 656380 +B 562 656381 +B 562 656382 +B 562 656383 +B 562 656384 +B 562 656385 +B 562 656386 +B 562 656387 +B 562 656388 +B 562 656389 +B 562 656390 +B 562 656391 +B 562 656392 +B 562 656393 +B 562 656394 +B 562 656395 +B 562 656396 +B 562 656397 +B 562 656398 +B 562 656399 +B 562 656400 +B 562 656401 +B 562 656402 +B 562 656403 +B 562 656404 +B 562 656405 +B 562 656406 +B 562 656407 +B 562 656408 +B 562 656409 +B 562 656410 +B 562 656411 +B 562 656412 +B 562 656413 +B 562 656414 +B 562 656415 +B 562 656416 +B 562 656417 +B 562 656418 +B 562 656419 +B 562 656420 +B 562 656421 +B 562 656422 +B 562 656423 +B 562 656424 +B 562 656425 +B 562 656426 +B 562 656427 +B 562 656428 +B 562 656429 +B 562 656430 +B 562 656431 +B 562 656432 +B 562 656433 +B 562 656434 +B 562 656435 +B 562 656436 +B 562 656437 +B 562 656438 +B 562 656439 +B 562 656440 +B 562 656441 +B 562 656442 +B 562 656443 +B 562 656444 +B 562 656445 +B 562 656446 +B 562 656447 +B 562 656448 +B 562 656449 +E 282391 656805 +E 658163 658163 +E 658176 658176 +E 658182 658182 +E 30596 658398 +E 30596 658400 +E 4932 658763 +E 8861 658913 +E 8861 658914 +E 9906 659500 +E 30520 659501 +E 3505 659875 +E 662561 660297 +B 562 660582 +E 661134 661134 +E 661228 661228 +B 562 662541 +E 662561 662561 +E 663277 663277 +E 666059 666059 +E 8324 666141 +E 666682 666682 +E 119608 666873 +E 666915 666915 +E 270252 667123 +B 562 668369 +E 670114 670114 +E 670346 670346 +E 670488 670488 +E 670521 670521 +B 562 670887 +B 562 670888 +B 562 670889 +B 562 670890 +B 562 670891 +B 562 670892 +B 562 670893 +B 562 670894 +B 562 670895 +B 562 670896 +B 562 670897 +B 562 670898 +B 562 670899 +B 562 670900 +B 562 670901 +B 562 670902 +B 562 670903 +B 562 670904 +B 562 670905 +B 562 670906 +E 670918 670918 +E 68449 670920 +E 68449 670921 +E 191206 670923 +E 191206 670924 +E 670925 670925 +E 671158 671158 +E 671162 671162 +E 672774 672774 +E 672787 672787 +E 673032 673032 +E 34647 673382 +E 8469 673462 +E 673854 673854 +B 562 679202 +B 562 679204 +B 562 679205 +B 562 679206 +B 562 679207 +B 562 679895 +E 681214 681214 +E 681215 681215 +E 681216 681216 +E 681217 681217 +E 681218 681218 +E 681219 681219 +E 681220 681220 +E 681221 681221 +E 681226 681226 +E 681227 681227 +E 681237 681237 +E 681241 681241 +E 681251 681251 +E 681254 681254 +E 681258 681258 +E 681259 681259 +E 681262 681262 +E 681263 681263 +E 681274 681274 +E 34740 683684 +E 683850 683850 +B 562 685037 +B 562 685038 +E 685118 685118 +E 10146 686678 +E 687230 687230 +E 687235 687235 +E 687869 687869 +E 689408 689408 +E 374600 689474 +E 374649 690612 +E 374649 690613 +E 374649 690614 +E 374649 690615 +E 9785 691503 +E 691798 691798 +E 693459 693459 +E 693640 693640 +E 693642 693642 +E 693644 693644 +E 693712 693712 +E 694279 694279 +E 694306 694306 +E 694311 694311 +E 694503 694503 +E 694504 694504 +E 694506 694506 +E 694510 694510 +B 562 694514 +B 562 694515 +B 562 694516 +B 562 694517 +B 562 694518 +B 562 694519 +B 562 694520 +B 562 694521 +B 562 694522 +B 562 694523 +B 562 694524 +B 562 694525 +B 562 694526 +B 562 694527 +B 562 694528 +B 562 694529 +B 562 694530 +B 562 694531 +B 562 694532 +B 562 696406 +E 697147 697147 +E 697160 697160 +B 562 697893 +B 562 697894 +B 562 697895 +B 562 697896 +B 562 697897 +B 562 697898 +B 562 697899 +B 562 697900 +B 562 697901 +B 562 697902 +B 562 697903 +E 698420 698420 +E 7462 699449 +E 8485 699585 +E 700176 700176 +E 700637 700637 +E 700668 700668 +E 700796 700796 +B 562 701177 +E 702266 702266 +B 562 702430 +B 562 702431 +B 562 702432 +B 562 702433 +B 562 702434 +B 562 702435 +B 562 702436 +E 9228 703992 +E 704175 704175 +E 705554 705554 +E 39099 709033 +E 262664 709226 +E 709362 709362 +E 711521 711521 +E 712048 712048 +E 7127 713156 +E 713925 713925 +E 102107 714448 +E 326968 714518 +E 714659 714659 +B 562 714962 +E 29089 716684 +E 29089 716685 +E 716691 716691 +E 9580 716695 +E 9580 716696 +E 9580 716697 +E 9580 716698 +E 717468 717468 +E 4932 717647 +E 29091 717909 +E 320267 717936 +E 441319 717939 +E 4932 721032 +E 721938 721938 +E 721939 721939 +E 722433 722433 +E 723540 723540 +B 562 735324 +B 562 735325 +B 562 735326 +B 562 735327 +B 562 735328 +B 562 735329 +B 562 735330 +E 740928 740928 +B 562 741093 +E 741976 741976 +E 743424 743424 +E 744555 744555 +E 745122 745122 +B 562 745156 +E 746842 746842 +E 747527 747527 +E 747773 747773 +E 749526 749526 +B 562 749527 +B 562 749528 +B 562 749529 +B 562 749530 +B 562 749531 +B 562 749532 +B 562 749533 +B 562 749536 +B 562 749537 +B 562 749538 +B 562 749539 +B 562 749540 +B 562 749541 +B 562 749542 +B 562 749544 +B 562 749545 +B 562 749546 +B 562 749547 +B 562 749548 +B 562 749549 +B 562 749550 +E 9378 751922 +E 9378 751923 +E 9378 751924 +B 562 752783 +B 562 752784 +B 562 752785 +B 562 752786 +B 562 752787 +B 562 752788 +B 562 752789 +B 562 752790 +E 753488 753488 +E 753639 753639 +B 562 753642 +E 753643 753643 +E 753644 753644 +E 753646 753646 +E 753647 753647 +E 753649 753649 +E 753651 753651 +E 9052 753886 +E 753897 753897 +E 753902 753902 +E 753914 753914 +E 753915 753915 +E 753916 753916 +B 562 754078 +B 562 754079 +B 562 754080 +B 562 754081 +B 562 754082 +B 562 754083 +B 562 754085 +B 562 754086 +B 562 754087 +B 562 754088 +B 562 754089 +B 562 754090 +B 562 754263 +E 758447 758447 +B 562 758829 +B 562 758830 +B 562 758831 +B 562 758832 +E 4792 761204 +E 762043 762043 +E 762045 762045 +E 762047 762047 +E 762061 762061 +E 762504 762504 +E 73327 762565 +E 73327 762566 +E 73327 762567 +B 562 762608 +E 88120 762623 +E 88120 762625 +E 441663 762775 +E 4932 764097 +E 4932 764098 +E 4932 764099 +E 4932 764100 +E 4932 764101 +E 4932 764102 +E 764543 764543 +E 764832 764832 +E 764833 764833 +E 764836 764836 +E 765186 765186 +E 4932 765312 +B 562 766165 +B 562 766166 +E 767251 767251 +E 767411 767411 +E 10117 796024 +E 10117 796025 +B 562 796392 +E 797160 797160 +E 798166 798166 +E 798169 798169 +E 5101 857342 +E 857615 857615 +E 857645 857645 +E 857658 857658 +E 857659 857659 +E 857662 857662 +E 858229 858229 +E 858497 858497 +E 859894 859894 +E 861345 861345 +B 562 861906 +B 562 861907 +B 562 861908 +B 562 861909 +B 562 861910 +B 562 861911 +E 862142 862142 +E 862791 862791 +E 862799 862799 +E 862801 862801 +E 862826 862826 +E 862898 862898 +E 864177 864177 +E 866009 866009 +B 562 866768 +B 562 866789 +E 30591 867331 +B 562 868133 +B 562 868134 +B 562 868135 +B 562 868136 +B 562 868137 +B 562 868138 +B 562 868139 +B 562 868140 +B 562 868141 +B 562 868142 +B 562 868143 +B 562 868144 +B 562 868145 +B 562 868146 +B 562 868147 +B 562 868148 +B 562 868149 +B 562 868150 +B 562 868151 +B 562 868152 +B 562 868153 +B 562 868154 +B 562 868155 +B 562 868156 +B 562 868157 +B 562 868158 +B 562 868159 +B 562 868160 +B 562 868161 +B 562 868162 +B 562 868163 +B 562 868164 +B 562 868165 +B 562 868166 +B 562 868167 +B 562 868168 +B 562 868169 +B 562 868170 +B 562 868171 +B 562 868172 +B 562 868173 +B 562 868174 +B 562 868175 +B 562 868176 +B 562 868177 +B 562 868178 +B 562 868179 +B 562 868180 +B 562 868181 +B 562 868182 +B 562 868183 +B 562 868184 +B 562 868185 +B 562 868186 +B 562 868187 +B 562 868188 +B 562 868189 +B 562 868190 +B 562 868191 +B 562 868192 +B 562 868193 +B 562 868194 +B 562 868195 +B 562 868196 +B 562 868197 +B 562 868198 +B 562 868199 +B 562 868200 +B 562 868201 +B 562 868202 +B 562 868203 +B 562 868204 +B 562 868206 +B 562 868207 +B 562 868208 +B 562 868209 +B 562 868210 +E 868862 868862 +B 562 869669 +B 562 869670 +B 562 869671 +B 562 869672 +B 562 869673 +B 562 869674 +B 562 869675 +B 562 869676 +B 562 869677 +B 562 869678 +B 562 869679 +B 562 869680 +B 562 869681 +B 562 869682 +B 562 869683 +B 562 869684 +B 562 869685 +B 562 869686 +B 562 869687 +B 562 869688 +B 562 869689 +B 562 869690 +B 562 869691 +B 562 869692 +B 562 869693 +B 562 869694 +B 562 869695 +B 562 869729 +E 870552 870552 +B 562 870963 +E 9488 873069 +E 873202 873202 +E 4565 876344 +E 876627 876627 +E 877584 877584 +E 877586 877586 +B 562 879462 +E 879473 879473 +E 879476 879476 +E 879482 879482 +E 879483 879483 +E 879491 879491 +E 879501 879501 +E 879502 879502 +E 879513 879513 +E 879519 879519 +E 879520 879520 +E 879682 879682 +E 879706 879706 +E 879712 879712 +E 879879 879879 +E 880961 880961 +E 9487 881946 +E 9487 881947 +E 9487 881949 +E 9487 881950 +E 882191 882191 +E 882735 882735 +E 882753 882753 +E 882754 882754 +E 882772 882772 +E 882776 882776 +E 882786 882786 +E 882817 882817 +E 882858 882858 +E 884168 884168 +B 562 885275 +B 562 885276 +E 885580 885580 +E 886298 886298 +E 886300 886300 +B 562 886670 +E 4787 887080 +E 4787 887081 +E 887134 887134 +E 4932 889517 +E 9020 903561 +E 9020 903943 +E 9020 903944 +E 9020 903946 +E 9020 903964 +E 9020 903965 +E 9020 903966 +E 9020 903967 +E 9020 903977 +E 9020 903980 +E 904093 904093 +E 138070 907506 +E 907928 907928 +E 909114 909114 +E 909122 909122 +E 909123 909123 +E 909126 909126 +E 909367 909367 +E 909369 909369 +B 562 910348 +B 562 911660 +B 562 911661 +B 562 911662 +B 562 911663 +B 562 911664 +B 562 911665 +E 143529 912638 +E 912804 912804 +E 912805 912805 +B 562 913087 +B 562 913088 +B 562 913089 +B 562 913090 +B 562 913091 +E 925459 925459 +B 562 926026 +B 562 926027 +B 562 926028 +B 562 926029 +B 562 926030 +B 562 926032 +E 4932 927256 +E 4932 927257 +E 4932 927258 +E 928324 928324 +E 928525 928525 +E 37607 928671 +E 37607 928673 +E 37607 928674 +E 4932 929585 +E 4932 929586 +E 4932 929587 +E 4932 929629 +E 929715 929715 +E 72255 929745 +E 72255 929746 +E 72255 929748 +E 282391 929988 +E 64459 930006 +B 562 930405 +B 562 930406 +B 562 930407 +E 181096 932674 +E 932675 932675 +E 932717 932717 +E 933226 933226 +E 933992 933992 +E 935645 935645 +B 562 935868 +B 562 935869 +B 562 935870 +B 562 941280 +B 562 941322 +B 562 941323 +B 562 941435 +E 941983 941983 +E 941984 941984 +B 562 945433 +B 562 945434 +E 142466 947011 +E 142466 947012 +E 142466 947024 +E 142466 947026 +E 142466 947029 +E 142466 947030 +E 4932 947035 +E 4932 947036 +E 4932 947037 +E 4932 947038 +E 4932 947039 +E 4932 947040 +E 4932 947041 +E 4932 947042 +E 4932 947043 +E 4932 947044 +E 4932 947045 +E 4932 947046 +E 10090 947985 +E 10116 947987 +E 59529 948698 +E 958669 958669 +E 978109 978109 +E 980415 980415 +E 980578 980578 +E 5022 985895 +E 987431 987431 +E 990218 990218 +E 990556 990556 +E 990946 990946 +B 562 991906 +B 562 991907 +B 562 991908 +B 562 991909 +B 562 991910 +B 562 991911 +B 562 991912 +B 562 991913 +B 562 991914 +B 562 991915 +B 562 991916 +B 562 991917 +B 562 991918 +B 562 991919 +B 562 991920 +E 992341 992341 +E 992342 992342 +E 992343 992343 +E 992344 992344 +E 992947 992947 +E 992947 992994 +E 992947 992996 +E 992947 992998 +B 562 993513 +E 996475 996475 +B 562 996639 +E 997024 997024 +B 562 997600 +B 562 997824 +B 562 997825 +E 998003 998003 +E 999462 999462 +B 562 1000560 +E 1001915 1001915 +B 562 1001988 +B 562 1001989 +B 562 1001990 +B 562 1001991 +B 562 1001992 +E 1003683 1003683 +B 562 1004153 +B 562 1005396 +B 562 1005397 +B 562 1005398 +B 562 1005399 +B 562 1005400 +B 562 1005401 +B 562 1005402 +B 562 1005403 +B 562 1005404 +B 562 1005405 +B 562 1005406 +B 562 1005407 +B 562 1005408 +B 562 1005410 +B 562 1005411 +B 562 1005412 +B 562 1005413 +B 562 1005414 +B 562 1005415 +B 562 1005416 +B 562 1005418 +B 562 1005419 +B 562 1005420 +B 562 1005421 +B 562 1005422 +B 562 1005423 +B 562 1005424 +B 562 1005430 +B 562 1005431 +B 562 1005432 +B 562 1005433 +B 562 1005434 +B 562 1005435 +B 562 1005436 +B 562 1005437 +B 562 1005438 +B 562 1005439 +B 562 1005440 +B 562 1005441 +B 562 1005442 +B 562 1005443 +B 562 1005444 +B 562 1005445 +B 562 1005446 +B 562 1005447 +B 562 1005448 +B 562 1005449 +B 562 1005450 +B 562 1005451 +B 562 1005452 +B 562 1005453 +B 562 1005454 +B 562 1005455 +B 562 1005456 +B 562 1005457 +B 562 1005458 +B 562 1005459 +B 562 1005460 +B 562 1005461 +B 562 1005462 +B 562 1005463 +B 562 1005464 +B 562 1005465 +B 562 1005466 +B 562 1005467 +B 562 1005468 +B 562 1005469 +B 562 1005470 +B 562 1005471 +B 562 1005472 +B 562 1005473 +B 562 1005474 +B 562 1005475 +B 562 1005476 +B 562 1005477 +B 562 1005478 +B 562 1005479 +B 562 1005480 +B 562 1005481 +B 562 1005482 +B 562 1005483 +B 562 1005484 +B 562 1005485 +B 562 1005486 +B 562 1005487 +B 562 1005488 +B 562 1005489 +B 562 1005490 +B 562 1005491 +B 562 1005492 +B 562 1005493 +B 562 1005494 +B 562 1005495 +B 562 1005496 +B 562 1005497 +B 562 1005498 +B 562 1005499 +B 562 1005500 +B 562 1005501 +B 562 1005502 +B 562 1005503 +B 562 1005504 +B 562 1005505 +B 562 1005506 +B 562 1005507 +B 562 1005508 +B 562 1005509 +B 562 1005510 +B 562 1005511 +B 562 1005512 +B 562 1005513 +B 562 1005514 +B 562 1005515 +B 562 1005516 +B 562 1005517 +B 562 1005518 +B 562 1005519 +B 562 1005520 +B 562 1005521 +B 562 1005522 +B 562 1005523 +B 562 1005524 +B 562 1005526 +B 562 1005527 +B 562 1005528 +B 562 1005529 +B 562 1005530 +B 562 1005531 +B 562 1005532 +B 562 1005533 +B 562 1005534 +B 562 1005535 +B 562 1005536 +B 562 1005537 +B 562 1005538 +B 562 1005539 +B 562 1005540 +B 562 1005541 +B 562 1005542 +B 562 1005543 +B 562 1005544 +B 562 1005545 +B 562 1005546 +B 562 1005547 +B 562 1005548 +B 562 1005549 +B 562 1005550 +B 562 1005551 +B 562 1005552 +B 562 1005553 +B 562 1005554 +B 562 1005555 +B 562 1005556 +B 562 1005557 +B 562 1005558 +B 562 1005559 +B 562 1005560 +B 562 1005561 +B 562 1005562 +B 562 1005563 +B 562 1005564 +B 562 1005565 +B 562 1005566 +B 562 1005567 +B 562 1007065 +E 1010709 1010709 +E 1010711 1010711 +B 562 1010795 +B 562 1010796 +B 562 1010797 +B 562 1010798 +B 562 1010799 +B 562 1010800 +B 562 1010801 +B 562 1010802 +B 562 1010803 +B 562 1010804 +B 562 1010805 +B 562 1010806 +B 562 1010807 +B 562 1010808 +B 562 1010809 +B 562 1010810 +B 562 1010811 +B 562 1010812 +B 562 1010813 +B 562 1010814 +B 562 1010815 +B 562 1010816 +B 562 1010817 +B 562 1010818 +B 562 1010819 +B 562 1010820 +B 562 1010821 +B 562 1010822 +B 562 1010823 +B 562 1010824 +B 562 1010825 +E 1016941 1016941 +B 562 1017021 +B 562 1017022 +B 562 1017023 +B 562 1017024 +B 562 1017025 +B 562 1017026 +B 562 1017027 +B 562 1017028 +B 562 1017029 +B 562 1017030 +B 562 1017031 +B 562 1017032 +B 562 1017033 +B 562 1017034 +B 562 1017035 +B 562 1017036 +B 562 1017037 +B 562 1017038 +B 562 1017039 +B 562 1017040 +B 562 1017041 +B 562 1017042 +B 562 1017043 +B 562 1017044 +B 562 1017045 +B 562 1017046 +B 562 1017047 +B 562 1017048 +B 562 1017049 +B 562 1017050 +B 562 1017051 +B 562 1017052 +B 562 1017053 +B 562 1017261 +E 1017371 1017371 +B 562 1027269 +E 8663 1027870 +E 1029687 1029687 +B 562 1033813 +E 1037525 1037525 +E 263451 1038732 +B 562 1038844 +B 562 1038927 +B 562 1040638 +E 1041117 1041117 +E 1042646 1042646 +B 562 1042803 +B 562 1042804 +E 486151 1043175 +B 562 1045010 +E 1045542 1045542 +E 1045544 1045544 +E 1046121 1046121 +B 562 1046240 +E 1047088 1047088 +E 1047102 1047102 +B 562 1048254 +B 562 1048256 +B 562 1048259 +B 562 1048265 +B 562 1048266 +B 562 1048334 +B 562 1048335 +E 1048669 1048669 +B 562 1048689 +B 562 1048765 +E 7460 1049035 +B 562 1050617 +B 562 1051346 +B 562 1051347 +B 562 1051348 +B 562 1051349 +B 562 1051350 +B 562 1051351 +B 562 1051352 +B 562 1051353 +B 562 1052677 +E 9886 1053482 +E 9886 1053484 +E 1054643 1054643 +B 562 1055533 +B 562 1055534 +B 562 1055535 +B 562 1055536 +B 562 1055537 +B 562 1055538 +B 562 1055539 +B 562 1055540 +B 562 1055541 +B 562 1055542 +B 562 1055543 +B 562 1055544 +B 562 1055545 +B 562 1068608 +B 562 1068614 +B 562 1068615 +B 562 1068616 +B 562 1068617 +B 562 1068618 +B 562 1068619 +B 562 1068620 +B 562 1068621 +B 562 1068622 +B 562 1068623 +B 562 1068624 +B 562 1069495 +B 562 1069643 +B 562 1069645 +E 1070323 1070323 +E 1071977 1071977 +B 562 1072458 +B 562 1072459 +E 1072479 1072479 +E 1072485 1072485 +E 1072514 1072514 +B 562 1073841 +B 562 1073985 +B 562 1078021 +B 562 1078029 +B 562 1078030 +B 562 1078031 +B 562 1078032 +B 562 1078033 +B 562 1078034 +B 562 1078035 +E 38565 1080368 +B 562 1081887 +B 562 1081888 +B 562 1081889 +B 562 1081890 +B 562 1081891 +B 562 1081892 +B 562 1081893 +B 562 1081894 +B 562 1081895 +B 562 1081896 +E 1085684 1085684 +E 8485 1087311 +E 8485 1087312 +E 13164 1087438 +E 13164 1087439 +E 4932 1087981 +E 1088130 1088130 +B 562 1089445 +E 1089686 1089686 +E 37295 1090893 +B 562 1090926 +B 562 1090927 +B 562 1090928 +B 562 1090929 +B 562 1090930 +B 562 1090931 +B 562 1090932 +B 562 1090933 +B 562 1090934 +B 562 1090935 +B 562 1090936 +B 562 1090937 +B 562 1090940 +E 130825 1091058 +E 1091402 1091402 +E 1093613 1093613 +B 562 1094509 +B 562 1094975 +E 4932 1095001 +E 1095382 1095382 +B 562 1095705 +B 562 1095706 +B 562 1095707 +B 562 1095708 +B 562 1095709 +B 562 1095710 +B 562 1095711 +B 562 1095712 +B 562 1095713 +B 562 1095714 +E 1095716 1095716 +B 562 1095718 +B 562 1095719 +B 562 1095720 +B 562 1095721 +B 562 1095722 +B 562 1095723 +E 4932 1097555 +B 562 1097579 +B 562 1101440 +E 1104375 1104375 +E 1104425 1104425 +E 7130 1104469 +B 562 1105330 +E 34740 1107348 +E 1108006 1108006 +E 262664 1108655 +E 1108806 1108806 +E 1109079 1109079 +B 562 1109442 +E 1110376 1110376 +E 1110376 1110377 +B 562 1110506 +B 562 1110507 +B 562 1110508 +E 1110606 1110606 +B 562 1110693 +E 1111465 1111465 +E 1111470 1111470 +E 1111478 1111478 +E 1112861 1112861 +E 58317 1112875 +E 76215 1113247 +E 1114792 1114792 +E 10117 1114793 +E 10117 1114794 +E 62067 1115630 +E 1115652 1115652 +B 562 1115997 +B 562 1115998 +B 562 1115999 +B 562 1116000 +B 562 1116001 +B 562 1116002 +B 562 1116003 +B 562 1116004 +B 562 1116005 +B 562 1116006 +B 562 1116007 +B 562 1116008 +B 562 1116009 +B 562 1116010 +B 562 1116011 +B 562 1116012 +B 562 1116013 +B 562 1116014 +B 562 1116015 +B 562 1116016 +B 562 1116017 +B 562 1116018 +B 562 1116019 +B 562 1116020 +B 562 1116021 +B 562 1116022 +B 562 1116023 +B 562 1116024 +B 562 1116025 +B 562 1116026 +B 562 1116027 +B 562 1116028 +B 562 1116029 +B 562 1116030 +B 562 1116031 +B 562 1116032 +B 562 1116033 +B 562 1116034 +B 562 1116035 +B 562 1116036 +B 562 1116037 +B 562 1116038 +B 562 1116039 +B 562 1116040 +B 562 1116041 +B 562 1116042 +B 562 1116043 +B 562 1116044 +B 562 1116045 +B 562 1116046 +B 562 1116047 +B 562 1116048 +B 562 1116049 +B 562 1116050 +B 562 1116051 +B 562 1116052 +B 562 1116053 +B 562 1116054 +B 562 1116055 +B 562 1116056 +B 562 1116057 +B 562 1116058 +B 562 1116059 +B 562 1116060 +B 562 1116061 +B 562 1116062 +B 562 1116063 +B 562 1116064 +B 562 1116065 +B 562 1116066 +B 562 1116067 +B 562 1116068 +B 562 1116069 +B 562 1116070 +B 562 1116071 +B 562 1116072 +B 562 1116073 +B 562 1116074 +B 562 1116075 +B 562 1116076 +B 562 1116077 +B 562 1116078 +B 562 1116079 +B 562 1116080 +B 562 1116081 +B 562 1116082 +B 562 1116083 +B 562 1116084 +B 562 1116085 +B 562 1116086 +B 562 1116087 +B 562 1116088 +B 562 1116089 +B 562 1116090 +B 562 1116091 +B 562 1116092 +B 562 1116093 +B 562 1116094 +B 562 1116095 +B 562 1116096 +B 562 1116097 +B 562 1116098 +B 562 1116099 +B 562 1116100 +B 562 1116101 +B 562 1116102 +B 562 1116103 +B 562 1116104 +B 562 1116105 +B 562 1116106 +B 562 1116107 +B 562 1116108 +B 562 1116109 +B 562 1116110 +B 562 1116111 +B 562 1116112 +B 562 1116113 +B 562 1116114 +B 562 1116115 +B 562 1116116 +B 562 1116117 +B 562 1116118 +B 562 1116119 +B 562 1116120 +B 562 1116121 +B 562 1116122 +B 562 1116123 +B 562 1116124 +B 562 1116125 +B 562 1116126 +B 562 1116127 +B 562 1116128 +B 562 1116129 +B 562 1116130 +B 562 1116131 +B 562 1116132 +B 562 1116133 +B 562 1116134 +B 562 1116135 +B 562 1116136 +B 562 1116137 +B 562 1116138 +B 562 1116139 +B 562 1116140 +B 562 1116141 +B 562 1116142 +B 562 1116143 +B 562 1116144 +B 562 1116145 +B 562 1116146 +B 562 1116147 +B 562 1116148 +B 562 1116149 +B 562 1116150 +B 562 1116151 +B 562 1116152 +B 562 1116153 +B 562 1116154 +B 562 1116155 +B 562 1116156 +B 562 1116157 +B 562 1116158 +B 562 1116159 +B 562 1116160 +B 562 1116161 +B 562 1116162 +B 562 1116163 +B 562 1116164 +B 562 1116165 +B 562 1116166 +B 562 1116167 +B 562 1116168 +B 562 1116169 +B 562 1116170 +B 562 1116171 +B 562 1116172 +B 562 1116173 +B 562 1116174 +B 562 1116175 +B 562 1116176 +B 562 1116177 +B 562 1116178 +B 562 1116179 +B 562 1116180 +B 562 1116181 +B 562 1116182 +B 562 1116183 +B 562 1116184 +B 562 1116185 +B 562 1116186 +B 562 1116187 +B 562 1116188 +B 562 1116189 +B 562 1116190 +B 562 1116191 +B 562 1116192 +B 562 1116193 +B 562 1116194 +B 562 1116471 +E 34740 1116806 +E 34740 1116807 +B 562 1117111 +E 39023 1117136 +E 111900 1118355 +E 111900 1118356 +E 1120762 1120762 +E 1120768 1120768 +E 1124502 1124502 +B 562 1124984 +B 562 1124985 +B 562 1124986 +B 562 1124987 +B 562 1124988 +B 562 1124989 +B 562 1125634 +B 562 1125635 +B 562 1125636 +B 562 1125637 +B 562 1125638 +B 562 1125639 +B 562 1125640 +B 562 1125641 +B 562 1125642 +B 562 1125643 +B 562 1125644 +B 562 1125645 +B 562 1125646 +B 562 1125647 +B 562 1125648 +B 562 1125649 +B 562 1125650 +B 562 1125651 +B 562 1125652 +B 562 1126888 +B 562 1126889 +B 562 1126890 +B 562 1126891 +B 562 1126892 +B 562 1126893 +B 562 1126894 +B 562 1126895 +B 562 1126896 +B 562 1126897 +B 562 1126898 +B 562 1126899 +B 562 1126900 +B 562 1126901 +B 562 1126902 +B 562 1126903 +B 562 1126904 +B 562 1126905 +B 562 1126906 +B 562 1126907 +B 562 1126908 +B 562 1126909 +B 562 1126910 +B 562 1126911 +B 562 1126912 +B 562 1126913 +B 562 1126914 +B 562 1126915 +B 562 1126916 +B 562 1126917 +B 562 1126918 +B 562 1126919 +B 562 1126920 +B 562 1126921 +B 562 1126922 +B 562 1126923 +B 562 1126924 +B 562 1126925 +B 562 1126926 +B 562 1126927 +B 562 1126928 +B 562 1126929 +B 562 1126930 +B 562 1126931 +B 562 1126932 +B 562 1126933 +B 562 1126934 +B 562 1126935 +B 562 1126936 +B 562 1126937 +B 562 1127123 +B 562 1127124 +B 562 1127125 +B 562 1127126 +B 562 1127356 +E 156563 1127423 +B 562 1128597 +E 1130116 1130116 +E 1130117 1130117 +E 1131888 1131888 +E 1131890 1131890 +E 1133662 1133662 +B 562 1133852 +B 562 1133853 +E 236793 1133975 +B 562 1134453 +E 1134580 1134580 +B 562 1134782 +B 562 1136137 +B 562 1136217 +B 562 1136218 +B 562 1137135 +E 5322 1137138 +E 5322 1137139 +E 1138020 1138020 +E 76235 1138372 +E 4932 1138861 +E 48849 1138862 +E 48849 1138863 +E 48849 1138864 +E 48849 1138865 +E 48849 1138868 +E 1141927 1141927 +E 1141933 1141933 +E 6116 1143169 +B 562 1144302 +B 562 1144303 +E 4932 1144731 +E 1146954 1146954 +E 1146960 1146960 +E 1146965 1146965 +E 1146973 1146973 +E 1146980 1146980 +E 1147085 1147085 +E 1147087 1147087 +E 6116 1147133 +B 562 1147163 +B 562 1147164 +B 562 1147165 +B 562 1147166 +B 562 1147167 +B 562 1147168 +B 562 1147169 +B 562 1147170 +B 562 1147171 +B 562 1147172 +B 562 1147173 +B 562 1147174 +B 562 1147175 +B 562 1147176 +B 562 1147177 +B 562 1147178 +B 562 1147179 +B 562 1147180 +B 562 1147181 +B 562 1147182 +B 562 1147183 +B 562 1147184 +B 562 1147185 +B 562 1147186 +B 562 1147187 +B 562 1147188 +B 562 1147189 +B 562 1147190 +B 562 1147191 +B 562 1147192 +B 562 1147193 +B 562 1147194 +B 562 1147195 +B 562 1147196 +B 562 1147197 +B 562 1147198 +B 562 1147199 +B 562 1147200 +B 562 1147201 +B 562 1147202 +B 562 1147203 +B 562 1147204 +B 562 1147205 +B 562 1147206 +B 562 1147207 +B 562 1147208 +B 562 1147209 +B 562 1147210 +B 562 1147211 +B 562 1147212 +B 562 1147213 +B 562 1147214 +B 562 1147215 +B 562 1147216 +B 562 1147217 +B 562 1147218 +B 562 1147219 +B 562 1147220 +B 562 1147221 +B 562 1147222 +B 562 1147223 +B 562 1147224 +B 562 1147225 +B 562 1147226 +B 562 1147227 +B 562 1147228 +B 562 1147229 +B 562 1147230 +B 562 1147231 +B 562 1147232 +B 562 1147233 +E 1147743 1147743 +E 4932 1149757 +E 97956 1150113 +B 562 1151213 +B 562 1151214 +B 562 1151215 +B 562 1151216 +B 562 1151217 +B 562 1151218 +B 562 1151219 +B 562 1151220 +B 562 1151221 +B 562 1151222 +B 562 1151223 +B 562 1151224 +B 562 1151225 +B 562 1151226 +B 562 1151227 +B 562 1151228 +B 562 1151229 +B 562 1151230 +B 562 1151231 +B 562 1151232 +B 562 1151233 +B 562 1151234 +B 562 1151235 +B 562 1151236 +B 562 1151237 +B 562 1151238 +B 562 1151239 +B 562 1151240 +B 562 1151241 +B 562 1151242 +B 562 1151243 +B 562 1151244 +B 562 1151245 +B 562 1151246 +B 562 1151247 +B 562 1151248 +B 562 1151249 +B 562 1151250 +B 562 1151251 +E 1154649 1154649 +E 1155711 1155711 +B 562 1155724 +B 562 1155725 +B 562 1155726 +B 562 1155727 +B 562 1155728 +B 562 1155729 +B 562 1155730 +B 562 1155731 +B 562 1155732 +B 562 1155733 +B 562 1155734 +B 562 1155735 +E 1156095 1156095 +E 1156139 1156139 +E 1156144 1156144 +E 1156498 1156498 +E 1157335 1157335 +B 562 1157950 +E 4932 1158204 +E 4932 1158205 +E 1158920 1158920 +E 1159274 1159274 +E 1160816 1160816 +E 1161368 1161368 +E 1161369 1161369 +E 1162258 1162258 +E 4932 1162671 +E 4932 1162672 +E 4932 1162673 +E 4932 1162674 +B 562 1162728 +B 562 1162729 +B 562 1163386 +B 562 1163390 +B 562 1163391 +E 1163533 1163533 +B 562 1163738 +E 1165302 1165302 +B 562 1165939 +B 562 1165940 +B 562 1165941 +B 562 1165942 +B 562 1165943 +B 562 1165944 +B 562 1165945 +B 562 1165946 +B 562 1165947 +B 562 1165949 +B 562 1165950 +B 562 1165951 +B 562 1165952 +B 562 1165953 +E 35732 1167227 +E 1167616 1167616 +B 562 1167693 +B 562 1167694 +E 1168020 1168020 +B 562 1169315 +B 562 1169316 +B 562 1169317 +B 562 1169318 +B 562 1169320 +B 562 1169323 +B 562 1169324 +B 562 1169325 +B 562 1169326 +B 562 1169327 +B 562 1169328 +B 562 1169329 +B 562 1169330 +B 562 1169332 +B 562 1169333 +B 562 1169334 +B 562 1169335 +B 562 1169336 +B 562 1169337 +B 562 1169338 +B 562 1169339 +B 562 1169340 +B 562 1169341 +B 562 1169342 +B 562 1169343 +B 562 1169344 +B 562 1169345 +B 562 1169346 +B 562 1169347 +B 562 1169348 +B 562 1169351 +B 562 1169352 +B 562 1169353 +B 562 1169354 +B 562 1169355 +B 562 1169356 +B 562 1169357 +B 562 1169358 +B 562 1169359 +B 562 1169360 +B 562 1169361 +B 562 1169362 +B 562 1169363 +B 562 1169364 +B 562 1169365 +B 562 1169366 +B 562 1169367 +B 562 1169368 +B 562 1169369 +B 562 1169370 +B 562 1169371 +B 562 1169372 +B 562 1169373 +B 562 1169374 +B 562 1169375 +B 562 1169376 +B 562 1169377 +B 562 1169378 +B 562 1169379 +B 562 1169380 +B 562 1169381 +B 562 1169382 +B 562 1169383 +B 562 1169384 +B 562 1169385 +B 562 1169386 +B 562 1169387 +B 562 1169388 +B 562 1169389 +B 562 1169390 +B 562 1169391 +B 562 1169392 +B 562 1169393 +B 562 1169394 +B 562 1169395 +B 562 1169396 +B 562 1169397 +B 562 1169398 +B 562 1169399 +B 562 1169400 +B 562 1169401 +B 562 1169402 +B 562 1169403 +B 562 1169404 +E 8324 1169564 +B 562 1169663 +B 562 1169664 +B 562 1169862 +B 562 1169863 +E 1171664 1171664 +E 1171665 1171665 +E 1171711 1171711 +E 8324 1172168 +E 8324 1172169 +B 562 1173689 +B 562 1173690 +E 1175540 1175540 +E 1175541 1175541 +E 8387 1175986 +E 211510 1176404 +B 562 1176728 +E 4932 1177187 +E 1178017 1178017 +E 161680 1178549 +E 161680 1178550 +E 1181264 1181264 +B 562 1181724 +B 562 1181725 +B 562 1181726 +B 562 1181727 +B 562 1181728 +B 562 1181729 +B 562 1181730 +B 562 1181731 +B 562 1181732 +B 562 1181733 +B 562 1181734 +B 562 1181735 +B 562 1181736 +B 562 1181737 +B 562 1181738 +B 562 1181739 +B 562 1181740 +B 562 1181741 +B 562 1181742 +B 562 1181743 +B 562 1181744 +B 562 1181745 +B 562 1181746 +B 562 1181747 +B 562 1181748 +B 562 1181749 +B 562 1181750 +B 562 1181751 +B 562 1181752 +B 562 1181753 +B 562 1181754 +B 562 1181755 +B 562 1181756 +B 562 1181757 +B 562 1181758 +B 562 1181759 +B 562 1181760 +B 562 1181761 +B 562 1181762 +B 562 1181763 +B 562 1181764 +B 562 1181765 +B 562 1181766 +B 562 1181767 +B 562 1181768 +B 562 1181769 +B 562 1181770 +B 562 1181771 +B 562 1181772 +B 562 1181773 +B 562 1181774 +B 562 1181775 +B 562 1181776 +B 562 1181777 +B 562 1181778 +B 562 1181779 +B 562 1181780 +B 562 1181781 +B 562 1181782 +E 1182014 1182014 +E 1182147 1182147 +E 1182148 1182148 +E 1182153 1182153 +E 1182258 1182258 +B 562 1182653 +B 562 1182654 +B 562 1182655 +B 562 1182656 +B 562 1182657 +B 562 1182658 +B 562 1182660 +B 562 1182661 +B 562 1182662 +B 562 1182663 +B 562 1182664 +B 562 1182665 +B 562 1182666 +B 562 1182667 +B 562 1182668 +B 562 1182669 +B 562 1182670 +B 562 1182671 +B 562 1182672 +B 562 1182673 +B 562 1182674 +B 562 1182675 +B 562 1182676 +B 562 1182677 +B 562 1182678 +B 562 1182679 +B 562 1182680 +B 562 1182681 +B 562 1182682 +B 562 1182683 +B 562 1182684 +B 562 1182685 +B 562 1182686 +B 562 1182687 +B 562 1182688 +B 562 1182689 +B 562 1182690 +B 562 1182691 +B 562 1182692 +B 562 1182693 +B 562 1182694 +B 562 1182696 +B 562 1182698 +B 562 1182699 +B 562 1182700 +B 562 1182701 +B 562 1182702 +B 562 1182703 +B 562 1182704 +B 562 1182705 +B 562 1182706 +B 562 1182707 +B 562 1182708 +B 562 1182709 +B 562 1182710 +B 562 1182711 +B 562 1182712 +B 562 1182713 +B 562 1182714 +B 562 1182715 +B 562 1182716 +B 562 1182717 +B 562 1182718 +B 562 1182719 +B 562 1182720 +B 562 1182721 +B 562 1182722 +B 562 1182723 +B 562 1182724 +B 562 1182725 +B 562 1182726 +B 562 1182727 +B 562 1182728 +B 562 1182729 +B 562 1182730 +B 562 1182731 +B 562 1182733 +B 562 1182734 +B 562 1182735 +B 562 1182736 +B 562 1182737 +B 562 1182738 +E 4932 1182966 +E 4932 1182967 +E 4932 1182968 +E 1183148 1183148 +E 1184739 1184739 +E 1185436 1185436 +E 1188029 1188029 +E 1188032 1188032 +E 4460 1189059 +E 1191327 1191327 +E 1192867 1192867 +E 36249 1194683 +E 36249 1194684 +E 36249 1194685 +B 562 1196033 +E 36249 1196297 +E 9310 1196400 +E 4932 1196866 +B 562 1197131 +B 562 1197707 +B 562 1197708 +E 1198083 1198083 +B 562 1200752 +E 1200804 1200804 +E 4932 1201112 +E 1201173 1201173 +E 1201327 1201327 +B 562 1202452 +E 1202793 1202793 +E 1202794 1202794 +E 1203425 1203425 +E 1203428 1203428 +E 1203600 1203600 +E 4932 1204498 +B 562 1204723 +B 562 1204724 +B 562 1206108 +B 562 1206746 +E 1206914 1206914 +E 1206920 1206920 +E 1206931 1206931 +E 1206946 1206946 +E 1206948 1206948 +E 1206982 1206982 +E 34740 1207007 +B 562 1207035 +B 562 1207036 +B 562 1207037 +B 562 1207038 +B 562 1207540 +B 562 1207541 +B 562 1208340 +E 102211 1208597 +E 1209400 1209400 +B 562 1210455 +E 63479 1211587 +E 42229 1211601 +B 562 1211845 +E 1212470 1212470 +E 1212746 1212746 +E 1213615 1213615 +E 1213663 1213663 +E 1213666 1213666 +E 1213672 1213672 +E 1213673 1213673 +E 1213681 1213681 +E 1213707 1213707 +E 1213717 1213717 +E 1213718 1213718 +B 562 1213735 +B 562 1213736 +E 36249 1214232 +E 36249 1214233 +E 9541 1215360 +E 4932 1216345 +E 4932 1216859 +E 1218007 1218007 +E 552877 1218671 +E 552877 1218672 +E 552877 1218673 +E 552877 1218674 +E 552877 1218675 +E 4932 1218710 +B 562 1219372 +E 91738 1219461 +E 9742 1220054 +E 4932 1220494 +B 562 1220532 +E 39534 1220771 +E 1223622 1223622 +E 1227137 1227137 +E 4932 1227742 +B 562 1227813 +B 562 1227814 +E 385678 1229527 +E 4641 1230170 +B 562 1230480 +E 1230708 1230708 +E 1230718 1230718 +E 1230725 1230725 +E 1230726 1230726 +E 1231074 1231074 +E 1231620 1231620 +E 1231899 1231899 +B 562 1232150 +B 562 1232151 +B 562 1232152 +B 562 1232153 +B 562 1232154 +E 1232745 1232745 +E 1234705 1234705 +E 4932 1234807 +E 1234954 1234954 +B 562 1235805 +E 1236050 1236050 +E 1236055 1236055 +E 1236056 1236056 +E 1236062 1236062 +E 1236080 1236080 +B 562 1236522 +B 562 1236524 +B 562 1236527 +E 1238289 1238289 +E 9783 1239296 +E 1240248 1240248 +B 562 1240347 +B 562 1240373 +B 562 1240374 +B 562 1240375 +B 562 1240376 +B 562 1240377 +B 562 1240378 +B 562 1240379 +B 562 1240380 +B 562 1240381 +B 562 1240382 +B 562 1240383 +B 562 1240384 +B 562 1240385 +B 562 1240386 +B 562 1240387 +B 562 1240388 +B 562 1240758 +B 562 1240759 +B 562 1240760 +B 562 1240761 +B 562 1240762 +B 562 1240763 +B 562 1240764 +B 562 1240765 +B 562 1240766 +B 562 1240767 +B 562 1240768 +B 562 1240769 +B 562 1240770 +B 562 1240771 +B 562 1240772 +B 562 1240773 +B 562 1240774 +B 562 1240775 +B 562 1240776 +B 562 1240777 +B 562 1240778 +B 562 1240779 +B 562 1241934 +E 1241976 1241976 +E 1241977 1241977 +B 562 1243649 +B 562 1244509 +E 58071 1245033 +E 58071 1245034 +B 562 1245474 +E 1246547 1246547 +B 562 1246622 +B 562 1246623 +E 4932 1247190 +B 562 1248823 +B 562 1248902 +B 562 1248903 +B 562 1248915 +E 1249234 1249234 +E 1249237 1249237 +E 1249487 1249487 +E 1249488 1249488 +E 1250777 1250777 +E 1250785 1250785 +B 562 1255037 +E 30195 1255227 +E 30195 1255228 +E 30195 1255229 +E 30195 1255230 +E 30195 1255231 +E 30195 1255232 +E 30195 1255233 +B 562 1255577 +B 562 1258567 +B 562 1258580 +E 10019 1258734 +E 1260531 1260531 +E 1260532 1260532 +B 562 1261392 +B 562 1263075 +E 1263181 1263181 +E 1265597 1265597 +E 4932 1266529 +E 10090 1266728 +B 562 1266749 +B 562 1266750 +B 562 1266751 +B 562 1266752 +B 562 1266753 +B 562 1266754 +B 562 1266755 +B 562 1266756 +B 562 1266757 +E 1266867 1266867 +E 1266874 1266874 +E 1266880 1266880 +E 1268092 1268092 +E 1268094 1268094 +B 562 1268238 +B 562 1268668 +B 562 1268975 +B 562 1268976 +B 562 1268977 +B 562 1268978 +B 562 1268979 +B 562 1268980 +B 562 1268981 +B 562 1268982 +B 562 1268983 +B 562 1268984 +B 562 1268985 +B 562 1268986 +B 562 1268987 +B 562 1268988 +B 562 1268989 +B 562 1268990 +B 562 1268991 +B 562 1268992 +B 562 1268993 +B 562 1268994 +B 562 1268995 +B 562 1268996 +B 562 1268997 +B 562 1268998 +B 562 1268999 +B 562 1269000 +B 562 1269001 +B 562 1269002 +B 562 1269003 +B 562 1269004 +B 562 1269005 +B 562 1269007 +B 562 1269008 +B 562 1269009 +B 562 1269010 +E 1271572 1271572 +E 1273186 1273186 +B 562 1274814 +B 562 1274865 +B 562 1274866 +B 562 1274867 +B 562 1274868 +B 562 1274869 +B 562 1274870 +B 562 1274871 +B 562 1274872 +B 562 1274873 +B 562 1274874 +B 562 1274875 +B 562 1274876 +B 562 1274877 +B 562 1274878 +B 562 1274879 +B 562 1274880 +B 562 1274881 +B 562 1274882 +B 562 1274883 +B 562 1274884 +B 562 1274885 +B 562 1274886 +B 562 1274887 +B 562 1274888 +B 562 1274889 +B 562 1274890 +B 562 1274891 +B 562 1274892 +B 562 1274893 +B 562 1274894 +B 562 1274895 +B 562 1274896 +B 562 1274897 +B 562 1274898 +B 562 1274899 +B 562 1274900 +B 562 1274901 +B 562 1274902 +B 562 1274903 +B 562 1274904 +B 562 1274905 +B 562 1274906 +B 562 1274907 +B 562 1274908 +B 562 1274909 +B 562 1274910 +B 562 1274911 +B 562 1274912 +B 562 1274913 +B 562 1274914 +B 562 1274915 +B 562 1274916 +B 562 1274917 +B 562 1274918 +B 562 1274919 +B 562 1274920 +B 562 1274921 +B 562 1274922 +B 562 1274923 +B 562 1274924 +B 562 1275964 +E 1280522 1280522 +B 562 1280937 +B 562 1280956 +B 562 1280957 +B 562 1280958 +B 562 1280959 +B 562 1280960 +B 562 1280961 +B 562 1280962 +B 562 1280963 +B 562 1280964 +B 562 1280965 +B 562 1280966 +B 562 1280967 +B 562 1280968 +B 562 1280969 +B 562 1280970 +B 562 1280971 +B 562 1280972 +B 562 1280973 +B 562 1280974 +B 562 1280975 +B 562 1280976 +B 562 1280977 +B 562 1280978 +B 562 1280979 +B 562 1280980 +B 562 1280981 +B 562 1280982 +B 562 1280983 +B 562 1280984 +B 562 1280985 +B 562 1280986 +B 562 1280987 +B 562 1280988 +B 562 1280989 +B 562 1280990 +B 562 1280991 +B 562 1280992 +B 562 1280993 +B 562 1280994 +B 562 1280995 +B 562 1280996 +B 562 1280997 +B 562 1280998 +B 562 1280999 +B 562 1281000 +B 562 1281001 +B 562 1281002 +B 562 1281003 +B 562 1281004 +B 562 1281005 +B 562 1281006 +B 562 1281007 +B 562 1281008 +B 562 1281009 +B 562 1281010 +B 562 1281011 +B 562 1281012 +B 562 1281013 +B 562 1281014 +B 562 1281015 +B 562 1281016 +B 562 1281017 +B 562 1281018 +B 562 1281019 +B 562 1281020 +B 562 1281021 +B 562 1281022 +B 562 1281023 +B 562 1281024 +B 562 1281025 +B 562 1281026 +B 562 1281027 +B 562 1281028 +B 562 1281029 +B 562 1281030 +B 562 1281031 +B 562 1281032 +B 562 1281033 +B 562 1281034 +B 562 1281035 +B 562 1281036 +B 562 1281037 +B 562 1281038 +B 562 1281039 +B 562 1281040 +B 562 1281041 +B 562 1281042 +B 562 1281043 +B 562 1281044 +B 562 1281045 +B 562 1281046 +B 562 1281047 +B 562 1281048 +B 562 1281049 +B 562 1281050 +B 562 1281051 +B 562 1281052 +B 562 1281053 +B 562 1281054 +B 562 1281055 +B 562 1281056 +B 562 1281057 +B 562 1281058 +B 562 1281059 +B 562 1281060 +B 562 1281061 +B 562 1281062 +B 562 1281063 +B 562 1281064 +B 562 1281065 +B 562 1281066 +B 562 1281067 +B 562 1281068 +B 562 1281069 +B 562 1281070 +B 562 1281071 +B 562 1281072 +B 562 1281073 +B 562 1281074 +B 562 1281075 +B 562 1281076 +B 562 1281077 +B 562 1281078 +B 562 1281079 +B 562 1281080 +B 562 1281081 +B 562 1281082 +B 562 1281083 +B 562 1281084 +B 562 1281085 +B 562 1281086 +B 562 1281087 +B 562 1281088 +B 562 1281089 +B 562 1281090 +B 562 1281091 +B 562 1281092 +B 562 1281093 +B 562 1281094 +B 562 1281095 +B 562 1281096 +B 562 1281097 +B 562 1281098 +B 562 1281099 +B 562 1281100 +B 562 1281101 +B 562 1281102 +B 562 1281103 +B 562 1281104 +B 562 1281105 +B 562 1281106 +B 562 1281107 +B 562 1281108 +B 562 1281109 +B 562 1281110 +B 562 1281111 +B 562 1281112 +B 562 1281113 +B 562 1281114 +B 562 1281115 +B 562 1281116 +B 562 1281117 +B 562 1281118 +B 562 1281119 +B 562 1281120 +B 562 1281121 +B 562 1281122 +B 562 1281123 +B 562 1281124 +B 562 1281125 +B 562 1281126 +B 562 1281127 +B 562 1281128 +B 562 1281129 +B 562 1281130 +B 562 1281131 +B 562 1281132 +B 562 1281133 +B 562 1281134 +B 562 1281135 +B 562 1281136 +B 562 1281137 +B 562 1281138 +B 562 1281139 +B 562 1281140 +B 562 1281141 +B 562 1281142 +B 562 1281143 +B 562 1281144 +B 562 1281145 +B 562 1281146 +B 562 1281147 +B 562 1281148 +B 562 1281149 +B 562 1281150 +B 562 1281151 +B 562 1281152 +B 562 1281153 +B 562 1281154 +B 562 1281155 +B 562 1281156 +B 562 1281157 +B 562 1281158 +B 562 1281159 +B 562 1281160 +B 562 1281161 +B 562 1281162 +B 562 1281163 +B 562 1281164 +B 562 1281165 +B 562 1281166 +B 562 1281167 +B 562 1281168 +B 562 1281169 +B 562 1281170 +B 562 1281171 +B 562 1281172 +B 562 1281173 +B 562 1281174 +B 562 1281175 +B 562 1281176 +B 562 1281177 +B 562 1281178 +B 562 1281179 +B 562 1281180 +B 562 1281181 +B 562 1281182 +B 562 1281183 +B 562 1281184 +B 562 1281185 +B 562 1281186 +B 562 1281187 +B 562 1281188 +B 562 1281189 +B 562 1281190 +B 562 1281191 +B 562 1281192 +B 562 1281193 +B 562 1281194 +B 562 1281195 +B 562 1281196 +B 562 1281197 +B 562 1281198 +B 562 1281199 +B 562 1281200 +B 562 1281201 +B 562 1281202 +B 562 1281203 +B 562 1281204 +B 562 1281205 +B 562 1281206 +B 562 1281207 +B 562 1281208 +B 562 1281209 +B 562 1281210 +B 562 1281211 +B 562 1281212 +B 562 1281213 +B 562 1281214 +B 562 1281215 +B 562 1281216 +B 562 1281217 +B 562 1281218 +B 562 1281219 +B 562 1281220 +B 562 1281221 +B 562 1281222 +B 562 1281223 +B 562 1281224 +B 562 1281225 +B 562 1281226 +B 562 1281227 +B 562 1281228 +B 562 1281229 +B 562 1281230 +B 562 1281231 +B 562 1281232 +B 562 1281233 +B 562 1281234 +B 562 1281235 +B 562 1281236 +B 562 1281237 +B 562 1281238 +B 562 1281239 +B 562 1281240 +B 562 1281241 +B 562 1281242 +B 562 1281243 +B 562 1281244 +B 562 1281245 +B 562 1281246 +B 562 1281247 +B 562 1281248 +B 562 1281249 +B 562 1281250 +B 562 1281251 +B 562 1281252 +B 562 1281253 +B 562 1281254 +B 562 1281255 +B 562 1281256 +B 562 1281257 +B 562 1281258 +B 562 1281259 +B 562 1281260 +B 562 1281261 +B 562 1281262 +B 562 1281263 +B 562 1281264 +B 562 1281265 +B 562 1281266 +B 562 1281267 +B 562 1281268 +B 562 1281269 +B 562 1281270 +B 562 1281271 +B 562 1281272 +B 562 1281273 +B 562 1281274 +B 562 1281275 +B 562 1281276 +B 562 1281277 +B 562 1281278 +B 562 1281279 +B 562 1281747 +B 562 1282359 +E 1282961 1282961 +E 1283716 1283716 +B 562 1284382 +E 1286116 1286116 +B 562 1286168 +E 1286175 1286175 +B 562 1286329 +B 562 1286330 +B 562 1286331 +B 562 1286332 +B 562 1286333 +B 562 1286334 +B 562 1286335 +B 562 1286336 +B 562 1286337 +B 562 1286338 +B 562 1286339 +B 562 1286340 +B 562 1286341 +B 562 1286342 +B 562 1286343 +B 562 1286344 +B 562 1286345 +B 562 1286346 +B 562 1286347 +B 562 1286348 +B 562 1286349 +B 562 1286350 +B 562 1286351 +B 562 1286352 +B 562 1286353 +B 562 1286354 +B 562 1286819 +B 562 1286845 +B 562 1286877 +E 4932 1290389 +E 4932 1292971 +E 4932 1293430 +E 4932 1294303 +E 4932 1294304 +E 4932 1294305 +E 4932 1294306 +E 4932 1294307 +E 4932 1294308 +E 4932 1294309 +E 4932 1294310 +E 4932 1294311 +E 4932 1294312 +E 4932 1294313 +E 4932 1294314 +E 4932 1294315 +E 4932 1294316 +E 4932 1294317 +E 4932 1294318 +E 4932 1294319 +E 4932 1294320 +E 4932 1294321 +E 4932 1294322 +E 4932 1294323 +E 4932 1294324 +E 4932 1294325 +E 4932 1294326 +E 4932 1294327 +E 4932 1294328 +E 4932 1294329 +E 4932 1294330 +E 4932 1294331 +E 4932 1294332 +E 4932 1294333 +E 4932 1294334 +E 4932 1294335 +E 4932 1294336 +E 4932 1294337 +E 4932 1294338 +E 4932 1294339 +E 4932 1294340 +E 4932 1294341 +E 4932 1294342 +E 4932 1294343 +E 4932 1294344 +E 4932 1294345 +E 4932 1294346 +E 4932 1294347 +E 4932 1294348 +E 4932 1294349 +E 4932 1294350 +E 4932 1294351 +E 4932 1294352 +E 4932 1294353 +E 4932 1294354 +E 4932 1294355 +E 4932 1294356 +E 4932 1294357 +E 4932 1294358 +E 4932 1294359 +E 4932 1294360 +E 4932 1294361 +E 4932 1294362 +E 4932 1294363 +E 4932 1294364 +E 4932 1294365 +E 4932 1294366 +E 4932 1294367 +E 4932 1294368 +E 4932 1294369 +E 4932 1294370 +E 4932 1294371 +E 4932 1294372 +E 4932 1294373 +E 4932 1294374 +E 4932 1294375 +E 4932 1294376 +E 4932 1294377 +E 4932 1294378 +E 4932 1294379 +E 4932 1294380 +E 4932 1294381 +E 4932 1294382 +E 4932 1294383 +E 4932 1294384 +E 4932 1294385 +E 4932 1294386 +E 4932 1294387 +E 4932 1294388 +E 1294540 1294540 +E 1295506 1295506 +E 4932 1296266 +E 447920 1297585 +B 562 1297619 +B 562 1297620 +E 191477 1297895 +E 1298884 1298884 +E 1300103 1300103 +B 562 1302237 +E 1302381 1302381 +E 1302559 1302559 +E 1302775 1302775 +E 1302782 1302782 +E 1302783 1302783 +E 1302786 1302786 +B 562 1303172 +B 562 1303173 +B 562 1303174 +B 562 1303175 +B 562 1303176 +B 562 1305850 +B 562 1306398 +B 562 1306399 +E 1306751 1306751 +B 562 1308540 +B 562 1308667 +B 562 1308668 +B 562 1308669 +B 562 1308670 +B 562 1308671 +B 562 1308672 +B 562 1308673 +B 562 1308674 +B 562 1308675 +B 562 1308676 +B 562 1308677 +B 562 1308678 +B 562 1308679 +B 562 1308680 +B 562 1308681 +B 562 1308682 +B 562 1308683 +B 562 1308981 +B 562 1308982 +B 562 1308983 +B 562 1308984 +E 1311454 1311454 +E 1311497 1311497 +E 1311505 1311505 +B 562 1311757 +B 562 1311758 +E 1314640 1314640 +B 562 1314835 +B 562 1314840 +B 562 1314841 +B 562 1314842 +B 562 1314845 +B 562 1314847 +B 562 1314848 +E 1316015 1316015 +E 51752 1316269 +E 1316676 1316676 +E 4792 1317063 +E 4792 1317064 +E 4792 1317065 +E 4792 1317066 +B 562 1317130 +B 562 1317131 +B 562 1318715 +E 156563 1319836 +E 156563 1319837 +E 1319981 1319981 +B 562 1322345 +E 270252 1324784 +E 1325494 1325494 +E 1325495 1325495 +B 562 1327978 +E 1328070 1328070 +B 562 1328432 +B 562 1328433 +B 562 1328434 +B 562 1328435 +B 562 1328436 +B 562 1328437 +B 562 1328438 +B 562 1328439 +B 562 1328440 +B 562 1328441 +B 562 1328442 +B 562 1328443 +B 562 1328444 +B 562 1328445 +B 562 1328446 +B 562 1328447 +B 562 1328448 +B 562 1328449 +B 562 1328450 +B 562 1328859 +E 1329237 1329237 +E 1329240 1329240 +E 1329249 1329249 +E 1329253 1329253 +B 562 1329907 +E 4932 1330326 +B 562 1330457 +B 562 1330526 +B 562 1330527 +B 562 1330528 +B 562 1330529 +B 562 1330530 +B 562 1331061 +B 562 1331062 +B 562 1331063 +B 562 1331064 +B 562 1331065 +B 562 1331066 +E 1331681 1331681 +E 4932 1331972 +B 562 1332189 +E 36245 1333336 +E 8895 1333337 +E 175930 1333347 +E 1192867 1333527 +B 562 1333535 +B 562 1333536 +B 562 1333537 +B 562 1333587 +B 562 1333588 +B 562 1333589 +B 562 1333590 +B 562 1333591 +B 562 1333592 +B 562 1333593 +B 562 1333594 +B 562 1333595 +B 562 1333596 +B 562 1333597 +E 48890 1333598 +E 8801 1333622 +E 1333648 1333648 +E 1334086 1334086 +B 562 1334188 +E 51342 1334825 +E 51342 1334826 +E 51342 1334827 +E 51342 1334828 +E 51342 1334829 +B 562 1335302 +B 562 1335303 +B 562 1335304 +B 562 1335916 +B 562 1336202 +B 562 1336205 +B 562 1336206 +B 562 1337384 +B 562 1337385 +E 4932 1337436 +E 4932 1337437 +E 4932 1337438 +E 4932 1337439 +E 4932 1337440 +E 4932 1337441 +E 4932 1337442 +E 4932 1337443 +E 4932 1337444 +E 4932 1337445 +E 4932 1337446 +E 4932 1337447 +E 4932 1337448 +E 4932 1337449 +E 4932 1337450 +E 4932 1337451 +E 4932 1337452 +E 4932 1337453 +E 4932 1337454 +E 4932 1337455 +E 4932 1337456 +E 4932 1337457 +E 4932 1337458 +E 4932 1337459 +E 4932 1337460 +E 4932 1337461 +E 4932 1337462 +E 4932 1337463 +E 4932 1337464 +E 4932 1337465 +E 4932 1337466 +E 4932 1337467 +E 4932 1337468 +E 4932 1337469 +E 4932 1337470 +E 4932 1337471 +E 4932 1337472 +E 4932 1337473 +E 4932 1337474 +E 4932 1337475 +E 4932 1337476 +E 4932 1337477 +E 4932 1337478 +E 4932 1337479 +E 4932 1337480 +E 4932 1337481 +E 4932 1337482 +E 4932 1337483 +E 4932 1337484 +E 4932 1337485 +E 4932 1337486 +E 4932 1337487 +E 4932 1337488 +E 4932 1337489 +E 4932 1337490 +E 4932 1337491 +E 4932 1337492 +E 4932 1337493 +E 4932 1337494 +E 4932 1337495 +E 4932 1337496 +E 4932 1337497 +E 4932 1337498 +E 4932 1337499 +E 4932 1337500 +E 4932 1337501 +E 4932 1337502 +E 4932 1337503 +E 4932 1337504 +E 4932 1337505 +E 4932 1337506 +E 4932 1337507 +E 4932 1337508 +E 4932 1337509 +E 4932 1337510 +E 4932 1337511 +E 4932 1337512 +E 4932 1337513 +E 4932 1337514 +E 4932 1337515 +E 4932 1337516 +E 4932 1337517 +E 4932 1337518 +E 4932 1337519 +E 4932 1337520 +E 4932 1337521 +E 4932 1337522 +E 4932 1337523 +E 4932 1337524 +E 4932 1337525 +E 4932 1337526 +E 4932 1337527 +E 4932 1337528 +E 4932 1337529 +E 4932 1337530 +E 4932 1337531 +E 4932 1337532 +E 4932 1337533 +E 4932 1337534 +E 4932 1337535 +E 4932 1337536 +E 4932 1337537 +E 4932 1337538 +E 4932 1337539 +E 4932 1337540 +E 4932 1337541 +E 4932 1337542 +E 4932 1337543 +E 4932 1337544 +E 4932 1337549 +E 4932 1337552 +E 4932 1337553 +E 4932 1337554 +E 4932 1337555 +E 4932 1337556 +E 4932 1337557 +E 4932 1337558 +E 4932 1337559 +E 4932 1337560 +E 4932 1337561 +E 4932 1337562 +E 4932 1337563 +E 4932 1337644 +E 4932 1337645 +E 4932 1337646 +E 4932 1337647 +E 4932 1337649 +E 4932 1337650 +E 4932 1337651 +E 4932 1337652 +E 4932 1337653 +E 4932 1337654 +E 4932 1337655 +B 562 1337997 +E 1338018 1338018 +E 1338022 1338022 +E 1338023 1338023 +B 562 1340850 +E 1342827 1342827 +E 1342830 1342830 +E 1342833 1342833 +E 1342840 1342840 +E 7116 1343050 +E 1343680 1343680 +E 1343690 1343690 +B 562 1343836 +E 1346795 1346795 +E 9503 1347729 +E 4932 1348153 +E 4932 1352823 +E 4932 1352824 +E 9627 1353242 +B 562 1354003 +B 562 1355025 +B 562 1355026 +B 562 1355027 +B 562 1355028 +B 562 1355029 +B 562 1355030 +B 562 1355031 +B 562 1355032 +B 562 1355033 +B 562 1355034 +B 562 1355035 +B 562 1355036 +B 562 1355037 +B 562 1355038 +B 562 1355039 +B 562 1355040 +B 562 1355041 +B 562 1355042 +B 562 1355043 +B 562 1355044 +B 562 1355045 +B 562 1355046 +B 562 1355047 +B 562 1355048 +B 562 1355049 +B 562 1355050 +B 562 1355051 +B 562 1355052 +B 562 1355053 +B 562 1355054 +B 562 1355055 +B 562 1355056 +B 562 1355057 +B 562 1355058 +B 562 1355059 +B 562 1355060 +B 562 1355061 +B 562 1355062 +B 562 1355063 +B 562 1355064 +B 562 1355065 +B 562 1355066 +B 562 1355067 +B 562 1355068 +B 562 1355069 +B 562 1355070 +B 562 1355071 +B 562 1355072 +B 562 1355073 +B 562 1355074 +B 562 1355075 +B 562 1355076 +B 562 1355077 +B 562 1355078 +B 562 1355079 +B 562 1355080 +B 562 1355081 +B 562 1355082 +B 562 1355083 +B 562 1355084 +B 562 1355085 +B 562 1355086 +B 562 1355087 +B 562 1355088 +B 562 1355089 +B 562 1355090 +B 562 1355091 +B 562 1355092 +B 562 1355093 +B 562 1355094 +B 562 1355095 +B 562 1355096 +B 562 1355097 +B 562 1355098 +B 562 1355099 +B 562 1355100 +B 562 1355101 +B 562 1355102 +B 562 1355103 +B 562 1355104 +B 562 1355105 +B 562 1355106 +B 562 1355107 +B 562 1355108 +B 562 1355109 +B 562 1355110 +B 562 1355111 +B 562 1355112 +B 562 1355113 +B 562 1355114 +B 562 1355115 +B 562 1355116 +B 562 1355117 +B 562 1355118 +B 562 1355119 +B 562 1355120 +B 562 1355121 +B 562 1355122 +B 562 1355123 +B 562 1355124 +B 562 1355125 +B 562 1355126 +B 562 1355127 +B 562 1355128 +B 562 1355129 +E 1355937 1355937 +E 1355937 1355939 +E 1356035 1356035 +E 1356052 1356052 +E 1355937 1356598 +E 1355937 1356599 +E 1355937 1356600 +E 9014 1356601 +E 9014 1356602 +E 9014 1356603 +E 9014 1356604 +E 9014 1356605 +E 9017 1356606 +E 9014 1356622 +E 164973 1357717 +E 1357725 1357725 +E 9014 1357968 +B 562 1358334 +B 562 1358335 +B 562 1358336 +B 562 1358337 +B 562 1358338 +B 562 1358339 +B 562 1358340 +B 562 1358341 +B 562 1358342 +B 562 1358343 +B 562 1358344 +B 562 1358345 +B 562 1358346 +B 562 1358347 +B 562 1358348 +B 562 1358349 +B 562 1358350 +B 562 1358351 +B 562 1358352 +B 562 1358353 +B 562 1358354 +B 562 1358355 +B 562 1358356 +B 562 1358357 +B 562 1358358 +B 562 1358359 +B 562 1358360 +B 562 1358361 +B 562 1358362 +B 562 1358363 +B 562 1358364 +B 562 1358365 +B 562 1358366 +B 562 1358367 +B 562 1358368 +B 562 1358369 +B 562 1358370 +B 562 1358371 +B 562 1358372 +B 562 1358373 +B 562 1358374 +B 562 1358375 +B 562 1358376 +B 562 1358377 +B 562 1358378 +B 562 1358379 +B 562 1358380 +B 562 1358381 +B 562 1358382 +B 562 1358383 +B 562 1358384 +B 562 1358385 +B 562 1358386 +B 562 1358387 +B 562 1358388 +B 562 1358389 +B 562 1358390 +B 562 1358391 +B 562 1358392 +B 562 1358393 +B 562 1358394 +B 562 1358395 +B 562 1358396 +B 562 1358397 +B 562 1358398 +B 562 1358399 +B 562 1358400 +B 562 1358401 +B 562 1358402 +B 562 1358403 +B 562 1358404 +B 562 1358405 +B 562 1358406 +B 562 1358407 +B 562 1358408 +B 562 1358409 +B 562 1358422 +B 786 1359190 +B 786 1359191 +B 786 1359192 +B 562 1359207 +E 1364862 1364862 +E 1364862 1364863 +B 562 1365258 +B 562 1365259 +B 562 1365260 +B 562 1365261 +B 562 1365262 +E 1365533 1365533 +E 1365539 1365539 +E 1365700 1365700 +E 1367116 1367116 +E 1367118 1367118 +E 1368165 1368165 +B 562 1370106 +B 562 1370107 +E 1378173 1378173 +E 1379451 1379451 +E 1380542 1380542 +E 45325 1382086 +E 4932 1382555 +E 59529 1382559 +E 59529 1382560 +B 562 1382700 +E 10117 1383542 +E 10090 1385377 +B 562 1385755 +E 1386171 1386171 +B 562 1387069 +B 562 1387070 +B 562 1387071 +B 562 1387072 +B 562 1388736 +B 562 1388737 +B 562 1388738 +B 562 1389416 +B 562 1389417 +B 562 1389418 +B 562 1389419 +B 562 1389420 +B 562 1389423 +B 562 1389424 +B 562 1389425 +B 562 1389955 +E 505961 1390255 +E 505961 1390256 +E 4932 1390929 +E 4932 1390930 +E 4932 1390931 +E 4932 1390932 +E 4932 1391042 +E 1391725 1391725 +B 562 1392006 +E 241142 1392495 +B 562 1392847 +B 562 1392848 +B 562 1392849 +B 562 1392850 +B 562 1392851 +B 562 1392852 +B 562 1392853 +B 562 1392854 +B 562 1392855 +B 562 1392856 +B 562 1392857 +B 562 1392858 +B 562 1392859 +B 562 1392860 +B 562 1392861 +B 562 1392862 +B 562 1392863 +B 562 1392864 +B 562 1392865 +B 562 1392866 +B 562 1392867 +B 562 1392868 +B 562 1392869 +B 562 1392870 +B 562 1392871 +B 562 1392872 +B 562 1392873 +B 562 1392874 +E 1394124 1394124 +E 1394127 1394127 +E 1394129 1394129 +E 1394135 1394135 +E 1395009 1395009 +E 1396860 1396860 +E 9627 1398410 +B 562 1399011 +B 562 1399012 +B 562 1399013 +B 562 1399014 +B 562 1399015 +E 1399764 1399764 +E 56313 1399855 +B 562 1400021 +B 562 1400022 +B 562 1400023 +B 562 1400024 +B 562 1400156 +B 562 1400157 +B 562 1400158 +B 562 1400159 +B 562 1401688 +B 562 1401689 +E 1047102 1401907 +B 562 1403831 +B 562 1403943 +B 562 1403944 +B 562 1404261 +B 562 1404262 +B 562 1405292 +B 562 1405293 +B 562 1405294 +B 562 1405295 +E 155165 1405332 +E 1405560 1405560 +E 1405644 1405644 +E 1405645 1405645 +E 1405656 1405656 +E 1405661 1405661 +E 4182 1405819 +B 562 1406817 +B 562 1406818 +B 562 1406819 +B 562 1406820 +B 562 1406821 +B 562 1407067 +B 562 1408252 +B 562 1408253 +B 562 1409786 +B 562 1409951 +B 562 1409953 +B 562 1411081 +E 1411154 1411154 +B 562 1411645 +B 562 1411691 +B 562 1411692 +B 562 1411693 +B 562 1411694 +B 562 1411695 +B 562 1411696 +B 562 1411697 +B 562 1411698 +E 1412110 1412110 +E 1412450 1412450 +B 562 1412815 +B 562 1412816 +B 562 1412817 +B 562 1412818 +B 562 1412819 +B 562 1412820 +B 562 1412821 +B 562 1412822 +B 562 1412823 +B 562 1412824 +B 562 1412825 +B 562 1412826 +B 562 1412827 +B 562 1412828 +B 562 1412829 +B 562 1412830 +B 562 1412831 +B 562 1412832 +B 562 1412833 +B 562 1412834 +B 562 1412835 +B 562 1412836 +B 562 1412837 +B 562 1412838 +B 562 1412839 +E 1414481 1414481 +E 1415635 1415635 +B 562 1416670 +B 562 1416671 +B 562 1416672 +B 562 1416673 +B 562 1416674 +B 562 1416675 +B 562 1416676 +E 4932 1416897 +B 562 1417796 +E 4932 1418121 +E 4460 1419728 +E 4932 1419746 +B 562 1420014 +E 1421018 1421018 +B 562 1425342 +B 562 1427360 +B 562 1427361 +E 1428451 1428451 +B 562 1431454 +E 1431475 1431475 +E 1431494 1431494 +E 1431514 1431514 +B 562 1432548 +B 562 1432549 +B 562 1432551 +B 562 1432555 +B 562 1432557 +B 562 1432559 +B 562 1432560 +B 562 1433129 +B 562 1433131 +E 4932 1434269 +B 562 1435461 +E 1436202 1436202 +B 562 1438668 +B 562 1438669 +B 562 1438670 +B 562 1438671 +B 562 1438672 +B 562 1438673 +B 562 1438674 +B 562 1438675 +B 562 1438676 +B 562 1438677 +B 562 1438678 +B 562 1438679 +B 562 1438680 +B 562 1438681 +B 562 1438682 +B 562 1438683 +B 562 1438684 +B 562 1438685 +B 562 1438686 +B 562 1438687 +B 562 1438688 +B 562 1438689 +B 562 1438690 +B 562 1438691 +B 562 1438692 +B 562 1438693 +B 562 1438694 +B 562 1438695 +B 562 1438696 +E 1441476 1441476 +B 562 1441627 +B 562 1444036 +B 562 1444037 +B 562 1444038 +B 562 1444040 +B 562 1444041 +B 562 1444042 +B 562 1444043 +B 562 1444044 +B 562 1444045 +B 562 1444047 +B 562 1444048 +B 562 1444049 +B 562 1444050 +B 562 1444051 +B 562 1444052 +B 562 1444053 +B 562 1444054 +B 562 1444055 +B 562 1444056 +B 562 1444057 +B 562 1444058 +B 562 1444059 +B 562 1444060 +B 562 1444061 +B 562 1444062 +B 562 1444063 +B 562 1444064 +B 562 1444065 +B 562 1444066 +B 562 1444068 +B 562 1444069 +B 562 1444070 +B 562 1444071 +B 562 1444072 +B 562 1444073 +B 562 1444074 +B 562 1444075 +B 562 1444076 +B 562 1444077 +B 562 1444078 +B 562 1444079 +B 562 1444080 +B 562 1444081 +B 562 1444082 +B 562 1444083 +B 562 1444084 +B 562 1444085 +B 562 1444086 +B 562 1444087 +B 562 1444088 +B 562 1444089 +B 562 1444090 +B 562 1444091 +B 562 1444092 +B 562 1444093 +B 562 1444094 +B 562 1444095 +B 562 1444096 +B 562 1444097 +B 562 1444098 +B 562 1444099 +B 562 1444100 +B 562 1444101 +B 562 1444102 +B 562 1444103 +B 562 1444104 +B 562 1444105 +B 562 1444106 +B 562 1444107 +B 562 1444108 +B 562 1444109 +B 562 1444110 +B 562 1444111 +B 562 1444112 +B 562 1444113 +B 562 1444114 +B 562 1444115 +B 562 1444116 +B 562 1444117 +B 562 1444118 +B 562 1444119 +B 562 1444120 +B 562 1444121 +B 562 1444122 +B 562 1444123 +B 562 1444124 +B 562 1444125 +B 562 1444126 +B 562 1444127 +B 562 1444128 +B 562 1444129 +B 562 1444130 +B 562 1444131 +B 562 1444132 +B 562 1444133 +B 562 1444134 +B 562 1444135 +B 562 1444136 +B 562 1444137 +B 562 1444138 +B 562 1444139 +B 562 1444140 +B 562 1444141 +B 562 1444142 +B 562 1444143 +B 562 1444144 +B 562 1444145 +B 562 1444146 +B 562 1444147 +B 562 1444148 +B 562 1444149 +B 562 1444150 +B 562 1444151 +B 562 1444152 +B 562 1444153 +B 562 1444154 +B 562 1444155 +B 562 1444156 +B 562 1444157 +B 562 1444158 +B 562 1444159 +B 562 1444160 +B 562 1444161 +B 562 1444162 +B 562 1444163 +B 562 1444164 +B 562 1444165 +B 562 1444166 +B 562 1444167 +B 562 1444168 +B 562 1444169 +B 562 1444170 +B 562 1444171 +B 562 1444172 +B 562 1444173 +B 562 1444174 +B 562 1444175 +B 562 1444176 +B 562 1444177 +B 562 1444178 +B 562 1444179 +B 562 1444180 +B 562 1444181 +B 562 1444182 +B 562 1444183 +B 562 1444184 +B 562 1444185 +B 562 1444186 +B 562 1444187 +B 562 1444188 +B 562 1444189 +B 562 1444190 +B 562 1444191 +B 562 1444192 +B 562 1444193 +B 562 1444194 +B 562 1444195 +B 562 1444196 +B 562 1444197 +B 562 1444198 +B 562 1444199 +B 562 1444200 +B 562 1444201 +B 562 1444202 +B 562 1444203 +B 562 1444204 +B 562 1444205 +B 562 1444206 +B 562 1444207 +B 562 1444208 +B 562 1444209 +B 562 1444210 +B 562 1444211 +B 562 1444212 +B 562 1444213 +B 562 1444214 +B 562 1444215 +B 562 1444216 +B 562 1444217 +B 562 1444218 +B 562 1444219 +B 562 1444220 +B 562 1444221 +B 562 1444222 +B 562 1444223 +B 562 1444224 +B 562 1444225 +B 562 1444226 +B 562 1444227 +B 562 1444228 +B 562 1444229 +B 562 1444230 +B 562 1444231 +B 562 1444232 +B 562 1444233 +B 562 1444234 +B 562 1444235 +B 562 1444236 +B 562 1444237 +B 562 1444238 +B 562 1444239 +B 562 1444240 +B 562 1444241 +B 562 1444242 +B 562 1444243 +B 562 1444244 +B 562 1444245 +B 562 1444246 +B 562 1444247 +B 562 1444248 +B 562 1444249 +B 562 1444250 +B 562 1444251 +B 562 1444252 +B 562 1444253 +B 562 1444254 +B 562 1444255 +B 562 1444256 +B 562 1444257 +B 562 1444258 +B 562 1444259 +B 562 1444260 +B 562 1444261 +B 562 1444262 +B 562 1444263 +B 562 1444264 +B 562 1444265 +B 562 1444266 +B 562 1444267 +B 562 1444268 +B 562 1444269 +B 562 1444270 +B 562 1444271 +B 562 1444272 +B 562 1444273 +B 562 1444274 +B 562 1444275 +B 562 1444276 +B 562 1444277 +B 562 1444278 +B 562 1444279 +B 562 1444280 +B 562 1444281 +B 562 1444282 +E 1445676 1445676 +B 562 1445862 +B 562 1445863 +E 1446469 1446469 +B 562 1446497 +B 562 1446498 +B 562 1446499 +B 562 1446500 +B 562 1446501 +B 562 1446502 +B 562 1446503 +B 562 1446504 +B 562 1446505 +B 562 1446506 +B 562 1446507 +B 562 1446508 +B 562 1446509 +B 562 1446510 +B 562 1446511 +B 562 1446512 +B 562 1446513 +B 562 1446514 +B 562 1446515 +B 562 1446516 +B 562 1446517 +B 562 1446518 +B 562 1446519 +B 562 1446520 +B 562 1446521 +B 562 1446522 +B 562 1446523 +B 562 1446524 +B 562 1446525 +B 562 1446526 +B 562 1446527 +B 562 1446528 +B 562 1446529 +B 562 1446530 +B 562 1446531 +B 562 1446532 +B 562 1446533 +B 562 1446534 +B 562 1446535 +B 562 1446536 +B 562 1446537 +B 562 1446538 +B 562 1446539 +B 562 1446540 +B 562 1446541 +B 562 1446542 +B 562 1446543 +B 562 1446544 +B 562 1446545 +B 562 1446546 +B 562 1446547 +B 562 1446548 +B 562 1446549 +B 562 1446550 +B 562 1446551 +B 562 1446552 +B 562 1446553 +B 562 1446554 +B 562 1446555 +B 562 1446556 +B 562 1446557 +B 562 1446558 +B 562 1446559 +B 562 1446560 +B 562 1446561 +B 562 1446562 +B 562 1446563 +B 562 1446564 +B 562 1446565 +B 562 1446566 +B 562 1446567 +B 562 1446568 +B 562 1446569 +B 562 1446570 +B 562 1446571 +B 562 1446572 +B 562 1446573 +B 562 1446574 +B 562 1446575 +B 562 1446576 +B 562 1446577 +B 562 1446578 +B 562 1446579 +B 562 1446580 +B 562 1446581 +B 562 1446582 +B 562 1446583 +B 562 1446584 +B 562 1446585 +B 562 1446586 +B 562 1446587 +B 562 1446588 +B 562 1446589 +B 562 1446590 +B 562 1446591 +B 562 1446592 +B 562 1446593 +B 562 1446594 +B 562 1446595 +B 562 1446596 +B 562 1446597 +B 562 1446598 +B 562 1446599 +B 562 1446600 +B 562 1446601 +B 562 1446602 +B 562 1446603 +B 562 1446604 +B 562 1446605 +B 562 1446606 +B 562 1446607 +B 562 1446608 +B 562 1446609 +B 562 1446610 +B 562 1446611 +B 562 1446612 +B 562 1446613 +B 562 1446614 +B 562 1446615 +B 562 1446616 +B 562 1446617 +B 562 1446618 +B 562 1446619 +B 562 1446620 +B 562 1446621 +B 562 1446622 +B 562 1446623 +B 562 1446624 +B 562 1446625 +B 562 1446626 +B 562 1446627 +B 562 1446628 +B 562 1446629 +B 562 1446630 +B 562 1446631 +B 562 1446632 +B 562 1446633 +B 562 1446634 +B 562 1446635 +B 562 1446636 +B 562 1446637 +B 562 1446638 +B 562 1446639 +B 562 1446640 +B 562 1446641 +B 562 1446642 +B 562 1446643 +B 562 1446644 +B 562 1446645 +B 562 1446646 +B 562 1446647 +B 562 1446648 +B 562 1446649 +B 562 1446650 +B 562 1446651 +B 562 1446652 +B 562 1446653 +B 562 1446654 +B 562 1446655 +B 562 1446656 +B 562 1446657 +B 562 1446658 +B 562 1446659 +B 562 1446660 +B 562 1446661 +B 562 1446662 +B 562 1446663 +B 562 1446664 +B 562 1446665 +B 562 1446666 +B 562 1446667 +B 562 1446668 +B 562 1446669 +B 562 1446670 +B 562 1446671 +B 562 1446672 +B 562 1446673 +B 562 1446674 +B 562 1446675 +B 562 1446676 +B 562 1446677 +B 562 1446678 +B 562 1446679 +B 562 1446680 +B 562 1446681 +B 562 1446682 +B 562 1446683 +B 562 1446684 +B 562 1446685 +B 562 1446686 +B 562 1446687 +B 562 1446688 +B 562 1446689 +B 562 1446690 +B 562 1446691 +B 562 1446692 +B 562 1446693 +B 562 1446694 +B 562 1446695 +B 562 1446696 +B 562 1446697 +B 562 1446698 +B 562 1446699 +B 562 1446700 +B 562 1446701 +B 562 1446702 +B 562 1446703 +B 562 1446704 +B 562 1446705 +B 562 1446706 +B 562 1446707 +B 562 1446708 +B 562 1446709 +B 562 1446710 +B 562 1446711 +B 562 1446712 +B 562 1446713 +B 562 1446714 +B 562 1446715 +B 562 1446716 +B 562 1446717 +B 562 1446718 +B 562 1446719 +B 562 1446720 +B 562 1446721 +B 562 1446722 +B 562 1446723 +B 562 1446724 +B 562 1446725 +B 562 1446726 +B 562 1446727 +B 562 1446728 +B 562 1446729 +B 562 1446730 +B 562 1446731 +B 562 1446732 +B 562 1446733 +B 562 1446734 +B 562 1446735 +B 562 1446736 +B 562 1446737 +B 562 1446738 +B 562 1446739 +B 562 1446740 +B 562 1446741 +B 562 1446742 +B 562 1446743 +B 562 1446744 +B 562 1446745 +B 562 1446746 +B 562 1446747 +B 562 1446748 +B 562 1446749 +B 562 1446750 +B 562 1446751 +B 562 1446752 +B 562 1446753 +B 562 1446754 +B 562 1446755 +B 562 1446756 +B 562 1446757 +B 562 1446758 +B 562 1446759 +B 562 1446760 +B 562 1446761 +B 562 1446762 +B 562 1446763 +B 562 1446764 +B 562 1446765 +B 562 1446766 +B 562 1446767 +B 562 1446768 +E 9544 1449913 +E 110926 1450144 +B 562 1450173 +B 562 1450174 +B 562 1450175 +B 562 1450177 +B 562 1450427 +B 562 1450428 +B 562 1450429 +B 562 1450430 +B 562 1450431 +B 562 1450432 +B 562 1450433 +B 562 1450434 +B 562 1450435 +B 562 1450436 +B 562 1450437 +B 562 1450438 +B 562 1450517 +E 75358 1451184 +B 562 1451264 +E 326968 1451284 +B 562 1452720 +B 562 1453472 +E 1453604 1453604 +E 1453815 1453815 +B 562 1454383 +E 245046 1454564 +E 245046 1454565 +B 562 1455597 +B 562 1455598 +B 562 1455599 +B 562 1455600 +B 562 1455601 +E 1455662 1455662 +E 1455677 1455677 +B 562 1457192 +E 245046 1457243 +B 562 1457300 +E 3750 1457994 +E 1458430 1458430 +E 57571 1458686 +B 562 1458844 +E 1459836 1459836 +E 1460501 1460501 +E 1462579 1462579 +E 1462580 1462580 +E 9794 1469497 +E 36245 1471604 +E 37601 1471635 +E 8964 1471636 +E 37610 1471758 +E 156565 1471811 +E 9160 1471834 +E 216193 1471900 +E 13746 1471995 +E 9906 1472950 +E 1474818 1474818 +E 1474870 1474870 +E 1475060 1475060 +E 1475061 1475061 +B 562 1476562 +B 562 1476563 +B 562 1476564 +E 1479094 1479094 +E 1480063 1480063 +B 562 1481455 +B 562 1481456 +E 1486644 1486644 +E 1486653 1486653 +E 9319 1496120 +E 9319 1496121 +E 9319 1496122 +E 1496311 1496311 +E 1498866 1498866 +E 1498878 1498878 +E 1500691 1500691 +E 34740 1501341 +B 562 1502658 +E 1502869 1502869 +E 1502963 1502963 +E 37610 1504532 +E 37610 1504533 +E 9627 1504800 +E 4151 1508158 +E 1510417 1510417 +E 1513182 1513182 +E 1513809 1513809 +E 1517488 1517488 +E 1517490 1517490 +E 183177 1517797 +E 1517834 1517834 +E 1517834 1517835 +E 1517969 1517969 +E 1364862 1518504 +E 52814 1521023 +E 52814 1521024 +E 1522394 1522394 +E 9209 1522883 +E 9209 1522884 +E 9209 1523032 +E 262664 1527572 +E 9515 1532888 +E 64176 1534827 +E 48988 1538293 +E 215402 1542969 +E 9515 1547595 +E 482375 1547988 +E 211510 1548943 +E 141839 1549158 +E 262664 1579700 +E 262664 1579701 +E 45779 1579758 +B 562 1581707 +E 73327 1590993 +E 73327 1590994 +E 187415 1591034 +E 36272 1592218 +E 30425 1593448 +E 30425 1593449 +B 562 1603259 +E 54769 1603566 +E 33610 1604013 +E 40157 1604695 +E 9995 1605446 +E 9995 1605447 +E 9995 1605448 +E 9742 1607687 +E 30331 1607990 +E 8801 1608625 +E 34740 1608924 +E 9794 1618199 +B 562 1619910 +E 8964 1620237 +E 3635 1620505 +E 3635 1620506 +E 110212 1628889 +E 110212 1628890 +E 491955 1641404 +E 10090 1643390 +E 859894 1648459 +E 9544 1654737 +E 257879 1673613 +E 3505 1689654 +E 3505 1689655 +E 3505 1689656 +E 113305 1690658 +E 57571 1695935 +E 151541 1699383 +E 151541 1699384 +E 151541 1699385 +E 165861 1699386 +E 165858 1699399 +E 165858 1699400 +E 165858 1699401 +E 165858 1699402 +E 165858 1699403 +E 13037 1699404 +E 320472 1710833 +E 51896 1716564 +E 196781 1729590 +E 10117 1740719 +E 10117 1740720 +E 8787 1740726 +E 8787 1740727 +E 8787 1740867 +E 8787 1740868 +E 8787 1740869 +E 165858 1742260 +E 165861 1742261 +E 9541 1747270 +E 34740 1756247 +E 91738 1759317 +E 68476 1765761 +E 423320 1766797 +E 9209 1772037 +E 702266 1776481 +E 72882 1778365 +E 72882 1778376 +B 562 1789664 +E 4641 1797125 +E 4641 1797126 +E 4641 1797127 +E 9843 1825697 +E 7175 1833972 +E 555356 1848250 +B 562 1868622 +E 9902 1874132 +E 94413 1879024 +E 10090 1879032 +E 69081 1880912 +E 121400 1882495 +E 82595 1888488 +E 45171 1895285 +E 9711 1908284 +E 9711 1908286 +E 39708 1917396 +E 34924 1924283 +E 34924 1924284 +E 48890 1930270 +E 48890 1930271 +E 48890 1930282 +E 48890 1930283 +E 7460 1934107 +E 859894 1936090 +E 341696 1938359 +E 75348 1948882 +B 562 1954351 +E 64415 1958897 +E 64415 1958900 +E 9739 1961080 +B 562 1963779 +B 562 1963780 +B 562 1963781 +B 562 1963782 +B 562 1963783 +B 562 1963784 +B 562 1963785 +E 30331 1963786 +E 662561 1966383 +E 9794 1968430 +E 9794 1968431 +E 39958 1969553 +E 39958 1969554 +E 39958 1969555 +E 39958 1969556 +E 9906 1970158 +E 9477 1971490 +E 10117 1972516 +E 9813 1973248 +E 9813 1973249 +E 9925 1983724 +E 37295 1985287 +E 9544 2008792 +E 7011 2023356 +E 1246547 2025601 +B 562 2027293 +B 562 2027294 +B 562 2027295 +B 562 2027296 +B 562 2027297 +B 562 2027298 +E 111881 2036211 +E 171592 2036212 +E 171592 2036213 +E 235354 2036214 +E 171592 2036215 +B 562 2048775 +B 562 2048776 +B 562 2048777 +B 562 2048778 +B 562 2048779 +B 562 2048780 +B 562 2048781 +E 59557 2052175 +E 74364 2052739 +B 562 2056315 +B 562 2067420 +B 562 2067421 +B 562 2067422 +B 562 2067423 +B 562 2067424 +B 562 2067425 +B 562 2067426 +B 562 2067427 +B 562 2067428 +B 562 2067429 +B 562 2067430 +B 562 2067431 +B 562 2067432 +B 562 2072452 +B 562 2072453 +B 562 2072454 +B 562 2072455 +B 562 2072456 +B 562 2072457 +B 562 2072458 +B 562 2072459 +B 562 2072460 +B 562 2072461 +B 562 2072462 +B 562 2072463 +B 562 2079151 +B 562 2079152 +B 562 2079153 +B 562 2079154 +B 562 2079155 +B 562 2079156 +B 562 2079157 +B 562 2079158 +B 562 2079159 +B 562 2079160 +B 562 2079161 +B 562 2079162 +B 562 2079163 +B 562 2079164 +B 562 2079165 +E 7460 2079547 +B 562 2100480 +B 562 2100481 +B 562 2100482 +B 562 2100483 +B 562 2100484 +B 562 2100485 +B 562 2100486 +B 562 2100487 +B 562 2100488 +B 562 2100489 +B 562 2100490 +B 562 2100491 +B 562 2100492 +B 562 2100493 +B 562 2100494 +B 562 2100495 +B 562 2100496 +B 562 2100497 +B 562 2100498 +B 562 2100499 +B 562 2100500 +B 562 2100501 +B 562 2100502 +B 562 2100503 +B 562 2100504 +B 562 2100505 +B 562 2100506 +B 562 2100507 +B 562 2100508 +B 562 2100509 +B 562 2100510 +B 562 2100511 +B 562 2100512 +B 562 2100513 +B 562 2100514 +B 562 2100515 +B 562 2100516 +B 562 2100517 +B 562 2100518 +B 562 2100519 +B 562 2100520 +B 562 2100521 +E 389288 2115960 +E 389288 2115961 +E 461231 2126774 +E 461231 2126782 +B 562 2126982 +E 4565 2135794 +E 51896 2137755 +E 51896 2137756 +E 10117 2162860 +E 10117 2162861 +B 562 2162909 +B 562 2162910 +B 562 2162911 +B 562 2162912 +B 562 2162913 +B 562 2162914 +B 562 2162915 +B 562 2162916 +B 562 2162917 +B 562 2162918 +E 3447 2163624 +B 562 2170723 +B 562 2170724 +B 562 2170725 +B 562 2170726 +B 562 2170727 +B 562 2170736 +B 562 2170737 +E 3505 2172038 +E 36275 2183869 +B 562 2184071 +B 562 2184072 +B 562 2184073 +B 562 2184074 +B 562 2184075 +E 37003 2185112 +E 6396 2202381 +E 9978 2219210 +E 9978 2219211 +E 672774 2219680 +E 672774 2219681 +B 562 2233553 +B 562 2234096 +B 562 2234097 +B 562 2234098 +B 562 2234099 +E 176014 2234124 +B 562 2234129 +E 9870 2249212 +E 60710 2269071 +E 63479 2283350 +E 202839 2291424 +E 160734 2293803 +E 160734 2293804 +B 562 2293846 +E 1283716 2304175 +E 10019 2338495 +E 10019 2338496 +E 56313 2338548 +E 56313 2338549 +E 56313 2338550 +E 56313 2338551 +E 56313 2339097 +E 56313 2339133 +E 56313 2339134 +E 56313 2339151 +E 56313 2339152 +E 56313 2339159 +B 562 2364650 +E 59529 2419684 +E 132697 2461384 +B 562 2491679 +B 562 2491680 +B 562 2491681 +B 562 2491682 +B 562 2491683 +B 562 2491684 +B 562 2491685 +B 562 2491686 +B 562 2491687 +B 562 2491688 +B 562 2491689 +B 562 2491690 +B 562 2491691 +B 562 2491692 +B 562 2491693 +B 562 2491694 +B 562 2491695 +B 562 2491696 +B 562 2491697 +B 562 2491698 +B 562 2491870 +B 562 2491871 +B 562 2491872 +B 562 2491873 +B 562 2491874 +B 562 2491875 +B 562 2491876 +B 562 2491877 +B 562 2491878 +E 42043 2497457 +E 39591 2517398 +E 39591 2517399 +E 643485 2518261 +E 643485 2518262 +E 476017 2518264 +E 643485 2518277 +E 476017 2518278 +E 215402 2518323 +E 3527 2518629 +E 100823 2527673 +E 218750 2528646 +E 4565 2529935 +E 4565 2529936 +E 4565 2529937 +E 4565 2529938 +E 4565 2529939 +E 4565 2529940 +E 4565 2529941 +E 4565 2529942 +E 4565 2529949 +E 121869 2529991 +E 121869 2529992 +E 9014 2542735 +E 7461 2547924 +E 4641 2555678 +E 46906 2563060 +E 4641 2563115 +E 100823 2563697 +E 8584 2563700 +E 64176 2563711 +E 102107 2567914 +E 9477 2567999 +E 33453 2576678 +E 161940 2577086 +E 236793 2579806 +B 562 2582420 +E 385657 2583465 +E 385657 2583466 +E 8517 2590145 +B 562 2592065 +E 301166 2599325 +E 30461 2599432 +B 562 2603286 +B 562 2603287 +B 562 2603836 +B 562 2605619 +B 562 2605620 +E 34740 2653831 +E 34740 2653832 +B 562 2654673 +E 9739 2663531 +E 7460 2676417 +E 36249 2683048 +E 7460 2684443 +E 34903 2695914 +E 34740 2697338 +E 34740 2697339 +B 562 2697517 +E 40075 2705484 +E 40075 2705485 +E 45779 2705527 +E 52838 2706845 +E 165846 2723188 +E 3668 2726058 +E 3668 2729090 +B 562 2735160 +E 203558 2737179 +E 8633 2744552 +E 374600 2752809 +E 374600 2752810 +E 113315 2752895 +E 33453 2752932 +E 9600 2753605 +E 9600 2753606 +E 291695 2753958 +E 8558 2756165 +E 7460 2763094 +B 562 2763104 +E 165846 2763312 +E 34924 2770619 +B 562 2773704 +B 562 2773705 +B 562 2773706 +B 562 2773707 +E 183177 2775503 +B 562 2778652 +B 562 2778653 +B 562 2778654 +B 562 2778655 +B 562 2778656 +B 562 2778657 +E 3654 2787746 +E 132696 2794740 +E 405022 2794741 +E 191398 2794744 +E 218720 2794745 +E 132697 2794785 +E 132697 2794786 +E 132697 2794787 +E 132697 2794788 +E 235354 2795509 +E 78620 2795533 +E 165861 2795535 +E 33434 2795554 +E 33434 2795555 +E 282391 2795561 +E 282391 2795585 +E 282391 2800511 +B 562 2802025 +B 562 2802026 +B 562 2802027 +B 562 2802028 +B 562 2802029 +B 562 2802030 +B 562 2802031 +B 562 2802032 +B 562 2802033 +B 562 2802034 +B 562 2802035 +B 562 2802036 +B 562 2802037 +B 562 2802038 +B 562 2809254 +B 562 2809255 +B 562 2809256 +B 562 2809257 +B 562 2809258 +E 311037 2809776 +E 311037 2809777 +E 291688 2809995 +E 291688 2809996 +E 291688 2809997 +E 291688 2809998 +E 291688 2809999 +E 291688 2810000 +E 291688 2810001 +E 291688 2810002 +E 291688 2810003 +E 291688 2810004 +E 291688 2810005 +E 291691 2810007 +B 562 2810404 +B 562 2810405 +B 562 2810406 +B 562 2810407 +B 562 2810408 +B 562 2810409 +B 562 2814546 +E 35924 2816032 +B 562 2821264 +B 562 2821265 +B 562 2821266 +B 562 2821267 +B 562 2821268 +B 562 2822132 +E 161680 2830701 +E 161704 2836312 +E 171585 2841592 +E 441319 2847411 +E 111917 2847562 +B 562 2848143 +B 562 2848144 +B 562 2848145 +E 301041 2851547 +E 75839 2854247 +B 562 2854732 +B 562 2854733 +E 113305 2854860 +E 291695 2855106 +B 562 2861805 +B 562 2861806 +B 562 2865932 +E 42061 2871176 +B 562 2874051 +B 562 2874052 +B 562 2874053 +B 562 2875935 +E 9014 2893821 +E 9014 2893822 +E 9014 2893823 +E 9014 2893824 +E 9014 2893825 +E 9014 2894008 +E 9014 2894009 +E 9014 2894010 +E 9014 2894011 +E 9014 2894012 +E 9014 2894013 +E 9014 2894014 +E 9017 2894015 +E 9017 2894016 +E 9017 2894017 +E 9017 2894018 +B 562 2899430 +E 7460 2905672 +E 311037 2915473 +E 100823 2916452 +B 562 2916706 +B 562 2916707 +B 562 2916708 +B 562 2916709 +B 562 2916710 +B 562 2916711 +B 562 2916712 +B 562 2916713 +B 562 2916714 +B 562 2916715 +B 562 2916716 +B 562 2916717 +B 562 2916718 +B 562 2916719 +B 562 2916720 +B 562 2916721 +B 562 2916722 +B 562 2916723 +B 562 2916724 +B 562 2916725 +E 161624 2916761 +E 992947 2928204 +B 562 2932261 +B 562 2944632 +E 30596 2946513 +E 13427 2954304 +E 13427 2954305 +B 562 2969654 +E 8569 2974592 +E 37347 2977824 +E 9488 2979364 +E 9488 2979365 +E 8635 2979995 +E 257884 2980668 +E 4641 2981342 +B 562 2983820 +E 3816 2984612 +B 562 2990469 +B 562 2990470 +B 562 2990471 +E 8485 2991368 +E 282391 2993279 +B 562 2994753 +B 562 2994754 +B 562 2994755 +B 562 3002857 +E 42296 3014837 +E 93715 3017958 +B 562 3033940 +E 343929 3034032 +E 59529 3034426 +E 9014 3036673 +E 9014 3036674 +E 9014 3036675 +B 562 3038394 +B 562 3041057 +E 48193 3041816 +E 110793 3047913 +E 110793 3047914 +B 562 3050626 +B 562 3050627 +B 562 3050628 +B 562 3050629 +B 562 3050630 +B 562 3053913 +B 562 3059267 +B 562 3059268 +B 562 3059269 +B 562 3060857 +B 562 3060858 +B 562 3060859 +B 562 3060860 +B 562 3060861 +B 562 3060862 +B 562 3060863 +B 562 3060864 +B 562 3060865 +B 562 3060867 +B 562 3060868 +B 562 3060869 +B 562 3060870 +B 562 3060871 +B 562 3060872 +B 562 3060873 +B 562 3060874 +B 562 3060875 +B 562 3060876 +B 562 3060877 +B 562 3060878 +B 562 3060879 +B 562 3060880 +B 562 3060881 +B 562 3060882 +B 562 3060883 +B 562 3060884 +B 562 3060885 +B 562 3060886 +B 562 3060887 +B 562 3060888 +B 562 3060889 +B 562 3060890 +B 562 3060891 +B 562 3060892 +B 562 3060893 +B 562 3060894 +B 562 3060895 +B 562 3060896 +B 562 3060897 +B 562 3060898 +B 562 3060899 +B 562 3060900 +B 562 3060901 +B 562 3060902 +B 562 3060903 +B 562 3060904 +B 562 3060905 +B 562 3060906 +B 562 3060907 +B 562 3060908 +B 562 3060909 +B 562 3060910 +B 562 3060911 +B 562 3060913 +B 562 3060914 +B 562 3060916 +B 562 3060917 +B 562 3060918 +B 562 3060919 +B 562 3060920 +B 562 3060921 +B 562 3060922 +B 562 3060923 +B 562 3060924 +B 562 3060925 +B 562 3060926 +B 562 3060927 +B 562 3060928 +E 33434 3062107 +B 562 3065859 +B 562 3065860 +E 7460 3065914 +E 7460 3065915 +E 7460 3065916 +B 562 3078806 +E 9387 3079466 +E 9978 3079485 +E 30640 3079496 +E 30640 3079498 +B 562 3081688 +E 9870 3082113 +E 191976 3100098 +E 378387 3108192 +E 36288 3109069 +E 10090 3109569 +E 42043 3116564 +E 4565 3118435 +E 4565 3118445 +E 4565 3118449 +B 562 3122198 +B 562 3122202 +B 562 3122203 +B 562 3122204 +B 562 3123223 +B 562 3123224 +B 562 3126079 +B 562 3126477 +E 99855 3127284 +B 562 3128925 +B 562 3128926 +B 562 3128927 +B 562 3128928 +B 562 3128929 +B 562 3128930 +B 562 3132876 +B 562 3132877 +B 562 3132878 +B 562 3132879 +B 562 3132880 +B 562 3132881 +B 562 3132882 +B 562 3132883 +B 562 3132884 +B 562 3132885 +B 562 3132886 +B 562 3132887 +B 562 3132888 +B 562 3132889 +B 562 3132890 +B 562 3132891 +B 562 3132892 +B 562 3132893 +B 562 3132894 +B 562 3132895 +B 562 3132896 +B 562 3132897 +B 562 3132898 +B 562 3132899 +B 562 3132900 +B 562 3132901 +B 562 3132902 +B 562 3132903 +B 562 3132904 +B 562 3132905 +B 562 3132906 +B 562 3132907 +B 562 3132908 +B 562 3132909 +B 562 3132910 +B 562 3132911 +B 562 3132912 +B 562 3132913 +B 562 3132914 +B 562 3132915 +B 562 3132916 +B 562 3132917 +B 562 3134112 +B 562 3134113 +B 562 3134114 +B 562 3134115 +B 562 3134938 +B 562 3134939 +B 562 3134940 +B 562 3134941 +B 562 3134942 +B 562 3134943 +B 562 3134944 +E 31155 3135058 +B 562 3136210 +B 562 3136211 +B 562 3136212 +B 562 3136213 +B 562 3136214 +B 562 3136215 +B 562 3136747 +B 562 3136748 +B 562 3136749 +B 562 3137373 +B 562 3137374 +B 562 3138925 +B 562 3141426 +B 562 3141427 +E 93715 3142153 +E 93715 3142154 +E 93715 3142155 +E 93715 3142156 +E 93715 3142157 +E 93715 3142158 +B 562 3142449 +B 562 3144794 +B 562 3144795 +B 562 3144796 +B 562 3144797 +B 562 3149201 +B 562 3151642 +B 562 3157965 +B 562 3157966 +B 562 3157967 +B 562 3157968 +B 562 3158621 +B 562 3158622 +B 562 3158623 +B 562 3162779 +B 562 3162780 +B 562 3162781 +B 562 3229825 +B 562 3230391 +E 882735 3234396 +B 562 3239392 +B 562 3239393 +B 562 3245755 +B 562 3294366 +B 562 3317308 +B 562 3317309 diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/input/division.dmp b/scripts/biomedical/NCBI_Taxonomy/test_data/input/division.dmp new file mode 100644 index 0000000000..9b29541ae0 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/input/division.dmp @@ -0,0 +1,12 @@ +0 | BCT | Bacteria | | +1 | INV | Invertebrates | | +2 | MAM | Mammals | | +3 | PHG | Phages | | +4 | PLN | Plants and Fungi | | +5 | PRI | Primates | | +6 | ROD | Rodents | | +7 | SYN | Synthetic and Chimeric | | +8 | UNA | Unassigned | No species nodes should inherit this division assignment | +9 | VRL | Viruses | | +10 | VRT | Vertebrates | | +11 | ENV | Environmental samples | Anonymous sequences cloned directly from the environment | diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/input/host.dmp b/scripts/biomedical/NCBI_Taxonomy/test_data/input/host.dmp new file mode 100644 index 0000000000..c789cfadab --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/input/host.dmp @@ -0,0 +1,24 @@ +562 | bacteria,vertebrates | +10298 | human,vertebrates | +10325 | human,vertebrates | +10326 | vertebrates | +10331 | vertebrates | +10335 | human,vertebrates | +10376 | human,vertebrates | +10390 | vertebrates | +10401 | vertebrates | +10995 | vertebrates | +12305 | land plants | +12657 | vertebrates | +33708 | vertebrates | +35246 | vertebrates | +35252 | vertebrates | +37108 | vertebrates | +39944 | vertebrates | +47929 | vertebrates | +106331 | vertebrates | +154334 | vertebrates | +188763 | vertebrates | +1048219 | vertebrates | +1048220 | vertebrates | +1048243 | vertebrates | diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/input/names.dmp b/scripts/biomedical/NCBI_Taxonomy/test_data/input/names.dmp new file mode 100644 index 0000000000..75791b3b93 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/input/names.dmp @@ -0,0 +1,20733 @@ +561 | Escherichia Castellani and Chalmers 1919 | | authority | +561 | Escherichia | | scientific name | +562 | Achromobacter sp. ATCC 35328 | | includes | +562 | "Bacillus coli" Migula 1895 | | authority | +562 | Bacillus coli | | synonym | +562 | bacterium 10a | | includes | +562 | "Bacterium coli commune" Escherich 1885 | | authority | +562 | Bacterium coli commune | | synonym | +562 | "Bacterium coli" (Migula 1895) Lehmann and Neumann 1896 | | authority | +562 | Bacterium coli | | synonym | +562 | bacterium E3 | | includes | +562 | E. coli | | common name | +562 | Enterococcus coli | | synonym | +562 | Escherichia coli (Migula 1895) Castellani and Chalmers 1919 (Approved Lists 1980) | | authority | +562 | Escherichia coli | | scientific name | +562 | Escherichia/Shigella coli | | equivalent name | +562 | Escherichia sp. 3_2_53FAA | | includes | +562 | Escherichia sp. MAR | | includes | +786 | agent of rickettsialpox | | genbank common name | +786 | "Dermacentroxenus murinus" Kulagin 1951 | | authority | +786 | Dermacentroxenus murinus | | synonym | +786 | Gamasoxenus muris | | synonym | +786 | "Gamasoxenus muris" Zhdanov 1953 | | authority | +786 | Rickettsia akari Huebner et al. 1946 | | authority | +786 | Rickettsia akari | | scientific name | +786 | rickettsialpox | | common name | +950 | Ehrlichia risticii Holland et al. 1985 | | authority | +950 | Ehrlichia risticii | | synonym | +950 | equine monocytic ehrlichiosis agent | | common name | +950 | Neorickettsia risticii (Holland et al. 1985) Dumler et al. 2001 | | authority | +950 | Neorickettsia risticii | | scientific name | +950 | Potomac horse fever agent | | genbank common name | +1117 | blue-green algae | | genbank common name | +1117 | blue-green bacteria | | common name | +1117 | cyanobacteria | | blast name | +1117 | "Cyanobacteria" (ex Stanier 1974) Cavalier-Smith 2002 | | authority | +1117 | Cyanobacteria | | synonym | +1117 | Cyanobacteriota Oren et al. 2022 | | authority | +1117 | Cyanobacteriota | | scientific name | +1117 | Cyanophycota | | synonym | +1117 | Cyanophyta | | synonym | +1117 | cyanophytes | | common name | +1117 | Oxygenic photosynthetic bacteria | | synonym | +1117 | Oxyphotobacteria | | synonym | +2706 | Citrus L., 1753 | | authority | +2706 | Citrus | | scientific name | +2706 | Eremocitrus | | includes | +2706 | Eremocitrus Swingle | | authority | +2706 | Fortunella | | includes | +2706 | Fortunella Swingle | | authority | +2706 | Microcitrus | | includes | +2706 | Microcitrus Swingle | | authority | +2711 | apfelsine | | common name | +2711 | Citrus sinensis (L.) Osbeck, 1765 | | authority | +2711 | Citrus sinensis | | scientific name | +2711 | Citrus x sinensis | | synonym | +2711 | naranja | | common name | +2711 | navel orange | | common name | +2711 | sweet orange | | genbank common name | +2711 | Valencia orange | | common name | +2830 | algae | algae | in-part | +2830 | Chromophyta | Chromophyta | in-part | +2830 | coccolithophorids | | common name | +2830 | Haptophyceae | | synonym | +2830 | Haptophyta Hibberd, 1976 | | authority | +2830 | Haptophyta | | scientific name | +2830 | haptophytes | haptophytes | blast name | +2830 | haptophytes | haptophytes | genbank common name | +2830 | Prymnesiophyta | | synonym | +2864 | algae | algae | in-part | +2864 | Chromophyta | Chromophyta | in-part | +2864 | Dinoflagellata | | synonym | +2864 | dinoflagellates | dinoflagellates | blast name | +2864 | dinoflagellates | dinoflagellates | genbank common name | +2864 | Dinophyceae Fritsch, 1927 | | authority | +2864 | Dinophyceae | | scientific name | +2864 | Dinophycidae | | synonym | +2864 | Dinophyta | | synonym | +2864 | dinophytes | | common name | +2864 | Pyrrhophyta | | synonym | +2864 | Pyrrophyta | | synonym | +3035 | algae | algae | in-part | +3035 | Euglenida Buetschli 1884 | | authority | +3035 | Euglenida | | scientific name | +3035 | euglenids | | genbank common name | +3035 | Euglenoida | | synonym | +3035 | euglenoids | | blast name | +3035 | Euglenophyta | | synonym | +3035 | euglenophytes | | common name | +3193 | Embryophyta | | scientific name | +3193 | higher plants | | common name | +3193 | land plants | land plants | blast name | +3193 | land plants | land plants | common name | +3193 | plants | | common name | +3195 | bryophytes | bryophytes | in-part | +3195 | Hepaticae | | synonym | +3195 | Hepaticopsida | | synonym | +3195 | hepatics | | common name | +3195 | liverwort | liverwort | common name | +3195 | liverworts | liverworts | blast name | +3195 | liverworts | liverworts | genbank common name | +3195 | Marchantiophyta | | scientific name | +3195 | Marchantiophyta Stotler & Crand.-Stotl., 2000 | | authority | +3310 | Ginkgo L. | | authority | +3310 | Ginkgo | | scientific name | +3311 | Ginkgo biloba f. epiphylla | | synonym | +3311 | Ginkgo biloba L., 1771 | | authority | +3311 | Ginkgo biloba | | scientific name | +3311 | Ginkgo biloba var. epiphylla | | synonym | +3311 | ginkgo | | common name | +3311 | maidenhair tree | | genbank common name | +3350 | green pine | | common name | +3350 | Japanese black pine | | genbank common name | +3350 | Pinus thunbergiana | | synonym | +3350 | Pinus thunbergii Parl., 1868 | | authority | +3350 | Pinus thunbergii | | scientific name | +3445 | buttercups | | genbank common name | +3445 | Ranunculus L., 1753 | | authority | +3445 | Ranunculus | | scientific name | +3447 | cmmon buttercup | | common name | +3447 | Ranunculus acer | | synonym | +3447 | Ranunculus acris L., 1753 | | authority | +3447 | Ranunculus acris | | scientific name | +3447 | tall buttercup | | genbank common name | +3464 | Capnoides sempervirens Borkh., 1797 | | authority | +3464 | Capnoides sempervirens | | scientific name | +3464 | Corydalis glauca Pursh | | authority | +3464 | Corydalis glauca | | synonym | +3464 | Corydalis sempervirens (L.) Pers. | | authority | +3464 | Corydalis sempervirens | | synonym | +3464 | pink corydalis | | genbank common name | +3464 | rock harlequin | | common name | +3484 | Humulus L., 1753 | | authority | +3484 | Humulus | | scientific name | +3485 | Humulus japonicus | | scientific name | +3485 | Humulus japonicus Siebold & Zucc., 1846 | | authority | +3485 | Humulus scandens auct. | | synonym | +3485 | Japanese hop | | genbank common name | +3485 | kana-mugura | | common name | +3504 | Betula L., 1753 | | authority | +3504 | Betula | | scientific name | +3504 | birches | | common name | +3505 | Betula pendula Roth, 1788 | | authority | +3505 | Betula pendula | | scientific name | +3505 | Betula verrucosa Ehrh. | | authority | +3505 | Betula verrucosa | | synonym | +3505 | European white birch | | genbank common name | +3505 | white birch | | common name | +3511 | Quercus L. | | authority | +3511 | Quercus | | scientific name | +3512 | northern red oak | | genbank common name | +3512 | Quercus borealis Michx. | | authority | +3512 | Quercus borealis | | synonym | +3512 | Quercus rubra L., 1753 | | authority | +3512 | Quercus rubra | | scientific name | +3512 | red oak | | common name | +3526 | Phytolacca L., 1753 | | authority | +3526 | Phytolacca | | scientific name | +3527 | American pokeweed | | genbank common name | +3527 | common pokeberry | | common name | +3527 | common pokeweed | | common name | +3527 | Phytolacca americana L., 1753 | | authority | +3527 | Phytolacca americana | | scientific name | +3527 | Phytolacca decandra L. | | authority | +3527 | Phytolacca decandra | | synonym | +3527 | red stem pokeweed | | common name | +3527 | Virginia poke | | common name | +3528 | food pokeberry | | common name | +3528 | food pokeweed | | genbank common name | +3528 | Indian pokeweed | | common name | +3528 | Phytolacca acinosa Roxb., 1832 | | authority | +3528 | Phytolacca acinosa | | scientific name | +3528 | Phytolacca esculenta | | synonym | +3528 | Phytolacca esculenta Van Houtte | | authority | +3528 | shang lu | | common name | +3560 | Chenopodium rubrum L. | | authority | +3560 | Chenopodium rubrum | | synonym | +3560 | Oxybasis rubra (L.) S.Fuentes, Uotila & Borsch, 2012 | | authority | +3560 | Oxybasis rubra | | scientific name | +3560 | pigweed | pigweed | common name | +3560 | red goosefoot | | genbank common name | +3564 | Amaranthus L., 1753 | | authority | +3564 | Amaranthus | | scientific name | +3616 | Fagopyrum Mill., 1754 | | authority | +3616 | Fagopyrum | | scientific name | +3616 | Parapteropyrum A.J.Li | | authority | +3616 | Parapteropyrum | | synonym | +3620 | Rheum L., 1753 | | authority | +3620 | Rheum | | scientific name | +3621 | garden rhubarb | | genbank common name | +3621 | Rheum rhabarbarum L., 1753 | | authority | +3621 | Rheum rhabarbarum | | scientific name | +3621 | Rheum x cultorum | | synonym | +3621 | Rheum x cultorum Thorsrud & Reisaeter, 1948 | | authority | +3621 | Rheum x hybridum Murray, 1775 | | authority | +3621 | Rheum x hybridum | | synonym | +3621 | Rheum x rhabarbarum | | equivalent name | +3621 | rhubarb | | common name | +3630 | Abutilon Mill., 1754 | | authority | +3630 | Abutilon | | scientific name | +3631 | Abutilon avicennae Gaertn. | | authority | +3631 | Abutilon avicennae | | synonym | +3631 | Abutilon theophrasti Medik., 1787 | | authority | +3631 | Abutilon theophrasti | | scientific name | +3631 | butterprint | | common name | +3631 | China jute | | genbank common name | +3631 | Indian mallow | | common name | +3631 | Sida tiliifolia Fisch. | | authority | +3631 | Sida tiliifolia | | synonym | +3631 | velvetleaf | | common name | +3633 | Gossypium L., 1753 | | authority | +3633 | Gossypium | | scientific name | +3635 | American cotton | | common name | +3635 | American upland cotton | | common name | +3635 | cotton | | genbank common name | +3635 | Gossypium hirsutum L., 1763 | | authority | +3635 | Gossypium hirsutum | | scientific name | +3635 | Gossypium hirsutum subsp. mexicanum | | synonym | +3635 | Gossypium hirsutum subsp. mexicanum (Tod.) Mauer | | authority | +3635 | Gossypium lanceolatum | | synonym | +3635 | Gossypium lanceolatum Tod. | | authority | +3635 | Gossypium purpurascens Poir. | | authority | +3635 | Gossypium purpurascens | | synonym | +3653 | Citrullus Schrad., 1836 | | authority | +3653 | Citrullus | | scientific name | +3654 | Citrullus battich Forssk. | | authority | +3654 | Citrullus battich | | synonym | +3654 | Citrullus lanatus | | scientific name | +3654 | Citrullus lanatus subsp. vulgaris (Schrad.) Fursa, 1972 | | authority | +3654 | Citrullus lanatus subsp. vulgaris | | synonym | +3654 | Citrullus lanatus (Thunb.) Matsum. & Nakai, 1916 | | authority | +3654 | Citrullus lanatus var. lanatus | | synonym | +3654 | Citrullus vulgaris Schrad. ex Eckl. & Zeyh. | | authority | +3654 | Citrullus vulgaris | | synonym | +3654 | Momordica lanata | | synonym | +3654 | Momordica lanata Thunb., 1959 | | authority | +3654 | watermelon | | genbank common name | +3654 | wild melon | | common name | +3657 | Cucumis melo Conomon Group | | equivalent name | +3657 | Cucumis melo subsp. agrestis var. conomon | | synonym | +3657 | Cucumis melo subsp. melo var. conomon | | synonym | +3657 | Cucumis melo var. conomon | | scientific name | +3657 | Cucumis melo var. conomon (Thunb.) Makino, 1902 | | authority | +3657 | Cucumis melo var. utilissimus | | synonym | +3657 | oriental pickling melon | | genbank common name | +3657 | snake cucumber | | common name | +3658 | cantaloupe | | genbank common name | +3658 | Cucumis melo Cantalupensis Group | | synonym | +3658 | Cucumis melo subsp. melo var. cantaloupensis | | synonym | +3658 | Cucumis melo subsp. melo var. cantalupensis | | synonym | +3658 | Cucumis melo subsp. melo var. cantalupo | | synonym | +3658 | Cucumis melo subsp. melo var. reticulatus | | synonym | +3658 | Cucumis melo var. cantalupensis Naudin, 1859, non Cucumis melo var. reticulatus Ser., 1828 | | authority | +3658 | Cucumis melo var. cantalupensis | | synonym | +3658 | Cucumis melo var. cantalupo Naudin, 1859, non Cucumis melo var. reticulatus Ser., 1828 | | authority | +3658 | Cucumis melo var. cantalupo | | scientific name | +3658 | Cucumis melo var. reticulatus Naudin, 1859 | | authority | +3658 | Cucumis melo var. reticulatus | | synonym | +3658 | netted muskmelon | | common name | +3658 | nutmeg melon | | common name | +3658 | Persian melo | | common name | +3667 | Lagenaria | | scientific name | +3667 | Lagenaria Ser., 1825 | | authority | +3668 | bottle gourd | | common name | +3668 | calabash | | common name | +3668 | Cucurbita lagenaria L. | | authority | +3668 | Cucurbita lagenaria | | synonym | +3668 | Cucurbita siceraria Molina, 1782 | | authority | +3668 | Cucurbita siceraria | | synonym | +3668 | Lagenaria leucantha Rusby | | authority | +3668 | Lagenaria leucantha | | synonym | +3668 | Lagenaria siceraria (Molina) Standl., 1930 | | authority | +3668 | Lagenaria siceraria | | scientific name | +3668 | Lagenaria vulgaris Ser. | | authority | +3668 | Lagenaria vulgaris | | synonym | +3668 | white-flowered gourd | | genbank common name | +3669 | Luffa Mill., 1754 | | authority | +3669 | Luffa | | scientific name | +3670 | dishcloth gourd | | common name | +3670 | loofa | | common name | +3670 | Luffa aegyptiaca Mill., 1768 | | authority | +3670 | Luffa aegyptiaca | | scientific name | +3670 | Luffa cylindrica M.Roem., 1768 | | synonym | +3670 | smooth loofah | | genbank common name | +3670 | sponge gourd | | common name | +3670 | vegetable sponge | | common name | +3689 | poplar | | common name | +3689 | poplars | | genbank common name | +3689 | poplar trees | | common name | +3689 | Populus L., 1753 | | authority | +3689 | Populus | | scientific name | +3694 | black cottonwood | | genbank common name | +3694 | Populus balsamifera subsp. trichocarpa | | synonym | +3694 | Populus balsamifera subsp. trichocarpa (Torr. & A.Gray) Brayshaw | | authority | +3694 | Populus trichocarpa | | scientific name | +3694 | Populus trichocarpa Torr. & A.Gray ex Hook., 1852 | | authority | +3694 | western balsam poplar | | common name | +3701 | Arabidopsis (DC.) Heynh., 1842 | | authority | +3701 | Arabidopsis | | scientific name | +3701 | Cardaminopsis Hayek | | authority | +3701 | Cardaminopsis | | synonym | +3702 | Arabidopsis thaliana (L.) Heynh., 1842 | | authority | +3702 | Arabidopsis thaliana | | scientific name | +3702 | Arabis thaliana L., 1753 | | authority | +3702 | Arabis thaliana | | synonym | +3702 | mouse-ear cress | | common name | +3702 | thale-cress | | common name | +3702 | thale cress | | genbank common name | +3711 | Brassica rapa L., 1753 | | authority | +3711 | Brassica rapa | | scientific name | +3711 | field mustard | | genbank common name | +3712 | Brassica oleracea L., 1753 | | authority | +3712 | Brassica oleracea | | scientific name | +3712 | wild cabbage | | genbank common name | +3713 | Brassica oleracea subsp. acephala | | synonym | +3713 | Brassica oleracea var. acephala DC. | | authority | +3713 | Brassica oleracea var. acephala | | synonym | +3713 | Brassica oleracea var. viridis L., 1753 | | authority | +3713 | Brassica oleracea var. viridis | | scientific name | +3713 | collards | | common name | +3713 | fodder kale | | common name | +3713 | kale | | genbank common name | +3714 | Brassica alboglabra L.H.Bailey, 1922 | | authority | +3714 | Brassica alboglabra | | synonym | +3714 | Brassica oleracea var. alboglabra (L.H.Bailey) Musil, 1948 | | authority | +3714 | Brassica oleracea var. alboglabra | | scientific name | +3714 | Chinese broccoli | | common name | +3714 | Chinese kale | | genbank common name | +3726 | radish | | genbank common name | +3726 | Raphanus sativus L., 1753 | | authority | +3726 | Raphanus sativus | | scientific name | +3727 | Sinapis L. | | authority | +3727 | Sinapis | | scientific name | +3728 | bai jie | | common name | +3728 | Brassica hirta Moench. | | authority | +3728 | Brassica hirta | | synonym | +3728 | Sinapis alba L., 1753 | | authority | +3728 | Sinapis alba | | scientific name | +3728 | white mustard | | genbank common name | +3728 | yellow mustard | | common name | +3734 | Moringa Adans., 1763 | | authority | +3734 | Moringa | | scientific name | +3735 | horseradish tree | | genbank common name | +3735 | maranga | | common name | +3735 | Moringa oleifera Lam., 1785 | | authority | +3735 | Moringa oleifera | | scientific name | +3735 | Moringa pterygosperma Gaertn. | | authority | +3735 | Moringa pterygosperma | | synonym | +3749 | Malus Mill., 1754 | | authority | +3749 | Malus | | scientific name | +3750 | apple | | genbank common name | +3750 | apple tree | | common name | +3750 | cultivated apple | | common name | +3750 | Malus communis Desf. | | authority | +3750 | Malus communis | | synonym | +3750 | Malus domestica | | scientific name | +3750 | Malus domestica (Suckow) Borkh., 1803 | | authority | +3750 | Malus pumila auct. | | synonym | +3750 | Malus pumila var. domestica (Borkh.) C.K.Schneid. | | authority | +3750 | Malus pumila var. domestica | | synonym | +3750 | Malus sylvestris var. domestica (Borkh.) Mansf. | | authority | +3750 | Malus sylvestris var. domestica | | synonym | +3750 | Malus x domestica | | synonym | +3750 | Pyrus malus L. | | authority | +3750 | Pyrus malus | | synonym | +3750 | Pyrus malus var. domestica Suckow, 1786 | | authority | +3750 | Pyrus malus var. domestica | | synonym | +3754 | Amygdalus L., 1753 | | authority | +3754 | Amygdalus | | synonym | +3754 | Armeniaca Scop., 1754 | | authority | +3754 | Armeniaca | | synonym | +3754 | Cerasus Mill., 1754 | | authority | +3754 | Cerasus | | synonym | +3754 | Maddenia Hook.f. & Thomson, 1854 | | authority | +3754 | Maddenia | | synonym | +3754 | Prunus L., 1753 | | authority | +3754 | Prunus | | scientific name | +3754 | Prunus subg. Amygdalus (L.) Focke | | authority | +3754 | Prunus subg. Amygdalus | | synonym | +3754 | Prunus subg. Armeniaca (Scop.) Nakai | | authority | +3754 | Prunus subg. Armeniaca | | synonym | +3755 | almond | | genbank common name | +3755 | Amygdalus communis L., 1753 | | authority | +3755 | Amygdalus communis | | synonym | +3755 | Amygdalus dulcis Mill., 1768 | | authority | +3755 | Amygdalus dulcis | | synonym | +3755 | Prunus amygdalus Batsch, 1801 | | authority | +3755 | Prunus amygdalus | | synonym | +3755 | Prunus communis (L.) Arcang., 1882 | | authority | +3755 | Prunus communis | | synonym | +3755 | Prunus dulcis (Mill.) D.A.Webb, 1967 | | authority | +3755 | Prunus dulcis | | scientific name | +3755 | Prunus dulcis var. sativa | | synonym | +3755 | sweet almond | | common name | +3766 | pears | | genbank common name | +3766 | Pyrus L., 1753 | | authority | +3766 | Pyrus | | scientific name | +3815 | Abrus | Abrus | scientific name | +3815 | Abrus Adans., 1763 | | authority | +3816 | Abrus cyaneus R.Vig., 1951 | | authority | +3816 | Abrus cyaneus | | synonym | +3816 | Abrus precatorius L., 1767 | | authority | +3816 | Abrus precatorius | | scientific name | +3816 | crab's eye | | common name | +3816 | crab's-eye | | common name | +3816 | Indian licorice | | genbank common name | +3816 | rosary pea | | common name | +3847 | Glycine max (L.) Merr., 1917 | | authority | +3847 | Glycine max | | scientific name | +3847 | Phaseolus max L., 1753 | | authority | +3847 | Phaseolus max | | synonym | +3847 | soybean | | genbank common name | +3847 | soybeans | | common name | +3865 | Leucaena Benth. | | authority | +3865 | Leucaena | | scientific name | +3866 | cassie | | common name | +3866 | granadillo bobo | | common name | +3866 | ipil ipil | | common name | +3866 | jumbie bean | | common name | +3866 | jump-and-go | | common name | +3866 | Leucaena glauca | | synonym | +3866 | Leucaena leucocephala de Wit, 1961 | | authority | +3866 | Leucaena leucocephala | | scientific name | +3866 | white popinac | | genbank common name | +3869 | Lupinus L., 1753 | | authority | +3869 | Lupinus | | scientific name | +3878 | Medicago falcata L., 1753 | | authority | +3878 | Medicago falcata subsp. falcata | | includes | +3878 | Medicago falcata | | synonym | +3878 | Medicago sativa subsp. falcata (L.) Arcang., 1882 | | authority | +3878 | Medicago sativa subsp. falcata | | scientific name | +3878 | sickle alfalfa | | common name | +3878 | sickle medic | | genbank common name | +3878 | yellow-flower alfalfa | | common name | +3878 | yellow lucerne | | common name | +3879 | alfalfa | | common name | +3879 | lucerne | | common name | +3879 | Medicago sativa L., 1753 | | authority | +3879 | Medicago sativa | | scientific name | +3879 | Medicago sativa subsp. sativa | | synonym | +3893 | Dolichos lobatus Willd., 1802 | | synonym | +3893 | kudzu | | common name | +3893 | kudzu vine | | genbank common name | +3893 | Pueraria lobata subsp. lobata | | synonym | +3893 | Pueraria lobata | | synonym | +3893 | Pueraria lobata var. chinensis (Benth.) Ohwi, 1947 | | authority | +3893 | Pueraria lobata var. chinensis | | synonym | +3893 | Pueraria lobata (Willd.) Ohwi, 1947 | | authority | +3893 | Pueraria montana var. lobata | | scientific name | +3893 | Pueraria montana var. lobata (Willd.) Maesen & S.M.Almeida ex Sanjappa & Predeep, 1992 | | authority | +3901 | Ulex L., 1753 | | authority | +3901 | Ulex | | scientific name | +3902 | furze | | genbank common name | +3902 | gorse | | common name | +3902 | Ulex europaeus L., 1753 | | authority | +3902 | Ulex europaeus | | scientific name | +3902 | Ulex europeus | | synonym | +3913 | Vigna Savi | | authority | +3913 | Vigna | | scientific name | +3914 | adzuki bean | | genbank common name | +3914 | azuki bean | | common name | +3914 | Phaseolus angularis | | synonym | +3914 | Vigna angularis Ohwi & H.Ohashi, 1969 | | authority | +3914 | Vigna angularis | | scientific name | +3915 | black gram | | genbank common name | +3915 | Phaseolus mungo L. | | authority | +3915 | Phaseolus mungo | | synonym | +3915 | urad dal | | common name | +3915 | urd-bean | | common name | +3915 | Vigna mungo Hepper, 1956 | | authority | +3915 | Vigna mungo | | scientific name | +3916 | golden gram | | common name | +3916 | green gram | | common name | +3916 | mung bean | mung bean | genbank common name | +3916 | Phaseolus aureus Roxb. | | authority | +3916 | Phaseolus aureus | | synonym | +3916 | Phaseolus radiatus L. | | authority | +3916 | Phaseolus radiatus | | synonym | +3916 | Vigna radiata var. radiata Roxb. | | authority | +3916 | Vigna radiata var. radiata | | scientific name | +3982 | Manihot Mill. | | authority | +3982 | Manihot | | scientific name | +3983 | cassava | | genbank common name | +3983 | Manihot esculenta Crantz, 1766 | | authority | +3983 | Manihot esculenta | | scientific name | +3983 | Manihot utilissima | | synonym | +3983 | manioc | | common name | +3983 | tapioca | | common name | +3983 | yuca | | common name | +3984 | Mercurialis L., 1753 | | authority | +3984 | Mercurialis | | scientific name | +3986 | annual mercury | | genbank common name | +3986 | herb mercury | | common name | +3986 | Mercurialis ambigua L.f., 1762 | | authority | +3986 | Mercurialis ambigua | | synonym | +3986 | Mercurialis annua L., 1753 | | authority | +3986 | Mercurialis annua | | scientific name | +4057 | Catharanthus G.Don, 1837 | | authority | +4057 | Catharanthus | | scientific name | +4058 | Catharanthus roseus G.Don, 1837 | | authority | +4058 | Catharanthus roseus | | scientific name | +4058 | chatas | | common name | +4058 | chula | | common name | +4058 | Madagascar periwinkle | | genbank common name | +4058 | old-maid | | common name | +4058 | rosy periwinkle | | common name | +4058 | Vinca rosea L. | | authority | +4058 | Vinca rosea | | synonym | +4059 | Rauvolfia L., 1753 | | authority | +4059 | Rauvolfia | | scientific name | +4060 | devilpepper | | common name | +4060 | Rauvolfia serpentina (L.) Benth. ex Kurz, 1877 | | authority | +4060 | Rauvolfia serpentina | | scientific name | +4060 | Rauwolfia serpentina | | synonym | +4060 | serpentwood | | genbank common name | +4074 | Datura L., 1753 | | authority | +4074 | Datura | | scientific name | +4075 | Datura innoxia | | synonym | +4075 | Datura inoxia Mill. | | authority | +4075 | Datura inoxia | | scientific name | +4075 | Datura meteloides Dunal | | authority | +4075 | Datura meteloides | | includes | +4075 | downy thornapple | | common name | +4075 | sacred datura | | genbank common name | +4107 | Cyphomandra | | includes | +4107 | Cyphomandra Mart. ex Sendtn. | | authority | +4107 | Solanum L. | | authority | +4107 | Solanum | | scientific name | +4113 | potatoes | | common name | +4113 | potato | | genbank common name | +4113 | Solanum aracc-papa | | synonym | +4113 | Solanum tuberosum L., 1753 | | authority | +4113 | Solanum tuberosum | | scientific name | +4113 | Solanum tuberosum subsp. tuberosum | | includes | +4119 | Ipomoea L. | | authority | +4119 | Ipomoea | | scientific name | +4119 | Pharbitis Choisy | | authority | +4119 | Pharbitis | | synonym | +4120 | batate | | common name | +4120 | Ipomoea batatas (L.) Lam., 1793 | | authority | +4120 | Ipomoea batatas | | scientific name | +4120 | Ipomoea batatas var. edulis | | synonym | +4120 | Ipomoea tiliacea auct. non (Willd.) Choisy | | synonym | +4120 | sweet potato | | genbank common name | +4150 | Antirrhinum L. | | authority | +4150 | Antirrhinum | | scientific name | +4150 | snapdragons | | genbank common name | +4151 | Antirrhinum majus L., 1753 | | authority | +4151 | Antirrhinum majus | | scientific name | +4151 | Antirrhinum sp. 'Floral Carpet Mix' | | includes | +4151 | garden snapdragon | | common name | +4151 | snapdragon | | genbank common name | +4155 | common monkey flower | | common name | +4155 | Erythranthe guttata G.L.Nesom, 2012 | | authority | +4155 | Erythranthe guttata | | scientific name | +4155 | Mimulus guttatus Fisch. ex DC. | | authority | +4155 | Mimulus guttatus subsp. guttatus | | synonym | +4155 | Mimulus guttatus | | synonym | +4155 | spotted monkey flower | | genbank common name | +4155 | yellow monkey flower | | common name | +4181 | Sesamum L. | | authority | +4181 | Sesamum | | scientific name | +4182 | beniseed | | common name | +4182 | gingelly | | common name | +4182 | hu ma | | common name | +4182 | koba | | common name | +4182 | sesame | | genbank common name | +4182 | Sesamum indicum L., 1753 | | authority | +4182 | Sesamum indicum | | scientific name | +4182 | Sesamum orientale L. | | authority | +4182 | Sesamum orientale | | synonym | +4211 | Ambrosia L., 1753 | | authority | +4211 | Ambrosia | | scientific name | +4211 | ragweeds | | common name | +4212 | Ambrosia artemisiifolia L., 1753 | | authority | +4212 | Ambrosia artemisiifolia | | scientific name | +4212 | Ambrosia paniculata Michx., 1803 | | authority | +4212 | Ambrosia paniculata | | synonym | +4212 | annual ragweed | | common name | +4212 | common ragweed | | genbank common name | +4212 | short ragweed | | common name | +4229 | Guizotia Cass. | | authority | +4229 | Guizotia | | scientific name | +4230 | Guizotia abyssinica (L.f.) Cass., 1829 | | authority | +4230 | Guizotia abyssinica | | scientific name | +4230 | niger | | common name | +4230 | Niger seed | | genbank common name | +4230 | Polymnia abyssinica L.f., 1782 | | authority | +4230 | Polymnia abyssinica | | synonym | +4230 | ramtil | | common name | +4230 | ramtilla | | common name | +4230 | werinnua | | common name | +4398 | Liquidambar L., 1753 | | authority | +4398 | Liquidambar | | scientific name | +4398 | sweet gum trees | | genbank common name | +4400 | American sweet gum | | common name | +4400 | Liquidambar macrophylla Oerst. | | authority | +4400 | Liquidambar macrophylla | | synonym | +4400 | Liquidambar styraciflua L., 1753 | | authority | +4400 | Liquidambar styraciflua | | scientific name | +4400 | sweet gum | | genbank common name | +4415 | Nuphar | | scientific name | +4415 | Nuphar Sm., 1809 | | authority | +4455 | Alocasia (Schott) G.Don | | authority | +4455 | Alocasia | | scientific name | +4456 | Alocasia macrorrhiza | | synonym | +4456 | Alocasia macrorrhizos (L.) G.Don, 1839 | | authority | +4456 | Alocasia macrorrhizos | | scientific name | +4456 | ape | ape | common name | +4456 | cunjevoi | | common name | +4456 | giant taro | | genbank common name | +4456 | malanga | malanga | common name | +4459 | Colocasia | Colocasia | scientific name | +4460 | cocoyam | | common name | +4460 | Colocasia esculenta (L.) Schott, 1832 | | authority | +4460 | Colocasia esculenta | | scientific name | +4460 | Colocasia esculenta var. esculenta | | synonym | +4460 | dasheen | | common name | +4460 | eddo | | common name | +4460 | elephant's ear | | common name | +4460 | kalo | | common name | +4460 | malanga | malanga | common name | +4460 | taro | | genbank common name | +4501 | Anisantha K.Koch, 1848 | | authority | +4501 | Anisantha | | synonym | +4501 | Bromus L., 1753 | | authority | +4501 | Bromus | | scientific name | +4513 | barley | | common name | +4513 | Hordeum vulgare L., 1753 | | authority | +4513 | Hordeum vulgare | | scientific name | +4530 | Asian cultivated rice | | genbank common name | +4530 | Oryza sativa L., 1753 | | authority | +4530 | Oryza sativa | | scientific name | +4530 | red rice | red rice | common name | +4530 | rice | | common name | +4557 | Hemisorghum C.E.Hubb. ex Bor, 1960 | | authority | +4557 | Hemisorghum | | synonym | +4557 | Sorghum Moench, 1794 | | authority | +4557 | Sorghum | | scientific name | +4558 | Andropogon sorghum (L.) Brot. | | authority | +4558 | Andropogon sorghum | | synonym | +4558 | broomcorn | | common name | +4558 | milo | | common name | +4558 | Sorghum bicolor (L.) Moench, 1794 | | authority | +4558 | Sorghum bicolor | | scientific name | +4558 | Sorghum bicolor subsp. bicolor | | synonym | +4558 | sorghum | | genbank common name | +4558 | Sorghum nervosum Besser ex Schult. | | authority | +4558 | Sorghum nervosum | | synonym | +4558 | Sorghum saccharatum (L.) Moench | | authority | +4558 | Sorghum saccharatum | | synonym | +4558 | Sorghum vulgare Pers. | | authority | +4558 | Sorghum vulgare | | synonym | +4564 | Triticum L., 1753 | | authority | +4564 | Triticum | | scientific name | +4565 | bread wheat | | genbank common name | +4565 | Canadian hard winter wheat | | common name | +4565 | common wheat | | common name | +4565 | Triticum aestivum L., 1753 | | authority | +4565 | Triticum aestivum | | scientific name | +4565 | Triticum aestivum subsp. aestivum | | synonym | +4565 | Triticum vulgare | | synonym | +4565 | Triticum vulgare Vill., 1787 | | authority | +4565 | wheat | | common name | +4577 | maize | maize | common name | +4577 | Zea mays L., 1753 | | authority | +4577 | Zea mays | | scientific name | +4577 | Zea mays var. japonica | | synonym | +4583 | Cenchrus L. | | authority | +4583 | Cenchrus | | scientific name | +4640 | Musa | | scientific name | +4641 | banana | banana | common name | +4641 | dessert bananas | | common name | +4641 | dwarf banana | | genbank common name | +4641 | Musa AA Group | | synonym | +4641 | Musa acuminata AA Group | | synonym | +4641 | Musa acuminata Colla, 1820 | | authority | +4641 | Musa acuminata | | scientific name | +4641 | Musa nana | | synonym | +4641 | Musa sp. 'Pisang lilin' | | includes | +4641 | sweet banana | | common name | +4701 | Fortunatia | | includes | +4701 | Scilla L. | | authority | +4701 | Scilla | | scientific name | +4783 | Peronophythora | | includes | +4783 | Phytophthora de Bary, 1876 | | authority | +4783 | Phytophthora | | scientific name | +4787 | Botrytis infestans Mont., 1845 | | authority | +4787 | Botrytis infestans | | synonym | +4787 | Phytophthora infestans (Mont.) de Bary, 1876 | | authority | +4787 | Phytophthora infestans | | scientific name | +4787 | potato late blight agent | | genbank common name | +4787 | potato late blight | | common name | +4787 | potato late blight fungus | | common name | +4792 | black shank of tobacco agent | | genbank common name | +4792 | brown rot and root rot of citrus agent | | common name | +4792 | buckeye rot agent | | common name | +4792 | Phytophthora nicotianae Breda de Haan, 1896 | | authority | +4792 | Phytophthora nicotianae | | scientific name | +4792 | Phytophthora nicotianae var. parasitica (Dastur) G.M. Waterh., 1963 | | authority | +4792 | Phytophthora nicotianae var. parasitica | | synonym | +4792 | Phytophthora parasitica Dastur, 1913 | | authority | +4792 | Phytophthora parasitica | | synonym | +4792 | Phytophthora parasitica var. nicotianae | | synonym | +4792 | Phytophthora parasitica var. nicotianae Tucker, 1931 | | authority | +4792 | Phytophthora parasitica var. piperina Dastur, 1935 | | authority | +4792 | Phytophthora parasitica var. piperina | | synonym | +4792 | pineapple heart rot agent | | common name | +4792 | pistachio foot rot agent | | common name | +4792 | sesame blight agent | | common name | +4930 | Pachytichospora | | synonym | +4930 | Saccharomyces | | scientific name | +4932 | baker's yeast | | common name | +4932 | brewer's yeast | | genbank common name | +4932 | Candida robusta | | synonym | +4932 | Mycoderma cerevisiae Desm., 1827 | | authority | +4932 | Mycoderma cerevisiae | | synonym | +4932 | Saccharomyces capensis | | synonym | +4932 | Saccharomyces cerevisiae (Desm.) Meyen, 1838 | | authority | +4932 | Saccharomyces cerevisiae | | scientific name | +4932 | Saccharomyces cerevisiae 'var. diastaticus' | | equivalent name | +4932 | Saccharomyces diastaticus J. Andrews & R.B. Gilliland ex Van der Walt, 1965 | | authority | +4932 | Saccharomyces diastaticus | | synonym | +4932 | Saccharomyces italicus | | synonym | +4932 | Saccharomyces oviformis | | synonym | +4932 | Saccharomyces sp. Af145-1-1 | | includes | +4932 | Saccharomyces uvarum var. melibiosus | | synonym | +5022 | blackleg of canola fungus | | common name | +5022 | blackleg of crucifers fungus | | common name | +5022 | blackleg of rapeseed fungus | | genbank common name | +5022 | Leptosphaeria maculans Cesati & De Notaris, 1863 | | authority | +5022 | Leptosphaeria maculans | | synonym | +5022 | Leptosphaeria sp. JW-2011m | | includes | +5022 | Phoma lingam | | synonym | +5022 | Phoma lingam (Tode) Desm., 1849 | | authority | +5022 | Plenodomus lingam | | scientific name | +5022 | Plenodomus lingam (Tode) Hohn., 1911 | | authority | +5022 | Plenodomus rabenhorstii Preuss, 1851 | | authority | +5022 | Plenodomus rabenhorstii | | synonym | +5022 | Sphaeria lingam | | synonym | +5022 | Sphaeria lingam Tode, 1791 | | authority | +5100 | Amorphotheca Parbery, 1969 | | authority | +5100 | Amorphotheca | | scientific name | +5101 | Amorphotheca resinae Parberry 1969 | | authority | +5101 | Amorphotheca resinae Parbery, 1969 | | authority | +5101 | Amorphotheca resinae | | scientific name | +5101 | Cladosporium avellaneum G.A. de Vries 1952 | | authority | +5101 | Cladosporium avellaneum | | synonym | +5101 | Cladosporium resinae f. avellaneum | | synonym | +5101 | Cladosporium resina | | synonym | +5101 | Cladosporium sp. KUC3009 | | includes | +5101 | creosote fungus | | genbank common name | +5101 | Hormoconis resinae | | synonym | +5101 | Hormodendrum resinae | | synonym | +5101 | kerosene fungus | | common name | +5230 | Auricularia Bull., 1780 | | authority | +5230 | Auricularia | | scientific name | +5320 | Pleurotus (Fr.) P. Kumm., 1871 | | authority | +5320 | Pleurotus | | scientific name | +5322 | Agaricus ostreatus Jacq., 1774 | | authority | +5322 | Agaricus ostreatus | | synonym | +5322 | oyster mushroom | | genbank common name | +5322 | Pleurotus ostreatus (Jacq.) P. Kumm., 1871 | | authority | +5322 | Pleurotus ostreatus | | scientific name | +5322 | shimeji | | common name | +6115 | Metridium | | scientific name | +6116 | brown sea anemone | | genbank common name | +6116 | frilled sea anemone | | common name | +6116 | Metridium senile | | scientific name | +6116 | Metridium sp. USNM IZ 1503343 | | includes | +6116 | Priapus senilis Linnaeus, 1761 | | authority | +6116 | Priapus senilis | | synonym | +6202 | Taenia | | scientific name | +6204 | Cysticercus cellulosae | | synonym | +6204 | pig tapeworm | | common name | +6204 | pork tapeworm | | genbank common name | +6204 | Taenia solium Linnaeus, 1758 | | authority | +6204 | Taenia solium | | scientific name | +6220 | Cerebratulus | | scientific name | +6221 | Cerebratulus lacteus (Leidy, 1851) | | authority | +6221 | Cerebratulus lacteus | | scientific name | +6221 | Meckelia lactea Leidy, 1851 | | authority | +6221 | Meckelia lactea | | synonym | +6221 | Micrura lactea | | synonym | +6221 | milky ribbon worm | | common name | +6221 | milky ribbon-worm | | genbank common name | +6264 | Toxocara | | scientific name | +6266 | cat roundworm | | genbank common name | +6266 | feline roundworm | | common name | +6266 | Toxocara cati | | scientific name | +6266 | Toxocara mystax | | synonym | +6266 | Toxocara mystax (Zeder, 1800) | | authority | +6270 | Pseudoterranova | | scientific name | +6271 | codworm | | genbank common name | +6271 | Phocanema decipiens | | synonym | +6271 | Pseudoterranova decipiens (Krabbe, 1878) | | authority | +6271 | Pseudoterranova decipiens | | scientific name | +6271 | sealworm | | common name | +6286 | Dirofilaria | | scientific name | +6287 | canine heartworm nematode | | common name | +6287 | Dirofilaria (Dirofilaria) immitis | | synonym | +6287 | Dirofilaria immitis (Leidy, 1856) | | authority | +6287 | Dirofilaria immitis | | scientific name | +6287 | dog heartworm nematode | | genbank common name | +6324 | Bursaphelenchus | | scientific name | +6324 | pine wood nematodes | | genbank common name | +6326 | Aphelenchoides xylophilus Steiner & Buhrer, 1934 | | authority | +6326 | Aphelenchoides xylophilus | | synonym | +6326 | Bursaphelenchus xylophilus | | scientific name | +6326 | Bursaphelenchus xylophilus (Steiner & Buhrer, 1934) | | authority | +6326 | Bursaphelenchus xylophilus (Steiner & Buhrer, 1934) Nickle, 1970 | | authority | +6326 | pine wilt nematode | | common name | +6326 | pinewood nematode | | common name | +6326 | pine wood nematode | | genbank common name | +6343 | Arenicola | | scientific name | +6344 | Arenicola marina (Linnaeus, 1758) | | authority | +6344 | Arenicola marina | | scientific name | +6344 | lugworm | | genbank common name | +6344 | Lumbricus marinus Linnaeus, 1758 | | authority | +6344 | Lumbricus marinus | | synonym | +6344 | rock worm | | common name | +6393 | Eisenia | Eisenia | scientific name | +6396 | brandling worm | | common name | +6396 | common brandling worm | | genbank common name | +6396 | common dung-worm | | common name | +6396 | Eisenia fetida (Savigny, 1826) | | authority | +6396 | Eisenia fetida | | scientific name | +6396 | Eisenia foetida | | synonym | +6396 | Eiseniella fetida | | synonym | +6396 | red wiggler worm | | common name | +6396 | redworm | | common name | +6396 | tiger worm | | common name | +6452 | Haliotis | | scientific name | +6454 | California red abalone | | common name | +6454 | Haliotis rufenscens | | synonym | +6454 | Haliotis rufescens | | scientific name | +6454 | Haliotis rufescens Swainson, 1822 | | authority | +6454 | red abalone | | genbank common name | +6467 | Chlorostoma | | synonym | +6467 | Tegula Lesson, 1835 | | authority | +6467 | Tegula | | scientific name | +6573 | ezo giant scallop | | common name | +6573 | Mizuhopecten yessoensis (Jay, 1956) | | authority | +6573 | Mizuhopecten yessoensis | | scientific name | +6573 | Patinopecten yessoensis | | synonym | +6573 | Patiopecten yessoensis | | synonym | +6573 | Pecten yessoensis Jay, 1857 | | authority | +6573 | Pecten yessoensis | | synonym | +6573 | Yesso scallop | | genbank common name | +6582 | Spisula | | scientific name | +6584 | Atlantic surf-clam | | common name | +6584 | Atlantic surf clam | | genbank common name | +6584 | Mactra solidissima Dillwyn, 1817 | | authority | +6584 | Mactra solidissima | | synonym | +6584 | Spisula solidissima | | scientific name | +6586 | Ensis | | scientific name | +6587 | Ensis minor (Chenu, 1843) | | authority | +6587 | Ensis minor | | scientific name | +6587 | Ensis siliqua minor Chenu, 1843 | | authority | +6587 | Ensis siliqua minor | | synonym | +6587 | jackknife clam | | common name | +6587 | minor jackknife clam | | genbank common name | +6587 | razor shell | | common name | +6593 | Macrocallista | | scientific name | +6594 | Macrocallista nimbosa | | scientific name | +6594 | sun-ray clam | | common name | +6594 | sunray clam | | genbank common name | +6594 | Venus nimbosa Lightfoot, 1786 | | authority | +6594 | Venus nimbosa | | synonym | +6630 | Nototodarus | | scientific name | +6687 | black tiger shrimp | | genbank common name | +6687 | giant tiger prawn | | common name | +6687 | Penaeus bubulus | | synonym | +6687 | Penaeus carinatus | | synonym | +6687 | Penaeus durbani | | synonym | +6687 | Penaeus monodon Fabricius, 1798 | | authority | +6687 | Penaeus monodon | | scientific name | +6687 | Penaeus (Penaeus) monodon | | synonym | +6687 | tiger prawn | | common name | +6689 | Litopenaeus vannamei (Boone, 1931) | | authority | +6689 | Litopenaeus vannamei | | synonym | +6689 | Pacific white shrimp | | genbank common name | +6689 | Penaeus (Litopenaeus) vannamei | | synonym | +6689 | Penaeus sp. AT-2008 | | includes | +6689 | Penaeus vannamei Boone, 1931 | | authority | +6689 | Penaeus vannamei | | scientific name | +6689 | white Pacific shrimp | | common name | +6689 | white shrimp | white shrimp | common name | +6714 | Astacus | | scientific name | +6717 | Astacus leptodactylus Eschscholtz, 1823 | | authority | +6717 | Astacus leptodactylus | | scientific name | +6717 | Astacus (Pontastacus) leptodactylus | | synonym | +6717 | narrow-clawed crayfish | | genbank common name | +6717 | narrow-fingered crayfish | | common name | +6717 | Pontastacus leptodactylus | | synonym | +6717 | Potamobius leptodactylus | | synonym | +6734 | Panulirus | | scientific name | +6740 | Paralithodes | | scientific name | +6741 | Kamchatka crab | | common name | +6741 | Maja camtschatica | | synonym | +6741 | Maja camtschatica Tilesius, 1815 | | authority | +6741 | Paralithodes camtschaticus | | scientific name | +6741 | Paralithodes camtschaticus (Tilesius, 1815) | | authority | +6741 | red king crab | | genbank common name | +6758 | Carcinus | | scientific name | +6759 | Cancer maenas Linnaeus, 1758 | | authority | +6759 | Cancer maenas | | synonym | +6759 | Carcinus maenas (Linnaeus, 1758) | | authority | +6759 | Carcinus maenas | | scientific name | +6759 | common shore crab | | common name | +6759 | green crab | | genbank common name | +6847 | Carcinoscorpius | | scientific name | +6848 | Carcinoscorpius rotundicauda | | scientific name | +6848 | Carcinoscorpius rotundicaudus | | synonym | +6848 | Limulus rotundicauda Latreille, 1802 | | authority | +6848 | Limulus rotundicauda | | synonym | +6848 | mangrove horseshoe crab | | common name | +6848 | Southeast Asian horseshoe crab | Southeast Asian horseshoe crab | genbank common name | +6851 | Tachypleus | | scientific name | +6852 | Chinese horseshoe crab | Chinese horseshoe crab | common name | +6852 | Limulus gigas Muller, 1785 | | authority | +6852 | Limulus gigas | | synonym | +6852 | Southeast Asian horseshoe crab | Southeast Asian horseshoe crab | genbank common name | +6852 | Tachypleus gigas (Muller, 1785) | | authority | +6852 | Tachypleus gigas | | scientific name | +6923 | black widows | | genbank common name | +6923 | Latrodectus | | scientific name | +6924 | black widow | black widow | genbank common name | +6924 | black widow spider | black widow spider | common name | +6924 | Lactrodectus schuchii | | synonym | +6924 | Latrodectus mactans Fabricius, 1775 | | authority | +6924 | Latrodectus mactans | | scientific name | +6924 | southern black widow | | common name | +6940 | Boophilus | | scientific name | +6940 | Fhipicephalus (Boophilus) | | synonym | +6940 | Rhipicephalus (Boophilus) | | synonym | +6941 | Boophilus microplus | | synonym | +6941 | cattle tick | | common name | +6941 | Rhipicephalus (Boophilus) microplus | | synonym | +6941 | Rhipicephalus microplus (Canestrini, 1888) | | authority | +6941 | Rhipicephalus microplus | | scientific name | +6941 | southern cattle tick | | genbank common name | +6944 | Ixodes | | scientific name | +6945 | blacklegged tick | | common name | +6945 | black-legged tick | | genbank common name | +6945 | deer tick | | common name | +6945 | Ixodes dammini | | synonym | +6945 | Ixodes scapularis Say, 1821 | | authority | +6945 | Ixodes scapularis | | scientific name | +6945 | Ixodes sp. DNAS-303-249710 | | includes | +6945 | shoulder tick | | common name | +6968 | Sympetrum | | scientific name | +7006 | Romalea | | scientific name | +7006 | Romalea Serville, 1831 | | authority | +7007 | Acridium micropterum | | synonym | +7007 | Dictyophorus guttatus | | synonym | +7007 | eastern lubber grasshopper | | genbank common name | +7007 | Gryllus guttatus Stoll, 1813 | | synonym | +7007 | lubber grasshopper | | common name | +7007 | Romalea guttata (Houttuyn, 1813) | | authority | +7007 | Romalea guttata (Stoll, 1813) | | authority | +7007 | Romalea guttata | | synonym | +7007 | Romalea microptera (Beauvois, 1817) | | authority | +7007 | Romalea microptera | | scientific name | +7007 | Romalea micropterum | | synonym | +7007 | Romalea reticulatus | | synonym | +7007 | southeastern lubber grasshopper | | common name | +7008 | Schistocerca | | scientific name | +7011 | gray bird locust | | common name | +7011 | Schistocerca nitens | | scientific name | +7011 | Schistocerca nitens (Thunberg, 1815) | | authority | +7011 | Schistocerca vaga | | synonym | +7011 | vagrant locust | | genbank common name | +7045 | Sitophilus | | scientific name | +7051 | genji firefly | | common name | +7051 | Japanese firefly | Japanese firefly | genbank common name | +7051 | Luciola cruciata Motschulsky, 1854 | | authority | +7051 | Luciola cruciata | | synonym | +7051 | Nipponoluciola cruciata (Motschulsky, 1854) | | authority | +7051 | Nipponoluciola cruciata | | scientific name | +7090 | Bombyx | | scientific name | +7091 | Bombyx mori Linnaeus, 1758 | | authority | +7091 | Bombyx mori | | scientific name | +7091 | domestic silkworm | | genbank common name | +7091 | Phalaena mori Linnaeus, 1758 | | authority | +7091 | Phalaena mori | | synonym | +7091 | silk moth | | common name | +7091 | silkworm | | common name | +7097 | Malacosoma | | scientific name | +7097 | tent caterpillars | | genbank common name | +7098 | common lackey | | common name | +7098 | lackey moth | | genbank common name | +7098 | Malacosoma neustria (Linnaeus, 1758) | | authority | +7098 | Malacosoma neustria | | scientific name | +7098 | Phalaena neustria Linnaeus, 1758 | | authority | +7098 | Phalaena neustria | | synonym | +7112 | Helicoverpa | | scientific name | +7113 | bollworm | | common name | +7113 | corn earworm | | genbank common name | +7113 | Helicoverpa zea (Boddie, 1850) | | authority | +7113 | Helicoverpa zea | | scientific name | +7113 | Heliothis zea | | synonym | +7113 | Phalaena zea Boddie, 1850 | | authority | +7113 | Phalaena zea | | synonym | +7113 | tomato fruitworm | | common name | +7115 | Artogeia | | synonym | +7115 | Pieris | Pieris | scientific name | +7115 | Sinopieris | | synonym | +7116 | cabbage butterfly | | common name | +7116 | large cabbage white | | genbank common name | +7116 | large white | | common name | +7116 | Papilio brassicae Linnaeus, 1758 | | authority | +7116 | Papilio brassicae | | synonym | +7116 | Pieris brassicae (Linnaeus, 1758) | | authority | +7116 | Pieris brassicae | | scientific name | +7116 | white butterfly | | common name | +7118 | Antheraea | | scientific name | +7119 | Antheraea pernyi (Guerin-Meneville, 1855) | | authority | +7119 | Antheraea pernyi | | scientific name | +7119 | Bombyx pernyi Guenerin-Meneville, 1855 | | authority | +7119 | Bombyx pernyi | | synonym | +7119 | Chinese oak silk moth | | common name | +7119 | Chinese oak silkmoth | | genbank common name | +7119 | oak silkmoth | oak silkmoth | common name | +7126 | Philosamia | | synonym | +7126 | Samia | | scientific name | +7127 | ailanthus silkmoth | | genbank common name | +7127 | cynthia moth | | common name | +7127 | Phalaena cynthia Drury, 1773 | | authority | +7127 | Phalaena cynthia | | synonym | +7127 | Philosamia cynthia | | synonym | +7127 | Samia cynthia (Drury, 1773) | | authority | +7127 | Samia cynthia | | scientific name | +7129 | Manduca Hubner, 1807 | | authority | +7129 | Manduca | | scientific name | +7130 | Carolina sphinx | | common name | +7130 | hornblower | | common name | +7130 | Manduca sexta (Linnaeus, 1763) | | authority | +7130 | Manduca sexta | | scientific name | +7130 | Sphinx sexta Linnaeus, 1763 | | authority | +7130 | Sphinx sexta | | synonym | +7130 | tobacco hawkmoth | | common name | +7130 | tobacco hornworm | | genbank common name | +7130 | tomato hornworm | tomato hornworm | common name | +7140 | Choristoneura Lederer, 1859 | | authority | +7140 | Choristoneura | | scientific name | +7140 | Hoshinoa | | synonym | +7141 | Choristoneura fumiferana | | scientific name | +7141 | eastern spruce budworm | | genbank common name | +7141 | spruce budworm | spruce budworm | common name | +7141 | Tortrix fumiferana Clemens, 1865 | | authority | +7141 | Tortrix fumiferana | | synonym | +7145 | Papilio | | scientific name | +7160 | Aedes albopictus | | scientific name | +7160 | Aedes albopictus (Skuse, 1894) | | authority | +7160 | Asian tiger mosquito | | genbank common name | +7160 | forest day mosquito | | common name | +7160 | Stegomyia albopicta | | synonym | +7175 | common house mosquito | | common name | +7175 | Culex agilis | | synonym | +7175 | Culex autogenicus | | synonym | +7175 | Culex azoriensis | | synonym | +7175 | Culex bicolor | | synonym | +7175 | Culex bifurcatus | | synonym | +7175 | Culex calcitrans | | synonym | +7175 | Culex calloti | | synonym | +7175 | Culex comitatus | | synonym | +7175 | Culex consobrinus | | synonym | +7175 | Culex dipseticus | | synonym | +7175 | Culex disjunctus | | synonym | +7175 | Culex doliorum | | synonym | +7175 | Culex domesticus | | synonym | +7175 | Culex erectus | | synonym | +7175 | Culex fasciatus | | synonym | +7175 | Culex haematophagus | | synonym | +7175 | Culex longefurcatus | | synonym | +7175 | Culex luteus | | synonym | +7175 | Culex marginalis | | synonym | +7175 | Culex melanorhinus | | synonym | +7175 | Culex meridionalis | | synonym | +7175 | Culex osakaensis | | synonym | +7175 | Culex pallipes | | synonym | +7175 | Culex phytophagus | | synonym | +7175 | Culex pipiens Linnaeus, 1758 | | authority | +7175 | Culex pipiens | | scientific name | +7175 | Culex quasimodestus | | synonym | +7175 | Culex rufinus | | synonym | +7175 | Culex rufus | | synonym | +7175 | Culex sternopunctatus | | synonym | +7175 | Culex thoracicus | | synonym | +7175 | Culex torridus | | synonym | +7175 | Culex trifurcatus | | synonym | +7175 | Culex unistriatus | | synonym | +7175 | Culex varioannulatus | | synonym | +7175 | northern house mosquito | northern house mosquito | genbank common name | +7374 | Bufolucilia | | synonym | +7374 | Lucilia | Lucilia | scientific name | +7374 | Phaenicia | | synonym | +7443 | Vespa | | scientific name | +7448 | Japanese hornet | | common name | +7448 | Japanese yellow hornet | | genbank common name | +7448 | Vespa simillima xanthoptera Cameron, 1903 | | authority | +7448 | Vespa simillima xanthoptera | | scientific name | +7448 | Vespa xanthoptera | | synonym | +7459 | Apis | | scientific name | +7460 | Apis mellifera Linnaeus, 1758 | | authority | +7460 | Apis mellifera | | scientific name | +7460 | Apis mellifica | | synonym | +7460 | bee | bee | common name | +7460 | European honey bee | | common name | +7460 | honeybee | | common name | +7460 | honey bee | | genbank common name | +7460 | Western honey bee | | common name | +7461 | Apis cerana Fabricius, 1793 | | authority | +7461 | Apis cerana | | scientific name | +7461 | Apis mellifera cerana | | synonym | +7461 | Asiatic honeybee | | genbank common name | +7461 | Eastern honeybee | | common name | +7461 | Indian honeybee | | common name | +7461 | oriental honeybee | | common name | +7462 | Apis dorsata Fabricius, 1793 | | authority | +7462 | Apis dorsata | | scientific name | +7462 | Apis mellifera dorsata | | synonym | +7462 | giant honeybee | | genbank common name | +7462 | rock honeybee | | common name | +7463 | Apis florea Fabricius, 1787 | | authority | +7463 | Apis florea | | scientific name | +7463 | Apis mellifera florea | | synonym | +7463 | dwarf honeybee | | common name | +7463 | little honeybee | | genbank common name | +7506 | Mantis | | scientific name | +7507 | European mantid | | common name | +7507 | Gryllus religiosus Linnaeus, 1758 | | authority | +7507 | Gryllus religiosus | | synonym | +7507 | Mantis religiosa | | scientific name | +7507 | praying mantis | | genbank common name | +7610 | Pisaster | | scientific name | +7612 | Asterias ochracea | | synonym | +7612 | ochre sea star | | common name | +7612 | Pisaster ochraceus (Brandt, 1835) | | authority | +7612 | Pisaster ochraceus | | scientific name | +7612 | purple sea star | | genbank common name | +7659 | Psammechinus | | scientific name | +7660 | Echinus miliaris Muller, 1771 | | authority | +7660 | Echinus miliaris | | synonym | +7660 | Psammechinus miliaris (Muller, 1771) | | authority | +7660 | Psammechinus miliaris | | scientific name | +7660 | sand sea urchin | | common name | +7660 | sand urchin | | genbank common name | +7691 | Stichopus | | scientific name | +7718 | Ciona | | scientific name | +7719 | Ascidia intestinalis | | synonym | +7719 | Ciona intestinalis (Linnaeus, 1767) | | authority | +7719 | Ciona intestinalis | | scientific name | +7719 | sea vase | | common name | +7719 | vase tunicate | | genbank common name | +7719 | yellow sea squirt | | common name | +7754 | Mordacia | | scientific name | +7755 | Mordacia mordax | | scientific name | +7755 | Petromyzon mordax Richardson, 1846 | | authority | +7755 | Petromyzon mordax | | synonym | +7755 | southern hemisphere lamprey | | common name | +7755 | southern lamprey | | genbank common name | +7763 | Eptatretus | | scientific name | +7763 | Paramyxine | | synonym | +7765 | Bdellostoma stoutii Lockington, 1878 | | authority | +7765 | Bdellostoma stoutii | | synonym | +7765 | California hagfish | | common name | +7765 | Eptatretus stoutii (Lockington, 1878) | | authority | +7765 | Eptatretus stoutii | | scientific name | +7765 | Eptatretus stouti | | synonym | +7765 | Pacific hagfish | | genbank common name | +7786 | Torpedo | | scientific name | +7806 | Carcharhinus | | scientific name | +7806 | gray sharks | | genbank common name | +7822 | hammerheads | | genbank common name | +7822 | Sphyrna | | scientific name | +7827 | Poroderma | | scientific name | +7833 | Echinorhinus | | scientific name | +7851 | Alopias | | scientific name | +7852 | Alopias vulpinus (Bonnaterre, 1788) | | authority | +7852 | Alopias vulpinus | | scientific name | +7852 | sea fox | | common name | +7852 | Squalus vulpinus Bonnaterre, 1788 | | authority | +7852 | Squalus vulpinus | | synonym | +7852 | swiveltail | | common name | +7852 | thintail thresher | | common name | +7852 | thresher | | common name | +7852 | thresher shark | | genbank common name | +7852 | whip-tail shark | | common name | +7856 | Notorhynchus | | synonym | +7856 | Notorynchus | | scientific name | +7857 | bluntnose sevengill shark | | common name | +7857 | broadnose sevengill shark | | genbank common name | +7857 | Heptranchias cepedianus | | synonym | +7857 | Notorhynchus cepedianus | | synonym | +7857 | Notorhynchus maculatus | | synonym | +7857 | Notorynchus cepedianus (Peron, 1807) | | authority | +7857 | Notorynchus cepedianus | | scientific name | +7857 | Notorynchus maculatus Ayres, 1855 | | authority | +7857 | Notorynchus maculatus | | synonym | +7857 | Squalus cepedianus | | synonym | +7861 | Rhinobatos | | scientific name | +7872 | Hydrolagus | | scientific name | +7873 | Chimaera colliei | | synonym | +7873 | Hydrolagus colliei (Lay & Bennett, 1839) | | authority | +7873 | Hydrolagus colliei | | scientific name | +7873 | Pacific ratfish | | common name | +7873 | spotted ratfish | | genbank common name | +7901 | Acipenser | | scientific name | +7902 | Acipenser gueldenstaedtii Brandt & Ratzeburg, 1833 | | authority | +7902 | Acipenser gueldenstaedtii | | scientific name | +7902 | Acipenser gueldenstaedti | | synonym | +7902 | Acipenser guldenstadti | | synonym | +7902 | Caspian sturgeon | | common name | +7902 | osietra | | common name | +7902 | Russian sturgeon | | genbank common name | +7912 | Polyodon | | scientific name | +7913 | Mississippi paddlefish | | genbank common name | +7913 | North American paddlefish | | common name | +7913 | Polyodon spathula | | scientific name | +7913 | Polyodon spathula (Walbaum, 1792) | | authority | +7913 | Squalus spathula | | synonym | +7913 | Squalus spathula Walbaum, 1792 | | authority | +7916 | Lepisosteus | | scientific name | +7935 | Anguilla | | scientific name | +7936 | Angill angill | | synonym | +7936 | Anguilla anguilla anguilla | | synonym | +7936 | Anguilla anguilla (Linnaeus, 1758) | | authority | +7936 | Anguilla anguilla | | scientific name | +7936 | European eel | | genbank common name | +7936 | European freshwater eel | | common name | +7936 | Muraena anguilla Linnaeus, 1758 | | authority | +7936 | Muraena anguilla | | synonym | +7942 | Conger | | scientific name | +7943 | Anguilla myriaster Brevoort, 1856 | | authority | +7943 | Anguilla myriaster | | synonym | +7943 | Astroconger myriaster | | synonym | +7943 | conger eel | conger eel | common name | +7943 | Conger myriaster (Brevoort, 1856) | | authority | +7943 | Conger myriaster | | scientific name | +7943 | whitespotted conger | | genbank common name | +7945 | Muraenesox | | scientific name | +7946 | daggertooth pike conger | | genbank common name | +7946 | Muraena cinerea Forsskal, 1775 | | authority | +7946 | Muraena cinerea | | synonym | +7946 | Muraenesox cinereus | | scientific name | +7946 | pike eel | | common name | +7954 | Brachydanio | | synonym | +7954 | Celestichthys | | synonym | +7954 | Danio | | scientific name | +7955 | Brachydanio rerio frankei | | synonym | +7955 | Brachydanio rerio | | synonym | +7955 | Cyprinus rerio Hamilton, 1822 | | authority | +7955 | Cyprinus rerio | | synonym | +7955 | Danio frankei | | synonym | +7955 | Danio rerio frankei | | synonym | +7955 | Danio rerio (Hamilton, 1822) | | authority | +7955 | Danio rerio | | scientific name | +7955 | leopard danio | | common name | +7955 | zebra danio | | common name | +7955 | zebrafish | | genbank common name | +7955 | zebra fish | zebra fish | common name | +7956 | Carassius | | scientific name | +7963 | Aristichthys | | synonym | +7963 | Hypophthalmichthys | | scientific name | +7965 | Aristichthys nobilis (Richardson, 1845) | | authority | +7965 | Aristichthys nobilis | | synonym | +7965 | bighead carp | | genbank common name | +7965 | Hypophthalmichthys nobilis (Richardson, 1845) | | authority | +7965 | Hypophthalmichthys nobilis | | scientific name | +7965 | Leuciscus nobilis Richardson, 1845 | | authority | +7965 | Leuciscus nobilis | | synonym | +7965 | noble carp | | common name | +7965 | silver carp | silver carp | common name | +7972 | Ictiobus | | scientific name | +7973 | Catostomus bubalus Rafinesque, 1818 | | authority | +7973 | Catostomus bubalus | | synonym | +7973 | Ictiobus bubalus (Rafinesque, 1818) | | authority | +7973 | Ictiobus bubalus | | scientific name | +7973 | smallmouth buffalo fish | | common name | +7973 | smallmouth buffalo | | genbank common name | +7983 | Misgurnus | | scientific name | +7993 | Astyanax | | scientific name | +7994 | Astyanax mexicanus (De Filippi, 1853) | | authority | +7994 | Astyanax mexicanus | | scientific name | +7994 | blind cave fish | | common name | +7994 | Mexican tetra | | genbank common name | +7994 | Tetragonopterus mexicanus De Filippi, 1853 | | authority | +7994 | Tetragonopterus mexicanus | | synonym | +8000 | Pangasius | | scientific name | +8001 | Pangas catfish | | common name | +8001 | Pangasius pangasius (Hamilton, 1822) | | authority | +8001 | Pangasius pangasius | | scientific name | +8001 | Pimelodus pangasius Hamilton, 1822 | | authority | +8001 | Pimelodus pangasius | | synonym | +8001 | yellowtail catfish | | genbank common name | +8004 | Electrophorus | | scientific name | +8005 | electric eel | | genbank common name | +8005 | electric knifefish | electric knifefish | common name | +8005 | Electrophorus electricus | | scientific name | +8005 | Gymnotus electricus Linnaeus, 1766 | | authority | +8005 | Gymnotus electricus | | synonym | +8016 | Oncorhynchus | | scientific name | +8016 | Parasalmo | | synonym | +8017 | humpback salmon | | common name | +8017 | Oncorhynchus gorbuscha | | scientific name | +8017 | Oncorhynchus gorbuscha (Walbaum, 1792) | | authority | +8017 | pink salmon | | genbank common name | +8017 | Salmo gorbuscha | | synonym | +8017 | Salmo gorbuscha Walbaum, 1792 | | authority | +8020 | cherry salmon | cherry salmon | genbank common name | +8020 | Japanese salmon | | common name | +8020 | masu salmon | | common name | +8020 | Oncorhynchus masou (Brevoort, 1856) | | authority | +8020 | Oncorhynchus masou | | scientific name | +8020 | Salmo masou Brevoort, 1856 | | authority | +8020 | Salmo masou | | synonym | +8020 | salmon trout | | common name | +8028 | Acantholingua | | synonym | +8028 | Salmo | | scientific name | +8028 | Salmothymus | | synonym | +8033 | Salvelinus | | scientific name | +8034 | amemasu char | | common name | +8034 | Salmo leucomaenis Pallas, 1814 | | authority | +8034 | Salmo leucomaenis | | synonym | +8034 | Salvelinus leucomaenis (Pallas, 1814) | | authority | +8034 | Salvelinus leucomaenis | | scientific name | +8034 | whitespotted char | | genbank common name | +8048 | Gadus | | scientific name | +8048 | Theragra | | synonym | +8059 | Pollachius | | scientific name | +8060 | Gadus virens | | synonym | +8060 | Merlangus virens | | synonym | +8060 | Pollachius virens (Linnaeus, 1758) | | authority | +8060 | Pollachius virens | | scientific name | +8060 | pollock | | common name | +8060 | saithe | | genbank common name | +8062 | Merluccius | | scientific name | +8063 | Atlantic hake | | common name | +8063 | chat | | common name | +8063 | densack | | common name | +8063 | European hake | European hake | genbank common name | +8063 | Gadus merluccius Linnaeus, 1758 | | authority | +8063 | Gadus merluccius | | synonym | +8063 | Merluccius merluccius (Linnaeus, 1758) | | authority | +8063 | Merluccius merluccius | | scientific name | +8063 | seapike | | common name | +8077 | Fundulus | | scientific name | +8078 | Atlantic killifish | | common name | +8078 | Cobitis heteroclita Linnaeus, 1766 | | authority | +8078 | Cobitis heteroclita | | synonym | +8078 | Fundulus heteroclitus (Linnaeus, 1766) | | authority | +8078 | Fundulus heteroclitus | | scientific name | +8078 | killifish | killifish | common name | +8078 | mummichog | | genbank common name | +8089 | Oryzias | | scientific name | +8089 | Xenopoecilus | | synonym | +8090 | Japanese medaka | | genbank common name | +8090 | Japanese rice fish | | common name | +8090 | medaka | | common name | +8090 | Oryzias latipes | | scientific name | +8090 | Oryzias latipes (Temminck & Schlegel, 1846) | | authority | +8090 | Poecilia latipes | | synonym | +8090 | Poecilia latipes Temminck & Schlegel, 1846 | | authority | +8095 | Myoxocephalus | | scientific name | +8095 | Myoxocephalus Tilesius, 1811 | | authority | +8095 | Triglopsis | | synonym | +8096 | Cottus aenaeus Mitchill, 1814 | | authority | +8096 | Cottus aenaeus | | synonym | +8096 | grubby | | common name | +8096 | grubby sculpin | | genbank common name | +8096 | Myoxocephalus aenaeas (Mitchill, 1814) | | authority | +8096 | Myoxocephalus aenaeus (Mitchill, 1814) | | authority | +8096 | Myoxocephalus aenaeus | | scientific name | +8097 | Cottus scorpius Linnaeus, 1758 | | authority | +8097 | Cottus scorpius | | synonym | +8097 | daddy sculpin | | common name | +8097 | father lasher | | common name | +8097 | Myoxocephalus scorpius (Linnaeus, 1758) | | authority | +8097 | Myoxocephalus scorpius | | scientific name | +8097 | scorpion fish | | common name | +8097 | shorthorn sculpin | | genbank common name | +8097 | short spined sea scorpion | | common name | +8127 | Chromis mossambicus Peters, 1852 | | authority | +8127 | Chromis mossambicus | | synonym | +8127 | Chromis (Tilapia) mossambicus | | synonym | +8127 | Hawaiian perch | | common name | +8127 | Hawaiian sunfish | | common name | +8127 | Java tilapia | | common name | +8127 | largemouth tilapia | | common name | +8127 | Mozambique cichlid | | common name | +8127 | Mozambique tilapia | | genbank common name | +8127 | Oreochromis mossambicus (Peters, 1852) | | authority | +8127 | Oreochromis mossambicus | | scientific name | +8127 | Sarotherodon mossambicus | | synonym | +8127 | Tilapia mossambica | | synonym | +8139 | Nyasalapia | | synonym | +8139 | Oreochromis | | scientific name | +8158 | Caranx | | scientific name | +8172 | Chrysophrys | | synonym | +8172 | Pagrosomus | | synonym | +8172 | Pagrus | | scientific name | +8173 | common sea bream | | common name | +8173 | common seabream | | genbank common name | +8173 | Pagrus pagrus (Linnaeus, 1758) | | authority | +8173 | Pagrus pagrus | | scientific name | +8173 | Pagrus vulgaris | | synonym | +8173 | red porgy | | common name | +8173 | Sparus pagrus Linnaeus, 1758 | | authority | +8173 | Sparus pagrus | | synonym | +8174 | Aurata Oken (ex Cuvier) 1817 | | authority | +8174 | Aurata | | synonym | +8174 | Sparus Linnaeus, 1758 | | authority | +8174 | Sparus | | scientific name | +8175 | Aurata aurata | | synonym | +8175 | gilthead bream | | common name | +8175 | gilthead seabream | | genbank common name | +8175 | silver seabream | silver seabream | common name | +8175 | Sparus aurata Linnaeus, 1758 | | authority | +8175 | Sparus aurata | | scientific name | +8175 | Sparus auratus Houttuyn, 1782 | | authority | +8175 | Sparus auratus | | synonym | +8176 | Acanthopagrus | | scientific name | +8186 | Lates | | scientific name | +8187 | Asian seabass | | common name | +8187 | barramundi | | common name | +8187 | barramundi perch | | genbank common name | +8187 | Holocentrus calcarifer Bloch, 1790 | | authority | +8187 | Holocentrus calcarifer | | synonym | +8187 | Lates calcarifer (Bloch, 1790) | | authority | +8187 | Lates calcarifer | | scientific name | +8190 | Mugil | | scientific name | +8196 | Lycodes | | scientific name | +8197 | Blennius polaris Sabine, 1824 | | authority | +8197 | Blennius polaris | | synonym | +8197 | Canadian eel pout | | common name | +8197 | Canadian eelpout | | genbank common name | +8197 | Lycodes polaris (Sabine, 1824) | | authority | +8197 | Lycodes polaris | | scientific name | +8199 | Blennius americanus Bloch & Schneider, 1801 | | authority | +8199 | Blennius americanus | | synonym | +8199 | Macrozoarces americanus | | synonym | +8199 | mother-of-eels | | common name | +8199 | muttonfish | | common name | +8199 | North-Atlantic ocean pout | | common name | +8199 | ocean pout | | genbank common name | +8199 | poodler | | common name | +8199 | Zoarces americanus (Bloch & Schneider, 1801) | | authority | +8199 | Zoarces americanus | | scientific name | +8203 | Anarhichas | | scientific name | +8204 | Anarhichas lupus Linnaeus, 1758 | | authority | +8204 | Anarhichas lupus | | scientific name | +8204 | Anarhichas orientalis lupus | | synonym | +8204 | Atlantic wolffish | | genbank common name | +8204 | wolf-fish | | common name | +8207 | Notothenia | | scientific name | +8225 | Euthynnus | | scientific name | +8226 | bonito | | common name | +8226 | Euthynnus pelamis | | synonym | +8226 | Katsuwonus pelamis (Linnaeus, 1758) | | authority | +8226 | Katsuwonus pelamis | | scientific name | +8226 | Scomber pelamis Linnaeus, 1758 | | authority | +8226 | Scomber pelamis | | synonym | +8226 | skipjack tuna | | genbank common name | +8227 | eastern little tuna | | genbank common name | +8227 | Euthynnus affinis (Cantor, 1849) | | authority | +8227 | Euthynnus affinis | | scientific name | +8227 | island bonito | | common name | +8227 | island skipjack | | common name | +8227 | kawakawa | kawakawa | common name | +8227 | Thynnus affinis Cantor, 1849 | | authority | +8227 | Thynnus affinis | | synonym | +8234 | Thunnus | | scientific name | +8237 | Atlantic bluefin tuna | | genbank common name | +8237 | bluefin tuna | | common name | +8237 | northern bluefin tuna | northern bluefin tuna | common name | +8237 | Scomber thynnus Linnaeus, 1758 | | authority | +8237 | Scomber thynnus | | synonym | +8237 | Thunnus thynnus (Linnaeus, 1758) | | authority | +8237 | Thunnus thynnus | | scientific name | +8238 | northern bluefin tuna | northern bluefin tuna | common name | +8238 | North Pacific bluefin tuna | | common name | +8238 | Pacific bluefin tuna | | genbank common name | +8238 | Thunnus orientalis orientalis | | synonym | +8238 | Thunnus orientalis | | scientific name | +8238 | Thunnus orientalis (Temminck & Schlegel, 1844) | | authority | +8238 | Thunnus thynnus orientalis | | synonym | +8238 | Thynnus orientalis | | synonym | +8238 | Thynnus orientalis Temminck & Schlegel, 1844 | | authority | +8254 | Paralichthys | | scientific name | +8255 | bastard halibut | | common name | +8255 | false halibut | | common name | +8255 | Hippoglossus olivaceus | | synonym | +8255 | Japanese flounder | | genbank common name | +8255 | olive flounder | | common name | +8255 | Paralichthyidae sp. KYJ-2011 | | includes | +8255 | Paralichthys olivaceus | | scientific name | +8255 | Paralichthys olivaceus (Temminck & Schlegel, 1846) | | authority | +8257 | Limanda | | scientific name | +8283 | Aspius | | synonym | +8283 | Leuciscus | | scientific name | +8284 | chub | | common name | +8284 | Cyprinus cephalus Linnaeus, 1758 | | authority | +8284 | Cyprinus cephalus | | synonym | +8284 | European chub | | genbank common name | +8284 | Leuciscus cephalus (Linnaeus, 1758) | | authority | +8284 | Leuciscus cephalus | | synonym | +8284 | Squalius cephalus | | scientific name | +8285 | Pardachirus | | scientific name | +8286 | Achirus pavoninus Lacepede, 1802 | | authority | +8286 | Achirus pavoninus | | synonym | +8286 | Pacific sole | | genbank common name | +8286 | Pardachirus pavoninus (Lacepede, 1802) | | authority | +8286 | Pardachirus pavoninus | | scientific name | +8286 | peacock sole | | common name | +8295 | Ambystoma | | scientific name | +8295 | big salamanders | | common name | +8295 | mole salamanders | mole salamanders | genbank common name | +8305 | Ambystoma tigrinum (Green, 1825) | | authority | +8305 | Ambystoma tigrinum | | scientific name | +8305 | Ambystoma tigrinum tigrinum | | includes | +8305 | Eastern tiger salamander | | common name | +8305 | Salamandra tigrina Green, 1825 | | authority | +8305 | Salamandra tigrina | | synonym | +8305 | tiger salamander | | genbank common name | +8311 | Amphiuma | | scientific name | +8313 | Amphiuma means tridactylum | | synonym | +8313 | Amphiuma tridactylum Cuvier, 1827 | | authority | +8313 | Amphiuma tridactylum | | scientific name | +8313 | Muraenopsis tridactyla | | synonym | +8313 | three-toed amphiuma | | common name | +8313 | three-toed salamander | | genbank common name | +8315 | Notophthalmus | | scientific name | +8316 | eastern newt | | genbank common name | +8316 | Notophthalmus viridescens | | scientific name | +8316 | red-spotted newt | | common name | +8316 | Triturus viridescens Rafinesque, 1820 | | authority | +8316 | Triturus viridescens | | synonym | +8317 | Pleurodeles | | scientific name | +8319 | Iberian ribbed newt | | genbank common name | +8319 | Pleurodeles waltlii | | synonym | +8319 | Pleurodeles waltl (Michahelles, 1830) | | authority | +8319 | Pleurodeles waltl Michahelles, 1830 | | authority | +8319 | Pleurodeles waltl | | scientific name | +8319 | Spanish newt | | common name | +8319 | Spanish ribbed newt | | common name | +8320 | Pacific newts | | genbank common name | +8320 | rough-skinned newts | | common name | +8320 | roughskin newts | | common name | +8320 | Taricha | | scientific name | +8321 | rough-skinned newt | | genbank common name | +8321 | rough-skin newt | | common name | +8321 | roughskin newt | | common name | +8321 | Salamandra granulosa Skilton, 1849 | | authority | +8321 | Salamandra granulosa | | synonym | +8321 | Taricha granulosa | | scientific name | +8322 | Triturus | | scientific name | +8323 | great crested newt | | common name | +8323 | Triton cristatus Laurenti, 1768 | | authority | +8323 | Triton cristatus | | synonym | +8323 | Triturus cristatus | | scientific name | +8323 | warty newt | | genbank common name | +8324 | common newt | | genbank common name | +8324 | Lacerta vulgaris Linnaeus, 1758 | | authority | +8324 | Lacerta vulgaris | | synonym | +8324 | Lissotriton vulgaris (Linnaeus, 1758) | | authority | +8324 | Lissotriton vulgaris | | scientific name | +8324 | smooth newt | | common name | +8324 | Triturus vulgaris | | synonym | +8325 | Balkan newt | | genbank common name | +8325 | southern crested newt | | common name | +8325 | Triton karelinii Strauch, 1870 | | authority | +8325 | Triton karelinii | | synonym | +8325 | Triturus karelinii | | scientific name | +8325 | Triturus karelinii (Strauch, 1870) | | authority | +8325 | Triturus karelini | | synonym | +8326 | Alpine crested newt | | common name | +8326 | Alpine warty newt | | common name | +8326 | Italian crested newt | | genbank common name | +8326 | Italian newt | Italian newt | common name | +8326 | Triton carnifex Laurenti, 1768 | | authority | +8326 | Triton carnifex | | synonym | +8326 | Triturus carnifex | | scientific name | +8329 | Cynops | | scientific name | +8329 | firebelly newts | | genbank common name | +8330 | Cynops pyrrhogaster | | scientific name | +8330 | Japanese common newt | | common name | +8330 | Japanese firebelly newt | | genbank common name | +8330 | Molge pyrrhogaster Boie, 1826 | | authority | +8330 | Molge pyrrhogaster | | synonym | +8330 | Triturus pyrrhogaster | | synonym | +8335 | Plethodon | | scientific name | +8335 | slimy salamanders | | common name | +8335 | woodland salamanders | | genbank common name | +8341 | dwarf siren | dwarf siren | common name | +8341 | lesser siren | | genbank common name | +8341 | Siren intermedia Barnes, 1826 | | authority | +8341 | Siren intermedia | | scientific name | +8344 | Bombina | | scientific name | +8344 | firebellied toads | | genbank common name | +8344 | firebelly toads | | common name | +8350 | Discoglossus | | scientific name | +8354 | Kenyan clawed frog | | genbank common name | +8354 | Marasbit clawed frog | | common name | +8354 | Xenopus borealis Parker, 1936 | | authority | +8354 | Xenopus borealis | | scientific name | +8354 | Xenopus laevis borealis | | synonym | +8355 | African clawed frog | | genbank common name | +8355 | Bufo laevis Daudin, 1802 | | authority | +8355 | Bufo laevis | | synonym | +8355 | clawed frog | clawed frog | common name | +8355 | common platanna | | common name | +8355 | platanna | | common name | +8355 | Xenopus laevis (Daudin, 1802) | | authority | +8355 | Xenopus laevis | | scientific name | +8361 | Hymenochirus | | scientific name | +8363 | Silurana | | scientific name | +8363 | Xenopus tropicalis group | | synonym | +8364 | Silurana tropicalis Gray, 1864 | | authority | +8364 | Silurana tropicalis | | synonym | +8364 | tropical clawed frog | | genbank common name | +8364 | western clawed frog | | common name | +8364 | Xenopus laevis tropicalis | | synonym | +8364 | Xenopus (Silurana) tropicalis | | synonym | +8364 | Xenopus tropicalis (Gray, 1864) | | authority | +8364 | Xenopus tropicalis | | scientific name | +8366 | Uperoleia | | scientific name | +8368 | Australian leptodactylic frog | Australian leptodactylic frog | common name | +8368 | chubby gungan | | common name | +8368 | mud toadlet | | common name | +8368 | Prohartia rugosa | | synonym | +8368 | Pseudophryne rugosa Andersson, 1916 | | authority | +8368 | Pseudophryne rugosa | | synonym | +8368 | red-groined toadlet | | common name | +8368 | Uperoleia marmorata rugosa | | synonym | +8368 | Uperoleia rugosa (Andersson, 1916) | | authority | +8368 | Uperoleia rugosa | | scientific name | +8368 | wrinkled toadlet | | genbank common name | +8370 | Litoria | | scientific name | +8371 | Australian frog | Australian frog | common name | +8371 | green and golden bell frog | | genbank common name | +8371 | Rana aurea Lesson, 1829 | | authority | +8371 | Rana aurea | | synonym | +8371 | Ranoidea aurea (Lesson, 1829) | | authority | +8371 | Ranoidea aurea | | scientific name | +8373 | Crinia | | scientific name | +8377 | dwarf frogs | | genbank common name | +8377 | Physalaemus | | scientific name | +8383 | Bufo | | scientific name | +8383 | Torrentophryne | | synonym | +8384 | Bufo bufo (Linnaeus, 1758) | | authority | +8384 | Bufo bufo | | scientific name | +8384 | common European toad | | common name | +8384 | common toad | | genbank common name | +8384 | European toad | | common name | +8384 | Rana bufo Linnaeus, 1758 | | authority | +8384 | Rana bufo | | synonym | +8386 | Bufo marinus (Linnaeus, 1758) | | authority | +8386 | Bufo marinus | | synonym | +8386 | cane toad | | common name | +8386 | Chaunus marinus | | synonym | +8386 | giant toad | | common name | +8386 | marine toad | | genbank common name | +8386 | Rana marina Linnaeus, 1758 | | authority | +8386 | Rana marina | | synonym | +8386 | Rhinella marina (Linnaeus, 1758) | | authority | +8386 | Rhinella marina | | scientific name | +8387 | Bufo bufo japonica | | synonym | +8387 | Bufo bufo japonicus | | synonym | +8387 | Bufo japonica | | synonym | +8387 | Bufo japonicus | | scientific name | +8387 | Bufo japonicus Temminck & Schlegel, 1838 | | authority | +8387 | Japanese common toad | | common name | +8387 | Japanese toad | | genbank common name | +8388 | Bufo valliceps | | synonym | +8388 | Bufo valliceps Wiegmann, 1833 | | authority | +8388 | Cranopsis valliceps | | synonym | +8388 | Gulf coast toad | | genbank common name | +8388 | Incilius valliceps | | scientific name | +8388 | Incilius valliceps (Wiegmann, 1833) | | authority | +8388 | Ollotis valliceps | | synonym | +8388 | Southern Gulf Coast frog | | common name | +8392 | leaf frogs | leaf frogs | genbank common name | +8392 | Phyllomedusa | | scientific name | +8395 | painted-belly leaf frog | | genbank common name | +8395 | Phyllomedusa sauvagei | | synonym | +8395 | Phyllomedusa sauvagii Boulenger, 1882 | | authority | +8395 | Phyllomedusa sauvagii | | scientific name | +8395 | Phyllomedusa sp. PMP-2003 | | equivalent name | +8395 | Sauvage's leaf frog | | common name | +8400 | American bullfrog | | genbank common name | +8400 | Aquarana catesbeiana | | scientific name | +8400 | Aquarana catesbeiana (Shaw 1802) | | authority | +8400 | bullfrog | | common name | +8400 | bullfrogs | | common name | +8400 | Lithobates catesbeianus (Shaw, 1802) | | authority | +8400 | Lithobates catesbeianus | | synonym | +8400 | Rana catesbeiana Shaw, 1802 | | authority | +8400 | Rana catesbeiana | | synonym | +8400 | Rana catesbiana (Shaw, 1802) | | authority | +8403 | Iberian green frog | | genbank common name | +8403 | Iberian water frog | | common name | +8403 | Pelophylax perezi (Lopez-Seoane, 1885) | | authority | +8403 | Pelophylax perezi | | scientific name | +8403 | Perez's frog | | common name | +8403 | Rana perezi Lopez-Seoane, 1885 | | authority | +8403 | Rana perezi | | synonym | +8403 | Western Mediterranian green frog | | common name | +8406 | European green frog | | common name | +8406 | Hylarana ridibunda | | synonym | +8406 | laughing frog | | common name | +8406 | marsh frog | marsh frog | genbank common name | +8406 | Pelophylax ridibundus (Pallas, 1771) | | authority | +8406 | Pelophylax ridibundus | | scientific name | +8406 | Rana ridibunda Pallas, 1771 | | authority | +8406 | Rana ridibunda | | synonym | +8406 | Rana ridibundus Pallas, 1771 | | authority | +8406 | Rana ridibundus | | synonym | +8409 | black-spotted frog | black-spotted frog | common name | +8409 | dark-spotted frog | | genbank common name | +8409 | Hylarana nigromaculata | | synonym | +8409 | Pelophylax nigromaculatus (Hallowell, 1861) | | authority | +8409 | Pelophylax nigromaculatus | | scientific name | +8409 | Rana nigromaculata Hallowell, 1861 | | authority | +8409 | Rana nigromaculata | | synonym | +8409 | Rana (Pelophylax) nigromaculata | | synonym | +8409 | three-striped pond frog | | common name | +8410 | Glandirana rugosa | | scientific name | +8410 | Glandirana rugosa (Temminck & Schlegel, 1838) | | authority | +8410 | Japanese wrinkled frog | | genbank common name | +8410 | Rana rugosa | | synonym | +8410 | Rana rugosa Temminck & Schlegel, 1838 | | authority | +8410 | Rugosa rugosa | | synonym | +8410 | Rugosa rugosa (Temminck & Schlegel, 1838) | | authority | +8410 | wrinkled frog | | common name | +8419 | Gastrotheca | | scientific name | +8419 | marsupial frogs | | genbank common name | +8420 | Gastrotheca riobambae (Fowler, 1913) | | authority | +8420 | Gastrotheca riobambae | | scientific name | +8420 | Hyla riobambae Fowler, 1913 | | authority | +8420 | Hyla riobambae | | synonym | +8420 | Riobamba marsupial frog | | genbank common name | +8420 | Riobamba pouched frog | | common name | +8421 | common treefrogs | | genbank common name | +8421 | Hyla | | scientific name | +8421 | treefrogs | | common name | +8421 | true tree toads | | common name | +8425 | Nesomantis thomasseti Boulenger, 1909 | | authority | +8425 | Nesomantis thomasseti | | synonym | +8425 | Sooglossus thomasseti (Boulenger, 1909) | | authority | +8425 | Sooglossus thomasseti | | scientific name | +8425 | Thomasset's frog | | common name | +8425 | Thomasset's Seychelles frog | | genbank common name | +8428 | Gastrophryne | | scientific name | +8438 | Ascaphus | | scientific name | +8439 | American bell toad | | common name | +8439 | Ascaphus truei californicus | | synonym | +8439 | Ascaphus truei | | scientific name | +8439 | Ascaphus truei Stejneger, 1899 | | authority | +8439 | Ascaphus truei truei | | synonym | +8439 | tailed frog | | genbank common name | +8442 | Alytes | | scientific name | +8443 | Alytes obstetricans | | scientific name | +8443 | Bufo obstetricans Laurenti, 1768 | | authority | +8443 | Bufo obstetricans | | synonym | +8443 | common midwife toad | | common name | +8443 | midwife toad | | genbank common name | +8443 | nurse frog | | common name | +8443 | olive midwife toad | | common name | +8459 | Anapsida | | synonym | +8459 | anapsid reptiles | | common name | +8459 | reptiles | reptiles | in-part | +8459 | Reptilia | Reptilia | in-part | +8459 | Testudines Batsch 1788 | | authority | +8459 | Testudines | | scientific name | +8459 | turtles | turtles | blast name | +8459 | turtles | turtles | genbank common name | +8466 | Caretta Rafinesque, 1814 | | authority | +8466 | Caretta | | scientific name | +8467 | Caretta caretta Linnaeus, 1758 | | authority | +8467 | Caretta caretta | | scientific name | +8467 | loggerhead | | common name | +8467 | Loggerhead turtle | | genbank common name | +8467 | red sea turtle | | common name | +8467 | Testudo caretta Linnaeus, 1758 | | authority | +8467 | Testudo caretta | | synonym | +8468 | Chelonia | | scientific name | +8469 | Chelonia midas | | includes | +8469 | Chelonia mydas caranigra | | includes | +8469 | Chelonia mydas (Linnaeus, 1758) | | authority | +8469 | Chelonia mydas | | scientific name | +8469 | green seaturtle | | common name | +8469 | Green sea turtle | | genbank common name | +8469 | Testudo mydas Linnaeus, 1758 | | authority | +8469 | Testudo mydas | | synonym | +8471 | Lepidochelys | | scientific name | +8472 | Atlantic ridley | | genbank common name | +8472 | Kemp's ridley sea turtle | | common name | +8472 | Lepidochelys kempii (Garman, 1880) | | authority | +8472 | Lepidochelys kempii Garman, 1880 | | authority | +8472 | Lepidochelys kempii | | scientific name | +8472 | Lepidochelys kempi | | synonym | +8472 | Thalassochelys kempii Garman, 1880 | | authority | +8472 | Thalassochelys kempii | | synonym | +8474 | Chelydra Schweigger 1812 | | authority | +8474 | Chelydra | | scientific name | +8475 | Chelydra serpentina Linnaeus, 1758 | | authority | +8475 | Chelydra serpentina | | scientific name | +8475 | Chelydra serpentina serpentina (Linnaeus, 1758) | | authority | +8475 | Chelydra serpentina serpentina | | synonym | +8475 | Common snapping turtle | | genbank common name | +8475 | snapping turtle | | common name | +8475 | Testudo serpentina Linnaeus, 1758 | | authority | +8475 | Testudo serpentina | | synonym | +8484 | Malaclemys Gray, 1844 | | authority | +8484 | Malaclemys | | scientific name | +8485 | diamondback terrapin | | genbank common name | +8485 | Malaclemys terrapin Schoepff 1793 | | authority | +8485 | Malaclemys terrapin | | scientific name | +8485 | terrapin | | common name | +8485 | Testudo terrapin Schoepff, 1793 | | authority | +8485 | Testudo terrapin | | synonym | +8497 | Caiman | | scientific name | +8499 | Caiman crocodilus Linnaeus, 1758 | | authority | +8499 | Caiman crocodilus | | scientific name | +8499 | Caiman sclerops | | synonym | +8499 | common caiman | | common name | +8499 | Lacerta crocodilus Linnaeus, 1758 | | authority | +8499 | Lacerta crocodilus | | synonym | +8499 | spectacled caiman | | genbank common name | +8500 | Crocodylus | | scientific name | +8507 | Sphenodon | | scientific name | +8508 | hatteria | | common name | +8508 | Hatteria punctata Gray, 1842 | | authority | +8508 | Hatteria punctata | | synonym | +8508 | Sphenodon punctatus (Gray, 1842) | | authority | +8508 | Sphenodon punctatus | | scientific name | +8508 | tuatara | | genbank common name | +8516 | Iguana | | scientific name | +8517 | Common green iguana | | genbank common name | +8517 | common iguana | | common name | +8517 | Iguana iguana | | scientific name | +8517 | Iguana rhinolopha | | synonym | +8517 | Iguana rhinolopha Wiegmann, 1834 | | authority | +8517 | Iguana rhinolophus | | synonym | +8517 | Lacerta igvana Linnaeus, 1758 | | authority | +8517 | Lacerta igvana | | synonym | +8518 | Sceloporus | | scientific name | +8523 | Lacerta | | scientific name | +8556 | Varanus | | scientific name | +8558 | cape monitor | | common name | +8558 | Varanus albigularis (Daudin, 1802) | | authority | +8558 | Varanus albigularis Daudin, 1802 | | authority | +8558 | Varanus albigularis | | scientific name | +8558 | Varanus exanthematicus albigularis Schmidt, 1919 | | authority | +8558 | Varanus exanthematicus albigularis | | synonym | +8558 | White-throated monitor | | genbank common name | +8568 | Tarentola Gray, 1825 | | authority | +8568 | Tarentola | | scientific name | +8569 | common wall gecko | | common name | +8569 | Lacerta mauritanica | | synonym | +8569 | Moorish gecko | | genbank common name | +8569 | Platydactylus mauritanicus | | synonym | +8569 | Tarentola mauritanica Linnaeus, 1748 | | authority | +8569 | Tarentola mauritanica | | scientific name | +8579 | Elaphe | | scientific name | +8583 | Natrix | | scientific name | +8584 | checkered water snake | | genbank common name | +8584 | Coronella tessellata Laurenti, 1768 | | authority | +8584 | Coronella tessellata | | synonym | +8584 | dice snake | | common name | +8584 | Natrix tessellata (Laurenti, 1768) | | authority | +8584 | Natrix tessellata | | scientific name | +8584 | Tropidonotus tessellatus | | synonym | +8604 | Acanthophis | | scientific name | +8605 | Acanthophis antarcticus | | scientific name | +8605 | Acanthophis antarcticus (Shaw, 1794) | | authority | +8605 | Boa antarctica Shaw & Nodder, 1802 | | authority | +8605 | Boa antarctica | | synonym | +8605 | common death adder | | common name | +8605 | death adder | | genbank common name | +8627 | Laticauda | | scientific name | +8630 | black-banded sea krait | | common name | +8630 | blue-ringed sea krait | | genbank common name | +8630 | Coluber laticaudatus Linnaeus, 1758 | | authority | +8630 | Coluber laticaudatus | | synonym | +8630 | Laticauda laticaudata | | scientific name | +8631 | broad-banded blue sea krait | | genbank common name | +8631 | broad-banded blue sea snake | | common name | +8631 | Erabu sea snake | | common name | +8631 | Laticauda semifasciata | | scientific name | +8631 | Platurus semifasciatus Reinwardt, 1837 | | authority | +8631 | Platurus semifasciatus | | synonym | +8633 | Bioliophis bivirgatus | | synonym | +8633 | Blue Malaysian coral snake | | genbank common name | +8633 | Calliophis bivirgatus | | scientific name | +8633 | Elaps bivirgatus Boie, 1827 | | authority | +8633 | Elaps bivirgatus | | synonym | +8633 | long-glanded coral snake | | common name | +8633 | Maticora bivirgata | | synonym | +8634 | coral snakes | | genbank common name | +8634 | Micrurus | | scientific name | +8635 | black-banded coral snake | | genbank common name | +8635 | Central American coral snake | | common name | +8635 | Elaps nigrocinctus Girard, 1854 | | authority | +8635 | Elaps nigrocinctus | | synonym | +8635 | gargantilla | | common name | +8635 | Micrurus nigrocinctus | | scientific name | +8637 | Coluber fulvius Linnaeus, 1766 | | authority | +8637 | Coluber fulvius | | synonym | +8637 | eastern coral snake | | genbank common name | +8637 | Elaps fulvius | | synonym | +8637 | harlequin coralsnake | | common name | +8637 | Micrurus fulvius fulvius | | synonym | +8637 | Micrurus fulvius | | scientific name | +8638 | Naja | | scientific name | +8656 | Chinese cobra | | genbank common name | +8656 | Naja atra atra | | synonym | +8656 | Naja atra Cantor, 1842 | | authority | +8656 | Naja atra | | scientific name | +8656 | Naja naja atra | | synonym | +8656 | Taiwan cobra | | common name | +8657 | Central Asian cobra | | genbank common name | +8657 | Naja naja oxiana | | synonym | +8657 | Naja oxiana | | scientific name | +8657 | Oxus cobra | | common name | +8657 | Tomyris oxiana Eichwald, 1831 | | authority | +8657 | Tomyris oxiana | | synonym | +8661 | Notechis | | scientific name | +8663 | common tiger snake | | common name | +8663 | mainland tiger snake | | genbank common name | +8663 | Naja scutata Peters, 1861 | | authority | +8663 | Naja scutata | | synonym | +8663 | Notechis scutatus (Peters, 1861) | | authority | +8663 | Notechis scutatus | | scientific name | +8669 | Pseudechis | | scientific name | +8670 | king brown snake | | common name | +8670 | mulga snake | | genbank common name | +8670 | Naja australis Gray, 1842 | | authority | +8670 | Naja australis | | synonym | +8670 | Pseudechis australis | | scientific name | +8682 | beaked sea snake | | genbank common name | +8682 | common sea snake | | common name | +8682 | Enhydrina schistosa (Daudin, 1803) | | authority | +8682 | Enhydrina schistosa | | synonym | +8682 | Hydrophis schistosa Schlegel, 1837 | | authority | +8682 | Hydrophis schistosa | | synonym | +8682 | Hydrophis schistosus Daudin, 1803 | | authority | +8682 | Hydrophis schistosus | | scientific name | +8683 | Chitulia | | synonym | +8683 | Disteira | | synonym | +8683 | Enhydrina | | includes | +8683 | Hydrophis Latreille, 1801 | | authority | +8683 | Hydrophis | | scientific name | +8683 | Kerilia | | synonym | +8683 | Lapemis | | synonym | +8683 | Leioselasma | | synonym | +8683 | Polyodontognathus | | synonym | +8683 | Praescutata | | synonym | +8688 | Anguis platura Linnaeus, 1766 | | authority | +8688 | Anguis platura | | synonym | +8688 | Hydrophis platurus | | scientific name | +8688 | pelagic sea snake | | genbank common name | +8688 | Pelamis platura | | synonym | +8688 | Pelamis platurus | | synonym | +8688 | yellow-bellied sea snake | | common name | +8691 | Bitis | | scientific name | +8693 | Bitis caudalis | | scientific name | +8693 | horned adder | | common name | +8693 | horned viper | | genbank common name | +8693 | Vipera caudalis Smith, 1839 | | authority | +8693 | Vipera caudalis | | synonym | +8695 | Bitis nasicornis | | scientific name | +8695 | Coluber nasicornis Shaw & Nodder, 1792 | | authority | +8695 | Coluber nasicornis | | synonym | +8695 | rhinoceros adder | | common name | +8695 | rhinoceros viper | | genbank common name | +8703 | Vipera | | scientific name | +8714 | Agkistrodon halys pallas | | synonym | +8714 | Agkistrodon halys | | synonym | +8714 | Agkistrodon sp. | | includes | +8714 | Coluber halys Pallas, 1776 | | authority | +8714 | Coluber halys | | synonym | +8714 | Gloydius halys (Pallas, 1776) | | authority | +8714 | Gloydius halys pallas | | synonym | +8714 | Gloydius halys | | scientific name | +8714 | Halys viper | | genbank common name | +8714 | Siberian pit viper | | common name | +8721 | Bothriopsis | | synonym | +8721 | Bothrops | | scientific name | +8723 | Bothrops insularis | | scientific name | +8723 | golden lancehead | | genbank common name | +8723 | island jararaca | | common name | +8723 | Lachesis insularis Amaral, 1921 | | authority | +8723 | Lachesis insularis | | synonym | +8723 | Queimada jararaca | | common name | +8725 | barba amarilla | | genbank common name | +8725 | Bothrops atrox | | scientific name | +8725 | Bothrops colombiensis | | synonym | +8725 | Coluber atrox Linnaeus, 1758 | | authority | +8725 | Coluber atrox | | synonym | +8725 | common lancehead | | common name | +8725 | fer-de-lance | | common name | +8725 | Trimeresurus atrox | | synonym | +8731 | cascabel | cascabel | common name | +8731 | Crotalus durissus Linnaeus, 1758 | | authority | +8731 | Crotalus durissus | | scientific name | +8731 | tropical rattlesnake | tropical rattlesnake | genbank common name | +8732 | cascabel | cascabel | common name | +8732 | Caudisona terrifica Laurenti, 1768 | | authority | +8732 | Caudisona terrifica | | synonym | +8732 | Crotalus durissus terrificus (Laurenti, 1768) | | authority | +8732 | Crotalus durissus terrificus | | scientific name | +8732 | Crotalus terrificus | | synonym | +8732 | South American rattlesnake | | common name | +8732 | tropical rattlesnake | tropical rattlesnake | genbank common name | +8764 | Cryptelytrops | | synonym | +8764 | Sinovipera Guo & Wang 2011 | | authority | +8764 | Sinovipera | | synonym | +8764 | Trimeresurus | | scientific name | +8764 | Viridovipera | | synonym | +8765 | Cryptelytrops albolabris | | synonym | +8765 | green pit viper | | common name | +8765 | Trimeresurus albolabris Gray, 1842 | | authority | +8765 | Trimeresurus albolabris | | scientific name | +8765 | white-lipped pit viper | | common name | +8765 | white-lipped tree viper | | genbank common name | +8767 | Coluber graminaeus Shaw, 1802 | | authority | +8767 | Coluber graminaeus | | synonym | +8767 | Craspedocephalus gramineus | | scientific name | +8767 | Craspedocephalus gramineus (Shaw, 1802) | | authority | +8767 | green habu snake | | common name | +8767 | Indian green tree viper | | genbank common name | +8767 | Trimeresurus gramineus | | includes | +8767 | Trimeresurus gramineus (Shaw, 1802) | | authority | +8769 | hime-habu | | common name | +8769 | himehabu | | genbank common name | +8769 | Ovophis okinavensis (Boulenger, 1892) | | authority | +8769 | Ovophis okinavensis | | scientific name | +8769 | Trimeresurus okinavensis Boulenger, 1892 | | authority | +8769 | Trimeresurus okinavensis | | synonym | +8786 | Casuarius Brisson, 1760 | | authority | +8786 | Casuarius | | scientific name | +8787 | Australian cassowary | | common name | +8787 | Casuarius casuarius (Linnaeus, 1758) | | authority | +8787 | Casuarius casuarius | | scientific name | +8787 | double-wattled cassowary | | common name | +8787 | southern cassowary | | genbank common name | +8787 | Struthio casuarius Linnaeus, 1758 | | authority | +8787 | Struthio casuarius | | synonym | +8796 | Rhea | | scientific name | +8797 | common rhea | | common name | +8797 | greater rhea | | genbank common name | +8797 | Rhea americana | | scientific name | +8797 | Struthio americanus Linnaeus, 1758 | | authority | +8797 | Struthio americanus | | synonym | +8800 | Struthio | | scientific name | +8801 | African ostrich | | genbank common name | +8801 | ostrich | | common name | +8801 | Struthio camelus domesticus | | synonym | +8801 | Struthio camelus Linnaeus, 1758 | | authority | +8801 | Struthio camelus | | scientific name | +8812 | Megalapteryx | | scientific name | +8813 | Dinornis didinus Owen, 1883 | | authority | +8813 | Dinornis didinus | | synonym | +8813 | Megalapteryx didinus | | scientific name | +8813 | South Island tokoweka | | common name | +8813 | tokoweka | | common name | +8813 | upland moa | | genbank common name | +8835 | Anas | | scientific name | +8835 | ducks | | genbank common name | +8838 | Anas penelope Linnaeus, 1758 | | authority | +8838 | Anas penelope | | synonym | +8838 | Eurasian wigeon | | genbank common name | +8838 | European wigeon | | common name | +8838 | Mareca penelope | | scientific name | +8838 | widgeon | | common name | +8839 | Anas boschas | | synonym | +8839 | Anas domesticus | | synonym | +8839 | Anas platyrhynchos f. domestica | | synonym | +8839 | Anas platyrhynchos Linnaeus, 1758 | | authority | +8839 | Anas platyrhynchos | | scientific name | +8839 | Beijing ducks | | includes | +8839 | domestic duck | | includes | +8839 | duck | | common name | +8839 | mallard duck | | common name | +8839 | mallard ducks | | common name | +8839 | mallard | | genbank common name | +8839 | Pekin duck | | includes | +8839 | Peking duck | | includes | +8842 | Anser | | scientific name | +8842 | Chen | | includes | +8842 | geese | | genbank common name | +8843 | Anas anser Linnaeus, 1758 | | authority | +8843 | Anas anser | | synonym | +8843 | Anser anser domesticus | | equivalent name | +8843 | Anser anser (Linnaeus, 1758) | | authority | +8843 | Anser anser | | scientific name | +8843 | Domestic goose | | genbank common name | +8843 | graylag goose | | common name | +8843 | greylag goose | | common name | +8845 | Anas cygnoid Linnaeus, 1758 | | authority | +8845 | Anas cygnoid | | synonym | +8845 | Anser cygnoides domesticus | | equivalent name | +8845 | Anser cygnoides (Linnaeus, 1758) | | authority | +8845 | Anser cygnoides | | scientific name | +8845 | Chinese goose | | common name | +8845 | Swan goose | | genbank common name | +8845 | white Chinese goose | | common name | +8854 | Cairina | | scientific name | +8855 | Anas moschata Linnaeus, 1758 | | authority | +8855 | Anas moschata | | synonym | +8855 | Cairina moschata domestica Donkin, 1989 | | authority | +8855 | Cairina moschata domestica | | synonym | +8855 | Cairina moschata domesticus | | synonym | +8855 | Cairina moschata (Linnaeus, 1758) | | authority | +8855 | Cairina moschata | | scientific name | +8855 | Cairina moschata var. domestica | | synonym | +8855 | muscovy | | common name | +8855 | Muscovy Duck (domestic type) | | common name | +8855 | Muscovy duck | | genbank common name | +8855 | musky duck | | common name | +8859 | Chloephaga | | scientific name | +8861 | Anas picta Gmelin, 1789 | | authority | +8861 | Anas picta | | synonym | +8861 | Chloephaga picta | | scientific name | +8861 | Magellan goose | | common name | +8861 | upland goose | | genbank common name | +8867 | Cygnus | | scientific name | +8867 | swans | | genbank common name | +8870 | Dendrocygna | | scientific name | +8871 | Anas arborea Linnaeus, 1758 | | authority | +8871 | Anas arborea | | synonym | +8871 | black-billed whistling-duck | | genbank common name | +8871 | Dendrocygna arborea | | scientific name | +8871 | West Indian tree duck | | common name | +8872 | Anas arcuata Horsfield, 1824 | | authority | +8872 | Anas arcuata | | synonym | +8872 | Dendrocygna arcuata | | scientific name | +8872 | wandering whistling-duck | | genbank common name | +8872 | wandering whistling tree duck | | common name | +8873 | Anas autumnalis Linnaeus, 1758 | | authority | +8873 | Anas autumnalis | | synonym | +8873 | black-bellied tree duck | | common name | +8873 | black-bellied whistling-duck | | genbank common name | +8873 | Dendrocygna autumnalis | | scientific name | +8873 | red-billed whistling-duck | | common name | +8874 | Anas bicolor | | synonym | +8874 | Anas bicolor Vieillot, 1816 | | authority | +8874 | Dendrocygna bicolor | | scientific name | +8874 | Dendrocygna bicolor (Vieillot, 1816) | | authority | +8874 | fulvous tree duck | | common name | +8874 | fulvous whistling-duck | | genbank common name | +8875 | Dendrocygna eytoni | | scientific name | +8875 | Leptotarsis eytoni Eyton, 1838 | | authority | +8875 | Leptotarsis eytoni | | synonym | +8875 | plumed whistling duck | | common name | +8875 | plumed whistling-duck | | genbank common name | +8876 | Anas viduata Linnaeus, 1766 | | authority | +8876 | Anas viduata | | synonym | +8876 | Dendrocygna viduata (Linnaeus, 1766) | | authority | +8876 | Dendrocygna viduata | | scientific name | +8876 | Dendrocygna viduata viduata | | synonym | +8876 | white-faced tree duck | | common name | +8876 | white-faced whistling-duck | | genbank common name | +8883 | Oxyura | | scientific name | +8885 | Erismatura vittata Philippi, 1860 | | authority | +8885 | Erismatura vittata | | synonym | +8885 | lack duck | | genbank common name | +8885 | lake duck | | common name | +8885 | Oxyura vittata | | scientific name | +8894 | Apus | | scientific name | +8895 | Apus apus (Linnaeus, 1758) | | authority | +8895 | Apus apus | | scientific name | +8895 | common swift | | genbank common name | +8895 | Eurasian swift | | common name | +8895 | Hirundo apus Linnaeus, 1758 | | authority | +8895 | Hirundo apus | | synonym | +8895 | Mauersegler | | common name | +8895 | swift | | common name | +8909 | Hoplopterus spinosus (Linnaeus, 1758) | | authority | +8909 | Hoplopterus spinosus | | synonym | +8909 | spur-winged lapwing | | common name | +8909 | spur-winged plover | | genbank common name | +8909 | Vanellus spinosus (Linnaeus, 1758) | | authority | +8909 | Vanellus spinosus | | scientific name | +8911 | Larus | | scientific name | +8918 | Calidris Merrem, 1804 | | authority | +8918 | Calidris | | scientific name | +8931 | Columba | | scientific name | +8932 | carrier pigeon | | common name | +8932 | Columba domestica | | equivalent name | +8932 | Columba livia domestica | | synonym | +8932 | Columba livia Gmelin, 1789 | | authority | +8932 | Columba livia Gmelin, JF, 1789 | | authority | +8932 | Columba livia | | scientific name | +8932 | domestic pigeon | | common name | +8932 | rock dove | | common name | +8932 | rock pigeon | | genbank common name | +8944 | Eudynamys | | scientific name | +8945 | Asian koel | | genbank common name | +8945 | common koel | | common name | +8945 | Cuculus scolopaceus Linnaeus, 1758 | | authority | +8945 | Cuculus scolopaceus | | synonym | +8945 | Eudynamys scolopacea | | synonym | +8945 | Eudynamys scolopaceus (Linnaeus, 1758) | | authority | +8945 | Eudynamys scolopaceus | | scientific name | +8956 | Accipiter | | scientific name | +8957 | Accipiter gentilis (Linnaeus, 1758) | | authority | +8957 | Accipiter gentilis | | scientific name | +8957 | Accipiter gentillis | | synonym | +8957 | Eurasian goshawk | | common name | +8957 | Falco gentilis Linnaeus, 1758 | | authority | +8957 | Falco gentilis | | synonym | +8957 | goshawk | | common name | +8957 | Habicht | | common name | +8957 | Northern goshawk | | genbank common name | +8958 | Aegypius | | scientific name | +8959 | Aegypius monachus | | scientific name | +8959 | black vulture | black vulture | common name | +8959 | Cinereous vulture | | genbank common name | +8959 | Vultur monachus Linnaeus, 1766 | | authority | +8959 | Vultur monachus | | synonym | +8963 | Circus | | scientific name | +8963 | harriers | | genbank common name | +8964 | Circus aeruginosus (Linnaeus, 1758) | | authority | +8964 | Circus aeruginosus | | scientific name | +8964 | Falco aeruginosus Linnaeus, 1758 | | authority | +8964 | Falco aeruginosus | | synonym | +8964 | marsh harrier | | common name | +8964 | western marsh harrier | | genbank common name | +8965 | Gyps | | scientific name | +8972 | Polyboroides | | scientific name | +8973 | African harrier-hawk | | common name | +8973 | Madagascar harrier-hawk | | genbank common name | +8973 | Polyboroides radiatus | | scientific name | +8973 | Vultur radiatus Scopoli, 1786 | | authority | +8973 | Vultur radiatus | | synonym | +9001 | Centrocercus | | scientific name | +9002 | Centrocercus urophasianus | | scientific name | +9002 | Centrocerus urophasianus | | synonym | +9002 | greater sage grouse | | common name | +9002 | Greater sage-grouse | | genbank common name | +9002 | sage grouse | | common name | +9002 | Tetrao urophasianus Bonaparte, 1827 | | authority | +9002 | Tetrao urophasianus | | synonym | +9013 | Colinus Goldfuss 1820 | | authority | +9013 | Colinus | | scientific name | +9014 | bobwhite quail | | common name | +9014 | Colinus virginianus (Linnaeus, 1758) | | authority | +9014 | Colinus virginianus | | scientific name | +9014 | common bobwhite | | common name | +9014 | northern bobwhite | | genbank common name | +9014 | Tetrao virginianus Linnaeus, 1758 | | authority | +9014 | Tetrao virginianus | | synonym | +9016 | Cyrtonyx | | scientific name | +9017 | Cyrtonyx montezumae | | scientific name | +9017 | Cyrtonyx montezumae (Vigors, 1830) | | authority | +9017 | Mearns's quail | | common name | +9017 | Montezuma quail | | genbank common name | +9017 | Ortyx montezumae | | synonym | +9017 | Ortyx montezumae Vigors, 1830 | | authority | +9018 | Francolinus | | scientific name | +9018 | Francolinus Stephens 1819 | | authority | +9019 | Francolinus pondicerianus | | scientific name | +9019 | gray francolin | | genbank common name | +9019 | gray partridge | gray partridge | common name | +9019 | Indian grey partridge | | common name | +9019 | Ortygornis pondicerianus (Gmelin, 1789) | | authority | +9019 | Ortygornis pondicerianus | | synonym | +9019 | Tetrao pondicerianus Gmelin, 1789 | | authority | +9019 | Tetrao pondicerianus | | synonym | +9020 | bare-throated francolin | | common name | +9020 | Francolinus afer (Muller, 1776) Looss, 1899 | | synonym | +9020 | Pternistis afer (Muller, 1776) Looss, 1899 | | authority | +9020 | Pternistis afer | | scientific name | +9020 | Red-necked spurfowl | | genbank common name | +9030 | Gallus | | scientific name | +9031 | bantam | | common name | +9031 | chicken | | genbank common name | +9031 | chickens | | common name | +9031 | dwarf Leghorn chickens | | includes | +9031 | Gallus domesticus | | equivalent name | +9031 | Gallus gallus domesticus | | synonym | +9031 | Gallus gallus | | scientific name | +9031 | Phasianus gallus Linnaeus, 1758 | | authority | +9031 | Phasianus gallus | | synonym | +9031 | red junglefowl | | includes | +9041 | Lophura | | scientific name | +9043 | Edward's pheasant | | common name | +9043 | Edwards's pheasant | | genbank common name | +9043 | Gennaeus edwardsi Oustalet, 1896 | | authority | +9043 | Gennaeus edwardsi | | synonym | +9043 | Lophura edwardsi | | scientific name | +9051 | Perdix | | scientific name | +9052 | gray partridge | gray partridge | common name | +9052 | grey partridge | | genbank common name | +9052 | Perdix perdix (Linnaeus, 1758) | | authority | +9052 | Perdix perdix | | scientific name | +9052 | Rebhuhn | | common name | +9052 | Tetrao perdix Linnaeus, 1758 | | authority | +9052 | Tetrao perdix | | synonym | +9058 | Polyplectron | | scientific name | +9059 | gray peacock-pheasant | | genbank common name | +9059 | Pavo bicalcaratus Linnaeus, 1758 | | authority | +9059 | Pavo bicalcaratus | | synonym | +9059 | peacock-pheasant | | common name | +9059 | Polyplectron bicalcaratum | | scientific name | +9062 | Syrmaticus | | scientific name | +9067 | copper pheasant | | genbank common name | +9067 | copper pheasants | | common name | +9067 | Phasianus soemmerringii | | synonym | +9067 | Phasianus soemmerringii Temminck, 1830 | | authority | +9067 | Syrmaticus soemmerringii | | scientific name | +9067 | Syrmaticus soemmerringii (Temminck, 1830) | | authority | +9077 | Alectoris | | scientific name | +9095 | Crossoptilon | | scientific name | +9104 | Arborophila | | scientific name | +9105 | Arborophila torqueola | | scientific name | +9105 | Arborophila torqueola (Valenciennes, 1825) | | authority | +9105 | common hill-partridge | | common name | +9105 | hill partridge | | genbank common name | +9105 | Perdix torqueola | | synonym | +9105 | Perdix torqueola Valenciennes, 1825 | | authority | +9114 | Grus | | scientific name | +9114 | Tetrapteryx | | synonym | +9124 | Gallirallus | | scientific name | +9134 | canaries | canaries | common name | +9134 | Serinus | | scientific name | +9135 | Atlantic canary | | common name | +9135 | Canario raza | | equivalent name | +9135 | canary | | common name | +9135 | Common canary | | genbank common name | +9135 | Fringilla canaria Linnaeus, 1758 | | synonym | +9135 | Serinus canaria (Linnaeus, 1758) | | authority | +9135 | Serinus canaria | | scientific name | +9135 | Serinus canarius | | synonym | +9151 | black-billed sicklebill | | genbank common name | +9151 | buff-tailed sicklebill | | common name | +9151 | Drepanornis albertisi | | scientific name | +9151 | Drepanornis albertisi (Sclater, 1873) | | authority | +9151 | Epimachus albertisi (Sclater, 1873) | | authority | +9151 | Epimachus albertisi | | synonym | +9159 | Passer | | scientific name | +9160 | Eurasian tree sparrow | | genbank common name | +9160 | Fringilla montana Linnaeus, 1758 | | authority | +9160 | Fringilla montana | | synonym | +9160 | Passer montanus | | scientific name | +9160 | tree sparrow | | common name | +9181 | Abrornis | | synonym | +9181 | Phylloscopus | | scientific name | +9186 | Turdus | | scientific name | +9207 | Phalacrocorax Brisson, 1760 | | authority | +9207 | Phalacrocorax | | scientific name | +9207 | Stictocarbo | | synonym | +9209 | common cormorant | | common name | +9209 | cormorant | | common name | +9209 | great cormorant | | genbank common name | +9209 | Pelecanus carbo Linnaeus, 1758 | | authority | +9209 | Pelecanus carbo | | synonym | +9209 | Phalacrocorax carbo (Linnaeus, 1758) | | authority | +9209 | Phalacrocorax carbo | | scientific name | +9210 | black cormorant | | common name | +9210 | black shag | | common name | +9210 | Carbo sulcirostris | | synonym | +9210 | Carbo sulcirostris von Brandt, 1837 | | authority | +9210 | Hypoleucos sulcirostris | | synonym | +9210 | little black cormorant | | genbank common name | +9210 | Phalacrocorax sulcirostris (Brandt, 1837) | | authority | +9210 | Phalacrocorax sulcirostris | | scientific name | +9216 | Phoenicopterus | | scientific name | +9225 | Ara | | scientific name | +9226 | Ara ararauna (Linnaeus, 1758) | | authority | +9226 | Ara ararauna | | scientific name | +9226 | blue and gold macaw | | common name | +9226 | blue-and-yellow macaw | | genbank common name | +9226 | Psittacus ararauna Linnaeus, 1758 | | authority | +9226 | Psittacus ararauna | | synonym | +9227 | Psittacula | | scientific name | +9228 | Psittacula krameri | | scientific name | +9228 | Psittacula krameri Scopoli, 1769 | | authority | +9228 | Psittacus krameri Scopoli, 1769 | | authority | +9228 | Psittacus krameri | | synonym | +9228 | Ring-necked Parakeet | | common name | +9228 | Rose-ringed parakeet | | genbank common name | +9235 | Eudyptes | | scientific name | +9247 | Turnix | | scientific name | +9248 | Andalusian buttonquail | | genbank common name | +9248 | small buttonquail | | common name | +9248 | Tetrao sylvaticus Desfontaines, 1789 | | authority | +9248 | Tetrao sylvaticus | | synonym | +9248 | Turnix sylvatica | | synonym | +9248 | Turnix sylvaticus (Desfontaines, 1789) | | authority | +9248 | Turnix sylvaticus | | scientific name | +9257 | Ornithorhynchus | | scientific name | +9258 | duck-billed platypus | | common name | +9258 | duckbill platypus | | common name | +9258 | Ornithorhynchus anatinus | | scientific name | +9258 | Ornithorhynchus anatinus (Shaw, 1799) | | authority | +9258 | Platypus anatinus Shaw, 1799 | | authority | +9258 | Platypus anatinus | | synonym | +9258 | platypus | | genbank common name | +9260 | short-nosed echidnas | | genbank common name | +9260 | Tachyglossus | | scientific name | +9261 | Australian echidna | | genbank common name | +9261 | Myrmecophaga aculeata Shaw, 1792 | | authority | +9261 | Myrmecophaga aculeata | | synonym | +9261 | short-beaked echidna | | common name | +9261 | Tachyglossus aculeatus | | scientific name | +9261 | Tachyglossus aculeatus (Shaw, 1792) | | authority | +9266 | Didelphis | | scientific name | +9267 | Didelphis marsupialis virginiana | | synonym | +9267 | Didelphis virginiana Kerr, 1792 | | authority | +9267 | Didelphis virginiana | | scientific name | +9267 | North American opossum | | genbank common name | +9267 | Virginia opossum | | common name | +9274 | Thylacinus | | scientific name | +9275 | Didelphis cynocephala Harris, 1808 | | authority | +9275 | Didelphis cynocephala | | synonym | +9275 | Tasmanian tiger | | common name | +9275 | Tasmanian wolf | | genbank common name | +9275 | thylacine | | common name | +9275 | Thylacinus cynocephalus | | scientific name | +9288 | Micromurexia | | synonym | +9288 | Murexechinus | | synonym | +9288 | Murexia | | scientific name | +9288 | Paramurexia | | synonym | +9288 | Phascomurexia | | synonym | +9288 | short-haired marsupial mice | | genbank common name | +9298 | Pseudantechinus | | scientific name | +9300 | Sminthopsis | | scientific name | +9302 | Australian stripe-faced dunnart | | common name | +9302 | Podabrus macrourus Gould, 1845 | | authority | +9302 | Podabrus macrourus | | synonym | +9302 | Sminthopsis macroura | | scientific name | +9302 | stripe-faced dunnart | | genbank common name | +9309 | Potorous | | scientific name | +9310 | Didelphis tridactyla Kerr, 1792 | | authority | +9310 | Didelphis tridactyla | | synonym | +9310 | long-nosed potoroo | | genbank common name | +9310 | long-nosed rat kangaroo | | common name | +9310 | potoroo | | common name | +9310 | Potorous tridactylus | | scientific name | +9314 | antelopine kangaroo | | genbank common name | +9314 | antilopine wallaroo | | common name | +9314 | Macropus antilopinus | | synonym | +9314 | Osphranter antilopinus (Gould, 1842) | | authority | +9314 | Osphranter Antilopinus Gould, 1842 | | authority | +9314 | Osphranter antilopinus | | scientific name | +9314 | Osphranter Antilopinus | | synonym | +9319 | common wallaroo | | genbank common name | +9319 | hill wallaroo | | common name | +9319 | Macropus robustus Gould, 1840 | | authority | +9319 | Macropus robustus | | synonym | +9319 | Osphranter robustus | | scientific name | +9324 | Petrogale Gray, 1837 | | authority | +9324 | Petrogale | | scientific name | +9324 | rock wallabies | | genbank common name | +9332 | Pseudocheirus | | scientific name | +9333 | common ring-tailed possum | | genbank common name | +9333 | Didelphis peregrinus Boddaert, 1785 | | authority | +9333 | Didelphis peregrinus | | synonym | +9333 | Pseudocheirus peregrinus | | scientific name | +9333 | Queensland ringtail | | common name | +9336 | brush-tailed possums | | genbank common name | +9336 | Trichosurus | | scientific name | +9337 | common brush-tailed possum | | common name | +9337 | common brushtail | | genbank common name | +9337 | Didelphis vulpecula Kerr, 1792 | | authority | +9337 | Didelphis vulpecula | | synonym | +9337 | silver-gray brushtail possum | | common name | +9337 | Trichosurus vulpecula (Kerr, 1792) | | authority | +9337 | Trichosurus vulpecula | | scientific name | +9353 | Bradypus | | scientific name | +9353 | three-toed sloth | | common name | +9353 | three-toed sloths | | genbank common name | +9355 | Bradypus griseus | | synonym | +9355 | Bradypus variegatus Schinz, 1825 | | authority | +9355 | Bradypus variegatus | | scientific name | +9355 | Brown-throated sloth | | genbank common name | +9355 | brown-throated three-fingered sloth | | common name | +9355 | brown-throated three-toed sloth | | common name | +9367 | Aethechinus | | synonym | +9367 | Atelerix | | scientific name | +9368 | Atelerix albiventris | | scientific name | +9368 | Erinaceus albiventris | | synonym | +9368 | Erinaceus albiventris Wagner, 1841 | | authority | +9368 | four-toed hedgehog | | common name | +9368 | middle-African hedgehog | | genbank common name | +9370 | Echinops | Echinops | scientific name | +9370 | Echinops Martin, 1838 | | authority | +9371 | Echinops telfairii | | synonym | +9371 | Echinops telfairi Martin, 1838 | | authority | +9371 | Echinops telfairi | | scientific name | +9371 | lesser hedgehog tenrec | | common name | +9371 | small Madagascar hedgehog | | genbank common name | +9377 | musk shrews | | genbank common name | +9377 | Suncus Ehrenberg, 1832 | | authority | +9377 | Suncus | | scientific name | +9378 | Asian house shrew | | common name | +9378 | house shrew | | genbank common name | +9378 | Sorex murinus Linnaeus, 1766 | | authority | +9378 | Sorex murinus | | synonym | +9378 | Suncus murinus (Linnaeus, 1766) | | authority | +9378 | Suncus murinus | | scientific name | +9386 | Blarina | | scientific name | +9387 | Blarina brevicauda | | scientific name | +9387 | northern short-tailed shrew | | common name | +9387 | short-tailed shrew | | genbank common name | +9387 | Sorex brevicaudus Say, 1823 | | authority | +9387 | Sorex brevicaudus | | synonym | +9394 | Tupaia Raffles, 1821 | | authority | +9394 | Tupaia | | scientific name | +9395 | common tree shrew | common tree shrew | genbank common name | +9395 | Sorex glis Diard, 1820 | | authority | +9395 | Sorex glis | | synonym | +9395 | tree shrew | | common name | +9395 | Tupaia glis | | scientific name | +9399 | Cynopterus | | scientific name | +9400 | Cynopterus sphinx | | scientific name | +9400 | greater short-nosed fruit bat | | common name | +9400 | Indian short-nosed fruit bat | | genbank common name | +9400 | Vespertilio sphinx | | synonym | +9400 | Vespertilio sphinx Vahl, 1797 | | authority | +9410 | Macroderma | | scientific name | +9411 | Australian false vampire bat | | common name | +9411 | Australian ghost bat | | genbank common name | +9411 | Australian giant false vampire | | common name | +9411 | Macroderma gigas | | scientific name | +9411 | Megaderma gigas Dobson, 1880 | | authority | +9411 | Megaderma gigas | | synonym | +9416 | Artibeus | | scientific name | +9416 | neotropical fruit bats | | genbank common name | +9425 | Tonatia | | scientific name | +9426 | greater round-eared bat | | common name | +9426 | Spix's round-eared bat | | genbank common name | +9426 | Tonatia bidens | | scientific name | +9426 | Vampyrus bidens Spix, 1823 | | authority | +9426 | Vampyrus bidens | | synonym | +9429 | Desmodus | | scientific name | +9430 | common vampire bat | | genbank common name | +9430 | Desmodus rotundus | | scientific name | +9430 | Phyllostoma rotundum Geoffroy, 1810 | | authority | +9430 | Phyllostoma rotundum | | synonym | +9430 | vampire bat | | common name | +9432 | Miniopterus | | scientific name | +9433 | Common bent-wing bat | | common name | +9433 | Miniopterus schreibersii Kuhl, 1817 | | authority | +9433 | Miniopterus schreibersi | | includes | +9433 | Miniopterus schreibersii | | scientific name | +9433 | Schreibers' long-fingered bat | | genbank common name | +9433 | Schreibers's long-fingered bat | | common name | +9434 | Myotis | | scientific name | +9435 | cave myotis | | common name | +9435 | mouse-eared bat | | genbank common name | +9435 | Myotis velifer | | scientific name | +9435 | Vespertilio velifer Allen, 1890 | | authority | +9435 | Vespertilio velifer | | synonym | +9462 | Galago | | scientific name | +9463 | Galago crassicaudatus | | synonym | +9463 | greater galago | | common name | +9463 | Otolemur crassicaudatus E Geoffroy, 1812 | | authority | +9463 | Otolemur crassicaudatus | | scientific name | +9463 | thick-tailed bush baby | | genbank common name | +9463 | thick-tailed galago | | common name | +9477 | Cephalopachus bancanus (Horsfield, 1821) | | authority | +9477 | Cephalopachus bancanus | | scientific name | +9477 | Horsfield's tarsier | | genbank common name | +9477 | Tarsius bancanus Horsfield, 1821 | | authority | +9477 | Tarsius bancanus | | synonym | +9477 | Western tarsier | | common name | +9483 | Callithrix jacchus jacchus | | synonym | +9483 | Callithrix jacchus | | scientific name | +9483 | common marmoset | | common name | +9483 | Simia jacchus Linnaeus, 1758 | | authority | +9483 | Simia jacchus | | synonym | +9483 | white ear-tufted marmoset | | common name | +9483 | white-tufted-ear marmoset | | genbank common name | +9486 | Saguinus Hoffmannsegg, 1807 | | authority | +9486 | Saguinus | | scientific name | +9487 | brown-headed tamarin | | genbank common name | +9487 | Leontocebus fuscicollis | | scientific name | +9487 | Leontocebus fuscicollis (Spix, 1823) | | synonym | +9487 | Midas fuscicollis Spix, 1823 | | authority | +9487 | Midas fuscicollis | | synonym | +9487 | saddle-backed tamarin | | common name | +9487 | saddlebacked tamarin | | common name | +9487 | Saguinus fuscicollis (Spix, 1823) | | authority | +9487 | Saguinus fuscicollis | | synonym | +9488 | black-chested mustached tamarin | | common name | +9488 | Midas mystax Spix, 1823 | | authority | +9488 | Midas mystax | | synonym | +9488 | moustached tamarin | | genbank common name | +9488 | Saguinus mystax | | scientific name | +9494 | Callimico | | scientific name | +9495 | Callimico goeldii | | scientific name | +9495 | Callimico goeldii Thomas, 1904 | | authority | +9495 | Goeldi's marmoset | | genbank common name | +9495 | Goeldi's monkey | | common name | +9495 | Midas goeldii | | synonym | +9499 | Alouatta | | scientific name | +9499 | howler monkeys | | genbank common name | +9503 | Alouatta seniculus | | scientific name | +9503 | howler monkey | howler monkey | genbank common name | +9503 | red howler monkey | | common name | +9503 | Simia seniculus Linnaeus, 1766 | | authority | +9503 | Simia seniculus | | synonym | +9504 | Aotus | Aotus | scientific name | +9504 | Aotus Illiger, 1811 | | authority | +9504 | night monkeys | | genbank common name | +9505 | Aotus trivirgatus | | scientific name | +9505 | douroucouli | | genbank common name | +9505 | night monkey | | common name | +9505 | northern night monkey | | common name | +9505 | owl monkey | | common name | +9505 | Simia trivirgata Humboldt, 1812 | | authority | +9505 | Simia trivirgata | | synonym | +9506 | Ateles E. Geoffroy, 1806 | | authority | +9506 | Ateles | | scientific name | +9513 | capuchin monkeys | | genbank common name | +9513 | Cebus | | scientific name | +9514 | brown pale-fronted capuchin | | common name | +9514 | Cebus albifrons | | scientific name | +9514 | pale-fronted capuchin | | common name | +9514 | Simia albifrons Humboldt, 1812 | | authority | +9514 | Simia albifrons | | synonym | +9514 | white-fronted capuchin | | genbank common name | +9515 | black-capped capuchin | | common name | +9515 | brown-capped capuchin | | common name | +9515 | brown capuchin | | common name | +9515 | Cebus apella (Linnaeus, 1758) | | authority | +9515 | Cebus apella | | synonym | +9515 | Sapajus apella | | scientific name | +9515 | Simia apella Linnaeus, 1758 | | authority | +9515 | Simia apella | | synonym | +9515 | tufted capuchin | | genbank common name | +9516 | Cebus capucinus | | scientific name | +9516 | Simia capucina Linnaeus, 1758 | | authority | +9516 | Simia capucina | | synonym | +9516 | white-faced capuchin | | common name | +9516 | white-faced sapajou | | genbank common name | +9516 | white-throated capuchin | | common name | +9518 | Lagothrix E. Geoffroy, 1812 | | authority | +9518 | Lagothrix | | scientific name | +9518 | woolly monkeys | | genbank common name | +9519 | brown woolly monkey | | genbank common name | +9519 | common woolly monkey | | common name | +9519 | Humboldt's woolly monkey | | common name | +9519 | Lagothrix lagotricha (Humboldt, 1812) | | authority | +9519 | Lagothrix lagotricha lagotricha | | synonym | +9519 | Lagothrix lagotricha | | scientific name | +9519 | Simia lagotricha | | synonym | +9520 | Saimiri | | scientific name | +9520 | squirrel monkeys | | genbank common name | +9521 | common squirrel monkey | | genbank common name | +9521 | Saimiri sciureus | | scientific name | +9521 | Simia sciurea Linnaeus, 1758 | | authority | +9521 | Simia sciurea | | synonym | +9521 | South American squirrel monkey | | common name | +9523 | Callicebus moloch Hoffmannsegg, 1807 | | authority | +9523 | Callicebus moloch | | synonym | +9523 | Dusky titi | | common name | +9523 | Plecturocebus moloch | | scientific name | +9523 | red-bellied titi | | genbank common name | +9529 | Cercocebus E. Geoffroy, 1812 | | authority | +9529 | Cercocebus | | scientific name | +9530 | Cercocebus torquatus (Kerr, 1792) | | authority | +9530 | Cercocebus torquatus | | scientific name | +9530 | collared mangabey | | genbank common name | +9530 | red-capped mangabey | | common name | +9530 | red-crowned mangabey | | common name | +9530 | Simia torquata Kerr, 1792 | | authority | +9530 | Simia torquata | | synonym | +9530 | white-collared mangabey | | common name | +9533 | Cercopithecus | | scientific name | +9534 | African green monkey | | common name | +9534 | African green monkeys | | common name | +9534 | Cercopithecus aethiops | | synonym | +9534 | Ceropithecus aethiops | | synonym | +9534 | Chlorocebus aethiops | | scientific name | +9534 | grivet | | genbank common name | +9534 | savanah monkey | | common name | +9534 | Simia aethiops Linnaeus, 1758 | | authority | +9534 | Simia aethiops | | synonym | +9535 | Cercopithecus cephus (Linnaeus, 1758) | | authority | +9535 | Cercopithecus cephus | | scientific name | +9535 | moustached guenon | | genbank common name | +9535 | moustached monkey | | common name | +9535 | Simia cephus Linnaeus, 1758 | | authority | +9535 | Simia cephus | | synonym | +9537 | Erythrocebus | | scientific name | +9538 | Cercopithecus patas | | synonym | +9538 | Erythrocebus patas | | scientific name | +9538 | hussar | | common name | +9538 | patas monkey | | common name | +9538 | red guenon | | genbank common name | +9538 | Simia patas Schreber, 1774 | | authority | +9538 | Simia patas | | synonym | +9539 | Macaca | | scientific name | +9539 | macaque | | common name | +9539 | macaques | | genbank common name | +9541 | crab eating macaque | | common name | +9541 | crab-eating macaque | | genbank common name | +9541 | cynomolgus macaque | | common name | +9541 | cynomolgus monkey | | common name | +9541 | cynomolgus monkeys | | common name | +9541 | long-tailed macaque | | common name | +9541 | Macaca cynomolgus | | synonym | +9541 | Macaca fascicularis Raffles, 1821 | | authority | +9541 | Macaca fascicularis | | scientific name | +9541 | Macaca irus | | synonym | +9541 | Simia fascicularis Raffles, 1821 | | authority | +9541 | Simia fascicularis | | synonym | +9544 | Cercopithecus mulatta | | synonym | +9544 | Cercopithecus mulatta Zimmermann, 1780 | | authority | +9544 | Macaca mulatta | | scientific name | +9544 | Macaca mulatta (Zimmermann, 1780) | | authority | +9544 | rhesus macaque | | common name | +9544 | rhesus macaques | | common name | +9544 | Rhesus monkey | | genbank common name | +9544 | rhesus monkeys | | common name | +9545 | Macaca nemestrina (Linnaeus, 1766) | | authority | +9545 | Macaca nemestrina | | scientific name | +9545 | pig-tailed macaque | | genbank common name | +9545 | pigtail macaque | | common name | +9545 | pigtail monkey | | common name | +9545 | Simia nemestrina Linnaeus, 1766 | | authority | +9545 | Simia nemestrina | | synonym | +9546 | Barbary ape | | genbank common name | +9546 | Barbary macaque | | common name | +9546 | Macaca sylvanus | | scientific name | +9546 | Simia sylvanus Linnaeus, 1758 | | authority | +9546 | Simia sylvanus | | synonym | +9552 | Macaca sinica | | scientific name | +9552 | Simia sinica Linnaeus, 1771 | | authority | +9552 | Simia sinica | | synonym | +9552 | toque macaque | | genbank common name | +9552 | toque monkey | | common name | +9554 | baboons | | genbank common name | +9554 | Papio Erxleben, 1777 | | authority | +9554 | Papio | | scientific name | +9555 | Anubis baboon | | synonym | +9555 | baboon | baboon | common name | +9555 | Doguera baboon | | common name | +9555 | Kenya baboon | | common name | +9555 | olive baboon | | genbank common name | +9555 | Papio anubis (Lesson, 1827) | | authority | +9555 | Papio anubis | | scientific name | +9555 | Papio cynocephalus anubis | | synonym | +9555 | Papio doguera | | synonym | +9555 | Papio hamadryas anubis | | synonym | +9555 | Papio hamadryas doguera | | synonym | +9555 | Simia anubis Lesson, 1827 | | authority | +9555 | Simia anubis | | synonym | +9556 | baboon | baboon | common name | +9556 | Papio cynocephalus (Linnaeus, 1766) | | authority | +9556 | Papio cynocephalus | | scientific name | +9556 | Papio hamadryas cynocephalus | | synonym | +9556 | Simia cynocephalus Linnaeus, 1766 | | authority | +9556 | Simia cynocephalus | | synonym | +9556 | Yellow baboon | | genbank common name | +9557 | baboon | baboon | common name | +9557 | hamadryas baboon | | genbank common name | +9557 | Papio hamadryas (Linnaeus, 1758) | | authority | +9557 | Papio hamadryas | | scientific name | +9557 | Papio hamadryas subsp. | | equivalent name | +9557 | red baboon | | common name | +9557 | sacred baboon | | common name | +9557 | Simia hamadryas Linnaeus, 1758 | | authority | +9557 | Simia hamadryas | | synonym | +9557 | western baboon | | common name | +9564 | Theropithecus | | scientific name | +9565 | bleeding heart baboon | | common name | +9565 | gelada baboon | | common name | +9565 | gelada | | genbank common name | +9565 | Macacus gelada Ruppell, 1835 | | authority | +9565 | Macacus gelada | | synonym | +9565 | Theropithecus gelada (Rueppell, 1835) | | authority | +9565 | Theropithecus gelada | | scientific name | +9570 | black-and-white colobus monkeys | | genbank common name | +9570 | Colobus | | scientific name | +9578 | Hylobates | | scientific name | +9580 | common gibbon | | genbank common name | +9580 | Homo lar Linneaus, 1771 | | authority | +9580 | Homo lar | | synonym | +9580 | Hylobates lar | | scientific name | +9580 | white-handed gibbon | | common name | +9592 | Gorilla I. Geoffroy, 1852 | | authority | +9592 | Gorilla | | scientific name | +9593 | gorilla | gorilla | common name | +9593 | Gorilla gorilla (Savage, 1847) | | authority | +9593 | Gorilla gorilla | | scientific name | +9593 | Troglodytes gorilla Savage, 1847 | | authority | +9593 | Troglodytes gorilla | | synonym | +9593 | western gorilla | | genbank common name | +9599 | Pongo | | scientific name | +9600 | Bornean orangutan | | genbank common name | +9600 | orang utan | orang utan | common name | +9600 | Orang-utan | Orang-utan | common name | +9600 | Orangutan | Orangutan | common name | +9600 | Pongo pygmaeus | | scientific name | +9600 | Simia pygmaeus Linnaeus, 1760 | | authority | +9600 | Simia pygmaeus | | synonym | +9601 | orang utan | orang utan | common name | +9601 | Orang-utan | Orang-utan | common name | +9601 | Orangutan | Orangutan | common name | +9601 | Pongo abelii Lesson, 1827 | | authority | +9601 | Pongo abelii | | scientific name | +9601 | Pongo pygmaeus abelii | | synonym | +9601 | Pongo pygmaeus abeli | | synonym | +9601 | Sumatran orangutan | | genbank common name | +9606 | Homo sapiens Linnaeus, 1758 | | authority | +9606 | Homo sapiens | | scientific name | +9606 | human | | genbank common name | +9612 | Canis lupus Linnaeus, 1758 | | authority | +9612 | Canis lupus | | scientific name | +9612 | gray wolf | | genbank common name | +9612 | grey wolf | | common name | +9615 | beagle dog | | includes | +9615 | beagle dogs | | includes | +9615 | Canis borealis Smith, 1839 | | authority | +9615 | Canis borealis | | synonym | +9615 | Canis canis | | synonym | +9615 | Canis domesticus | | synonym | +9615 | Canis familiaris Linnaeus, 1758 | | authority | +9615 | Canis familiaris | | synonym | +9615 | Canis lupus borealis Smith, 1839 | | authority | +9615 | Canis lupus borealis | | synonym | +9615 | Canis lupus familiaris Linnaeus, 1758 | | authority | +9615 | Canis lupus familiaris | | scientific name | +9615 | dog | | genbank common name | +9615 | dogs | | common name | +9620 | Canis thous Linnaeus, 1766 | | authority | +9620 | Canis thous | | synonym | +9620 | Cerdocyon thous (Linnaeus, 1766) | | authority | +9620 | Cerdocyon thous | | scientific name | +9620 | common zorro | | common name | +9620 | crab-eating fox | | genbank common name | +9620 | Dusicyon thous | | synonym | +9621 | Lycaon | | scientific name | +9622 | African hunting dog | | genbank common name | +9622 | African wild dog | | common name | +9622 | Hyaena picta | | synonym | +9622 | Hyaena picta Temminck, 1820 | | authority | +9622 | Lycaon pictus | | scientific name | +9622 | Lycaon pictus (Temminck, 1820) | | authority | +9622 | ornate wolf | | common name | +9622 | painted hunting dog | | common name | +9625 | Alopex | | includes | +9625 | Fennecus | | synonym | +9625 | Vulpes | | scientific name | +9627 | Canis vulpes Linnaeus, 1758 | | authority | +9627 | Canis vulpes | | synonym | +9627 | red fox | | genbank common name | +9627 | silver fox | | common name | +9627 | Vulpes vulpes (Linnaeus, 1758) | | authority | +9627 | Vulpes vulpes | | scientific name | +9633 | Helarctos | | scientific name | +9634 | Helarctos malayanus (Raffles, 1821) | | authority | +9634 | Helarctos malayanus | | scientific name | +9634 | Malayan sun bear | | genbank common name | +9634 | sun bear | | common name | +9634 | Ursus malayanus Raffles, 1821 | | authority | +9634 | Ursus malayanus | | synonym | +9639 | Euarctos | | includes | +9639 | Ursus | | scientific name | +9650 | Nasua | | scientific name | +9651 | Nasua nasua | | scientific name | +9651 | ring-tailed coati | ring-tailed coati | genbank common name | +9651 | South American coati | | common name | +9651 | Viverra nasua Linnaeus, 1766 | | authority | +9651 | Viverra nasua | | synonym | +9653 | Procyon | | scientific name | +9654 | northern raccoon | | common name | +9654 | Procyon lotor | | scientific name | +9654 | raccoon | | genbank common name | +9654 | Ursus lotor Linnaeus, 1758 | | authority | +9654 | Ursus lotor | | synonym | +9658 | Martes Pinel, 1792 | | authority | +9658 | Martes | | scientific name | +9659 | beach marten | | genbank common name | +9659 | beech marten | | common name | +9659 | Martes foina | | scientific name | +9659 | Mustela foina Erxleben, 1777 | | authority | +9659 | Mustela foina | | synonym | +9661 | Meles | | scientific name | +9663 | Mellivora | | scientific name | +9664 | honey badger | | common name | +9664 | Mellivora capensis | | scientific name | +9664 | ratel | | genbank common name | +9664 | Viverra capensis Schreber, 1776 | | authority | +9664 | Viverra capensis | | synonym | +9668 | European polecat | | genbank common name | +9668 | Mustela putorius Linnaeus, 1758 | | authority | +9668 | Mustela putorius | | scientific name | +9668 | Putorius putorius | | synonym | +9669 | black ferret | | common name | +9669 | domestic ferret | | genbank common name | +9669 | ferret | | common name | +9669 | Mustela furo | | synonym | +9669 | Mustela putorius furo Linnaeus, 1758 | | authority | +9669 | Mustela putorius furo | | scientific name | +9682 | Felis | | scientific name | +9685 | cat | | common name | +9685 | cats | | common name | +9685 | domestic cat | | genbank common name | +9685 | Felis catus Linnaeus, 1758 | | authority | +9685 | Felis catus | | scientific name | +9685 | Felis domesticus | | synonym | +9685 | Felis silvestris catus | | synonym | +9685 | Korat cats | | includes | +9685 | Korat cats L. | | authority | +9703 | Zalophus | | scientific name | +9704 | California sealion | | common name | +9704 | California sea lion | | genbank common name | +9704 | Otaria californiana Lesson, 1828 | | authority | +9704 | Otaria californiana | | synonym | +9704 | Zalophus californianus | | scientific name | +9710 | Halichoerus | | scientific name | +9711 | gray seal | | genbank common name | +9711 | grey seal | | common name | +9711 | Halichoerus grypus (Fabricius, 1791) | | authority | +9711 | Halichoerus grypus | | scientific name | +9711 | Phoca grypus Fabricius, 1791 | | authority | +9711 | Phoca grypus | | synonym | +9724 | Inia | | scientific name | +9725 | Amazon dolphin | | common name | +9725 | Amazon porpoise | | common name | +9725 | Amazon river dolphin | | common name | +9725 | boto | | common name | +9725 | boutu | | genbank common name | +9725 | Delphinus geoffrensis Blainville, 1817 | | authority | +9725 | Delphinus geoffrensis | | synonym | +9725 | Inia geoffrensis | | scientific name | +9725 | pink river dolphin | | common name | +9734 | Stenella | Stenella | scientific name | +9735 | bridled dolphin | | genbank common name | +9735 | pantropical spotted dolphin | | common name | +9735 | Stenella attenuata | | scientific name | +9735 | Steno attenuatus Gray, 1846 | | authority | +9735 | Steno attenuatus | | synonym | +9736 | Delphinus longirostris Gray, 1828 | | authority | +9736 | Delphinus longirostris | | synonym | +9736 | pantropical spinner dolphin | | common name | +9736 | spinner dolphin | | genbank common name | +9736 | Stenella longirostris (Gray, 1828) | | authority | +9736 | Stenella longirostris | | scientific name | +9738 | Tursiops | | scientific name | +9739 | Atlantic bottlenose dolphin | | common name | +9739 | bottle-nosed dolphin | | common name | +9739 | common bottlenose dolphin | | genbank common name | +9739 | Delphinus cymodoce Gray, 1846 | | authority | +9739 | Delphinus cymodoce | | synonym | +9739 | Delphinus truncatus Montagu, 1821 | | authority | +9739 | Delphinus truncatus | | synonym | +9739 | Tursiops cymodoce (Gray, 1846) | | authority | +9739 | Tursiops cymodoce | | synonym | +9739 | Tursiops truncatus Gervais, 1855 | | authority | +9739 | Tursiops truncatus | | scientific name | +9741 | Phocoena | | scientific name | +9742 | common porpoise | | common name | +9742 | Delphinus phocoena Linnaeus, 1758 | | authority | +9742 | Delphinus phocoena | | synonym | +9742 | harbor porpoise | | genbank common name | +9742 | Phocoena phocoena | | scientific name | +9742 | Phocoenoides phocoena | | synonym | +9748 | Delphinapterus | | scientific name | +9749 | beluga | beluga | common name | +9749 | beluga whale | | genbank common name | +9749 | Delphinapterus leucas | | scientific name | +9749 | Delphinus leucas Pallas, 1776 | | authority | +9749 | Delphinus leucas | | synonym | +9749 | white whale | | common name | +9757 | Mesoplodon | | scientific name | +9763 | Eschrichtius | | scientific name | +9764 | Balaenoptera robusta Lilljeborg, 1861 | | authority | +9764 | Balaenoptera robusta | | synonym | +9764 | California gray whale | | common name | +9764 | Eschrichtius gibbosus | | synonym | +9764 | Eschrichtius robustus | | scientific name | +9764 | gray whale | | common name | +9764 | grey whale | | genbank common name | +9766 | Balaenoptera Lacepede, 1804 | | authority | +9766 | Balaenoptera | | scientific name | +9770 | Balaena physalus Linnaeus, 1758 | | authority | +9770 | Balaena physalus | | synonym | +9770 | Balaenoptera physalus (Linnaeus, 1758) | | authority | +9770 | Balaenoptera physalus | | scientific name | +9770 | common rorqual | | common name | +9770 | finback whale | | common name | +9770 | Fin whale | | genbank common name | +9776 | Trichechus | | scientific name | +9777 | Amazonian manatee | | common name | +9777 | Amazon manatee | | genbank common name | +9777 | Brazilian manatee | | common name | +9777 | Manatus inunguis Natterer, 1883 | | authority | +9777 | Manatus inunguis | | synonym | +9777 | Trichechus inunguis | | scientific name | +9782 | Elephas | | scientific name | +9783 | Asian elephant | | common name | +9783 | Asiatic elephant | | genbank common name | +9783 | elephant | elephant | in-part | +9783 | Elephas maximus Linnaeus, 1758 | | authority | +9783 | Elephas maximus | | scientific name | +9783 | Indian elephant | | common name | +9784 | African Elephant | | common name | +9784 | African elephants | | common name | +9784 | Loxodonta | | scientific name | +9785 | African bush elephant | | common name | +9785 | African savanna elephant | | genbank common name | +9785 | African savannah elephant | | common name | +9785 | elephant | elephant | in-part | +9785 | Elephas africanus Blumenbach, 1797 | | authority | +9785 | Elephas africanus | | synonym | +9785 | Loxodonta africana africana | | synonym | +9785 | Loxodonta africana | | scientific name | +9786 | pale devil's-claw | | genbank common name | +9786 | Proboscidea louisiana (Mill.) Wooton & Standl., 1915 | | authority | +9786 | Proboscidea louisiana | | scientific name | +9786 | Proboscidea louisianica | | synonym | +9786 | ram's horn | | common name | +9789 | Amerhippus | | synonym | +9789 | Asinus | | synonym | +9789 | Dolichohippus | | synonym | +9789 | Equus | | scientific name | +9789 | Equus subg. Amerhippus | | synonym | +9789 | Equus subg. Asinus | | synonym | +9789 | Equus subg. Dolichohippus | | synonym | +9789 | Equus subgen. Sussemionus | | synonym | +9789 | Equus subg. Equus | | synonym | +9789 | Equus subg. Hemionus | | synonym | +9789 | Equus subg. Hippotigris | | synonym | +9789 | Hemionus | | synonym | +9789 | Hippotigris | | synonym | +9789 | Sussemionus | | synonym | +9794 | Asiatic wild ass | | common name | +9794 | Equus hemionus Pallas, 1775 | | authority | +9794 | Equus hemionus | | scientific name | +9794 | Equus onager | | synonym | +9794 | onager | | genbank common name | +9796 | domestic horse | | common name | +9796 | equine | | common name | +9796 | Equus caballus Linnaeus, 1758 | | authority | +9796 | Equus caballus | | scientific name | +9796 | Equus przewalskii f. caballus | | synonym | +9796 | Equus przewalskii forma caballus | | synonym | +9796 | horse | | genbank common name | +9798 | Equus caballus przewalskii | | synonym | +9798 | Equus ferus przewalskii | | synonym | +9798 | Equus przewalskii Poliakov, 1881 | | authority | +9798 | Equus przewalskii | | scientific name | +9798 | Przewalski horse | | common name | +9798 | Przewalski's horse | | genbank common name | +9800 | Tapirus | | scientific name | +9801 | Brazilian tapir | | genbank common name | +9801 | Hippopotamus terrestris Linnaeus, 1758 | | authority | +9801 | Hippopotamus terrestris | | synonym | +9801 | lowland tapir | | common name | +9801 | South American tapir | | common name | +9801 | Tapirus terrestris | | scientific name | +9806 | Ceratotherium | | scientific name | +9807 | Ceratotherium simum (Burchell, 1817) | | authority | +9807 | Ceratotherium simum | | scientific name | +9807 | Rhinoceros simus Burchell, 1817 | | authority | +9807 | Rhinoceros simus | | synonym | +9807 | square-lipped rhinoceros | | common name | +9807 | white rhinoceros | | genbank common name | +9812 | Procavia | | scientific name | +9813 | Cape hyrax | | common name | +9813 | Cape rock hyrax | | genbank common name | +9813 | Cavia capensis Pallas, 1766 | | authority | +9813 | Cavia capensis | | synonym | +9813 | large-toothed rock hyrax | | common name | +9813 | Procavia capensis | | scientific name | +9813 | rock dassie | | common name | +9813 | rock hyrax | | common name | +9843 | Camelus vicugna Molina, 1782 | | authority | +9843 | Camelus vicugna | | synonym | +9843 | Lama vicugna | | synonym | +9843 | vicugna | | genbank common name | +9843 | Vicugna vicugna (Molina, 1782) | | authority | +9843 | Vicugna vicugna | | scientific name | +9843 | vicuna | | common name | +9847 | Tragulus | | scientific name | +9848 | Balabac chevrotain | | genbank common name | +9848 | Greater Malay chevrotain | | common name | +9848 | greater mouse-deer | | common name | +9848 | Moschus Napu Cuvier, 1822 | | authority | +9848 | Moschus Napu | | synonym | +9848 | Tragulus napu | | scientific name | +9849 | Cervus javanicus Osbeck, 1765 | | authority | +9849 | Cervus javanicus | | synonym | +9849 | Java mouse-deer | | genbank common name | +9849 | Lesser Malay chevrotain | | common name | +9849 | Tragulus javanicus (Osbeck, 1765) | | authority | +9849 | Tragulus javanicus | | scientific name | +9851 | Alces Gray, 1821 | | authority | +9851 | Alces | | scientific name | +9852 | Alces alces (Linneaus, 1758) | | authority | +9852 | Alces alces | | scientific name | +9852 | Cervus alces Linnaeus, 1758 | | authority | +9852 | Cervus alces | | synonym | +9852 | elk | elk | common name | +9852 | Eurasian elk | | genbank common name | +9852 | european elk, moose | | common name | +9855 | Axis | | scientific name | +9861 | American elk | American elk | common name | +9861 | Cervus canadensis canadensis Erxleben, 1777 | | authority | +9861 | Cervus canadensis canadensis | | scientific name | +9861 | Cervus elaphus canadensis Erxleben, 1777 | | authority | +9861 | Cervus elaphus canadensis | | synonym | +9861 | Eastern wapiti | | genbank common name | +9863 | Cervus nippon | | scientific name | +9863 | Cervus nippon Temminck, 1838 | | authority | +9863 | sika deer | | genbank common name | +9867 | Dama | | scientific name | +9869 | Rangifer | | scientific name | +9870 | caribou | | common name | +9870 | Cervus tarandus Linnaeus, 1758 | | authority | +9870 | Cervus tarandus | | synonym | +9870 | Rangifer tarandus Linnaeus | | authority | +9870 | Rangifer tarandus | | scientific name | +9870 | reindeer | | genbank common name | +9885 | Megamuntiacus | | includes | +9885 | Muntiacus Rafinesque, 1815 | | authority | +9885 | Muntiacus | | scientific name | +9886 | Cervus reevesi Ogilby, 1839 | | authority | +9886 | Cervus reevesi | | synonym | +9886 | Chinese muntjac | | common name | +9886 | Muntiacus reevesi (Ogilby, 1839) | | authority | +9886 | Muntiacus reevesi | | scientific name | +9886 | Reeves' muntjac | | genbank common name | +9886 | Reeves's muntjac | | common name | +9898 | Ammotragus | | scientific name | +9899 | Ammotragus lervia | | scientific name | +9899 | Antilope lervia Pallas, 1777 | | authority | +9899 | Antilope lervia | | synonym | +9899 | aoudad | | genbank common name | +9899 | Barbary sheep | | common name | +9900 | Bison | Bison | scientific name | +9901 | American bison | | genbank common name | +9901 | Bison | Bison | common name | +9901 | Bison bison | | scientific name | +9901 | Bos (Bison) bison | | synonym | +9901 | Bos bison Linnaeus, 1758 | | authority | +9901 | Bos bison | | synonym | +9902 | Bison bison bonasus | | synonym | +9902 | Bison bonasus (Linnaeus, 1758) | | authority | +9902 | Bison bonasus | | scientific name | +9902 | bison | | common name | +9902 | Bos bonasus Linnaeus, 1758 | | authority | +9902 | Bos bonasus | | synonym | +9902 | European bison | | genbank common name | +9902 | wisent | | common name | +9903 | Bos | | scientific name | +9903 | cattle | | genbank common name | +9906 | banteng | | genbank common name | +9906 | Bos banteng | | synonym | +9906 | Bos javanicus d'Alton, 1823 | | authority | +9906 | Bos javanicus | | scientific name | +9906 | Bos sondaicus | | synonym | +9906 | wild banteng | | common name | +9913 | Bos bovis | | synonym | +9913 | Bos primigenius taurus | | synonym | +9913 | Bos taurus Linnaeus, 1758 | | authority | +9913 | Bos taurus | | scientific name | +9913 | Bovidae sp. Adi Nefas | | includes | +9913 | bovine | | common name | +9913 | cow | | common name | +9913 | dairy cow | | common name | +9913 | domestic cattle | | genbank common name | +9913 | domestic cow | | common name | +9913 | ox | | common name | +9915 | Bos indicus Linnaeus, 1758 | | authority | +9915 | Bos indicus | | scientific name | +9915 | Bos primigenius indicus | | synonym | +9915 | Bos taurus indicus | | synonym | +9915 | Indicine cattle | | common name | +9915 | zebu cattle | | genbank common name | +9915 | zebu | | common name | +9916 | Boselaphus | | scientific name | +9917 | Antilope tragocamelus Pallas, 1766 | | authority | +9917 | Antilope tragocamelus | | synonym | +9917 | blue bull | | common name | +9917 | Boselaphus tragocamelus (Pallas, 1766) | | authority | +9917 | Boselaphus tragocamelus | | scientific name | +9917 | nilgai | | genbank common name | +9917 | nilghai | | common name | +9918 | Bubalus | | scientific name | +9922 | Capra | | scientific name | +9923 | bezoar ibex | | common name | +9923 | Capra aegagrus Erxleben, 1777 | | authority | +9923 | Capra aegagrus | | scientific name | +9923 | Capra hircus aegagrus Erxleben, 1777 | | authority | +9923 | Capra hircus aegagrus | | synonym | +9923 | wild goat | | genbank common name | +9925 | African dwarf goat | | includes | +9925 | African dwarf goats | | includes | +9925 | Capra aegagrus hircus | | synonym | +9925 | Capra hircus Linnaeus, 1758 | | authority | +9925 | Capra hircus | | scientific name | +9925 | domestic goat | | common name | +9925 | goat | | genbank common name | +9925 | goats | | common name | +9925 | Naine d'Afrique de l'Ouest | | includes | +9926 | Connochaetes | | scientific name | +9927 | Antilope taurina Burchell, 1824 | | authority | +9927 | Antilope taurina | | synonym | +9927 | blue wildebeest | | common name | +9927 | brindled gnu | | genbank common name | +9927 | Connochaetes taurinus | | scientific name | +9927 | white-bearded gnu | | common name | +9933 | Gazella | | scientific name | +9933 | gazelle | | common name | +9933 | gazelles | | genbank common name | +9935 | Ovis | | scientific name | +9940 | domestic sheep | | common name | +9940 | lambs | | common name | +9940 | Ovis ammon aries | | synonym | +9940 | Ovis aries Linnaeus, 1758 | | authority | +9940 | Ovis aries | | scientific name | +9940 | Ovis orientalis aries | | synonym | +9940 | Ovis ovis | | synonym | +9940 | sheep | | genbank common name | +9940 | wild sheep | | common name | +9977 | Ochotona Link, 1795 | | authority | +9977 | Ochotona | | scientific name | +9978 | American pika | | genbank common name | +9978 | Arvicola princeps Richardson, 1829 | | authority | +9978 | Arvicola princeps | | synonym | +9978 | Ochotona princeps (Richardson, 1828) | | authority | +9978 | Ochotona princeps | | scientific name | +9978 | southern American pika | | common name | +9984 | Oryctolagus | | scientific name | +9986 | domestic rabbit | | common name | +9986 | European rabbit | | common name | +9986 | Japanese white rabbit | | common name | +9986 | Lepus cuniculus Linnaeus, 1758 | | authority | +9986 | Lepus cuniculus | | synonym | +9986 | New Zealand rabbit | | includes | +9986 | Oryctolagus cuniculus | | scientific name | +9986 | rabbit | | genbank common name | +9986 | rabbits | | common name | +9992 | Marmota Blumenbach, 1779 | | authority | +9992 | Marmota | | scientific name | +9995 | groundhog | | common name | +9995 | Marmota monax (Linnaeus, 1758) | | authority | +9995 | Marmota monax | | scientific name | +9995 | Mus monax Linnaeus, 1758 | | authority | +9995 | Mus monax | | synonym | +9995 | woodchuck | | genbank common name | +9995 | woodchucks | | common name | +9996 | old world ground squirrels | | genbank common name | +9996 | Spermophilus F. Cuvier, 1825 | | authority | +9996 | Spermophilus | | scientific name | +9997 | Citellus citellus | | synonym | +9997 | European ground squirrel | | common name | +9997 | European suslik | | genbank common name | +9997 | Mus citellus Linnaeus, 1766 | | authority | +9997 | Mus citellus | | synonym | +9997 | Spermophilus citellus | | scientific name | +10001 | Sciurus | | scientific name | +10007 | Abert's squirrel | | common name | +10007 | Hesperosciurus aberti | | synonym | +10007 | Hesperosciurus aberti (Woodhouse, 1853) | | authority | +10007 | Sciurus aberti | | scientific name | +10007 | Sciurus aberti Woodhouse, 1853 | | authority | +10007 | tassel-eared squirrel | | genbank common name | +10011 | Thomomys | | scientific name | +10012 | Geomys townsendii Bachman, 1839 | | authority | +10012 | Geomys townsendii | | synonym | +10012 | Thomomys townsendii | | scientific name | +10012 | Thomomys townsendi | | synonym | +10012 | Townsend's pocket gopher | | common name | +10012 | western pocket gopher | | genbank common name | +10016 | Dipodomys Gray, 1841 | | authority | +10016 | Dipodomys | | scientific name | +10016 | kangaroo rats | | genbank common name | +10019 | Dipodomys panamintinus (Meriam, 1894) | | authority | +10019 | Dipodomys panamintinus | | scientific name | +10019 | kangaroo rat | kangaroo rat | common name | +10019 | Panamint kangaroo rat | | genbank common name | +10019 | Perodipus panamintinus Merriam, 1894 | | authority | +10019 | Perodipus panamintinus | | synonym | +10022 | Pedetes | | scientific name | +10023 | Pedetes capensis | | scientific name | +10023 | springhaas | | common name | +10023 | spring hare | | common name | +10023 | springhare | | genbank common name | +10023 | Yerbua capensis Forster, 1778 | | authority | +10023 | Yerbua capensis | | synonym | +10028 | Cricetulus | | scientific name | +10029 | Chinese hamster | | genbank common name | +10029 | Chinese hamsters | | common name | +10029 | CHO cell lines | | includes | +10029 | Cricetulus aureus | | equivalent name | +10029 | Cricetulus barabensis griseus | | synonym | +10029 | Cricetulus griseus Milne-Edwards, 1867 | | authority | +10029 | Cricetulus griseus | | scientific name | +10033 | Cricetus | | scientific name | +10034 | black-bellied hamster | | genbank common name | +10034 | common hamster | | common name | +10034 | Cricetus cricetus | | scientific name | +10034 | Mus cricetus Linnaeus, 1758 | | authority | +10034 | Mus cricetus | | synonym | +10035 | Mesocricetus | | scientific name | +10036 | Cricetus auratus | | synonym | +10036 | Cricetus auratus Waterhouse, 1839 | | authority | +10036 | golden hamster | | genbank common name | +10036 | Golden hamsters | | synonym | +10036 | Mesocricetus auratus | | scientific name | +10036 | Mesocricetus auratus Waterhouse, 1839 | | authority | +10036 | Syrian golden hamster | | common name | +10036 | Syrian golden hamsters | | common name | +10036 | Syrian hamster | | common name | +10036 | Syrian hamsters | | synonym | +10049 | Arvicola Lacepede, 1799 | | authority | +10049 | Arvicola | | scientific name | +10053 | meadow voles | | genbank common name | +10053 | Microtus Schrank, 1798 | | authority | +10053 | Microtus | | scientific name | +10053 | Pitymys | | includes | +10054 | Arvicola xanthognatha Leach, 1814 | | authority | +10054 | Arvicola xanthognatha | | synonym | +10054 | Microtus xanthognathus | | scientific name | +10054 | taiga vole | | common name | +10054 | yellow-cheeked vole | | genbank common name | +10062 | Spalax | | scientific name | +10067 | Acomys | | scientific name | +10067 | spiny mice | | genbank common name | +10068 | Acomys airensis | | synonym | +10068 | Acomys albigena | | synonym | +10068 | Acomys cahirinus (E. Geoffrey, 1803) | | authority | +10068 | Acomys cahirinus | | scientific name | +10068 | Cairo spiny mouse | | common name | +10068 | Egyptian spiny mouse | | genbank common name | +10068 | Mus cahirinus Saint-Hilaire, 1803 | | authority | +10068 | Mus cahirinus | | synonym | +10084 | Cricetomys | | scientific name | +10085 | Cricetomys gambianus | | scientific name | +10085 | Cricetomys gambianus Waterhouse, 1840 | | authority | +10085 | Gambian giant pouched rat | | genbank common name | +10085 | Gambian pouched rats | | synonym | +10085 | Gambian pouched rat | | synonym | +10085 | Gambian rat | | common name | +10085 | Gambia rat | | common name | +10089 | Mus caroli Bonhote, 1902 | | authority | +10089 | Mus caroli | | scientific name | +10089 | Mus formosanus Kuroda, 1925 | | authority | +10089 | Mus formosanus | | synonym | +10089 | ricefield mouse | | common name | +10089 | Ryukyu mouse | | genbank common name | +10090 | house mouse | | genbank common name | +10090 | LK3 transgenic mice | | includes | +10090 | mouse | mouse | common name | +10090 | Mus musculus Linnaeus, 1758 | | authority | +10090 | Mus musculus | | scientific name | +10090 | Mus sp. 129SV | | includes | +10090 | nude mice | | includes | +10090 | transgenic mice | | includes | +10093 | Coelomys parahi | | synonym | +10093 | Gairdner's shrew-mouse | | common name | +10093 | Gairdner's shrewmouse | | common name | +10093 | Mus pahari | | scientific name | +10093 | Mus pahari Thomas, 1916 | | authority | +10093 | shrew mouse | | genbank common name | +10096 | Algerian mouse | | common name | +10096 | Mus musculus spretus | | synonym | +10096 | Mus spretus Lataste, 1883 | | authority | +10096 | Mus spretus | | scientific name | +10096 | western wild mouse | | genbank common name | +10103 | mound-building mouse | | common name | +10103 | Mus hortulanus | | synonym | +10103 | Mus spicilegus Petenyi, 1882 | | authority | +10103 | Mus spicilegus | | scientific name | +10103 | steppe mouse | | genbank common name | +10111 | African soft-furred rats | | genbank common name | +10111 | Praomys | | scientific name | +10112 | African soft-furred rat | | genbank common name | +10112 | Mastomys hildebrandtii (Peters, 1878) | | authority | +10112 | Mastomys hildebrandtii | | synonym | +10112 | Mastomys hildebrandti | | synonym | +10112 | Mastomys natalensis hildebrandtii | | synonym | +10112 | Mastomys natalensis | | scientific name | +10112 | Mastomys natalensis (Smith, 1834) | | authority | +10112 | Myomys fumatus | | synonym | +10112 | Natal multimammate mouse | | common name | +10112 | Natal multimammate rat | | common name | +10112 | Praomys natalensis | | synonym | +10113 | Dalton's mouse | | common name | +10113 | Dalton's Praomys | | genbank common name | +10113 | Myomyscus daltoni | | synonym | +10113 | Myomys daltoni | | synonym | +10113 | Praomys daltoni | | scientific name | +10113 | Praomys daltoni (Thomas, 1892) | | authority | +10114 | rat | rat | common name | +10114 | rats | rats | common name | +10114 | Rattus | | scientific name | +10116 | brown rat | | common name | +10116 | Buffalo rat | | includes | +10116 | laboratory rat | | includes | +10116 | Mus norvegicus Berkenhout, 1769 | | authority | +10116 | Mus norvegicus | | synonym | +10116 | Norway rat | | genbank common name | +10116 | rat | rat | common name | +10116 | rats | rats | common name | +10116 | Rattus norvegicus | | scientific name | +10116 | Rattus PC12 clone IS | | includes | +10116 | Rattus sp. strain Wistar | | includes | +10116 | Sprague-Dawley rat | | includes | +10116 | Wistar rats | | includes | +10116 | zitter rats | | includes | +10117 | black rat | | genbank common name | +10117 | house rat | | common name | +10117 | Mus rattus Linnaeus, 1758 | | authority | +10117 | Mus rattus | | synonym | +10117 | Rattus rattoides (Pictet & Pictet, 1844) | | authority | +10117 | Rattus rattoides | Rattus rattoides | synonym | +10117 | Rattus rattus (Linnaeus, 1758) | | authority | +10117 | Rattus rattus | | scientific name | +10117 | Rattus wroughtoni Hinton, 1919 | | authority | +10117 | Rattus wroughtoni | | synonym | +10117 | roof rat | | common name | +10121 | Mus tunneyi | | synonym | +10121 | Mus tunneyi Thomas, 1904 | | authority | +10121 | pale field rat | | common name | +10121 | Rattus tunneyi | | scientific name | +10121 | Tunney's rat | | genbank common name | +10128 | Apodemus | | scientific name | +10129 | Apodemus sylvaticus | | scientific name | +10129 | European woodmouse | | genbank common name | +10129 | Long-tailed field mouse | | common name | +10129 | Mus sylvaticus Linnaeus, 1758 | | authority | +10129 | Mus sylvaticus | | synonym | +10129 | Sylvaemus sylvaticus | | synonym | +10140 | Cavia | | scientific name | +10140 | guinea-pigs | | common name | +10140 | guinea pigs | | genbank common name | +10141 | Cavia aperea porcellus | | synonym | +10141 | Cavia cobaya | | synonym | +10141 | Cavia porcellus | | scientific name | +10141 | domestic guinea pig | | genbank common name | +10141 | guinea pig | | common name | +10141 | Mus porcellus Linnaeus, 1758 | | authority | +10141 | Mus porcellus | | synonym | +10145 | Galea | | scientific name | +10146 | Common yellow-toothed cavy | | common name | +10146 | cuis | | genbank common name | +10146 | Galea comes | | synonym | +10146 | Galea musteloides Meyen, 1833 | | authority | +10146 | Galea musteloides | | scientific name | +10148 | Hydrochaeris | | synonym | +10148 | Hydrochaerus | | synonym | +10148 | Hydrochoerus | | scientific name | +10149 | capybara | | genbank common name | +10149 | carpincho | | common name | +10149 | Hydrochaeris hydrochaeris | | synonym | +10149 | Hydrochaerus hydrochaeris | | synonym | +10149 | Hydrochoerus hydrochaeris | | scientific name | +10149 | Sus hydrochaeris Linnaeus, 1766 | | authority | +10149 | Sus hydrochaeris | | synonym | +10156 | Myocastor | | scientific name | +10157 | coypu | | common name | +10157 | Mus coypus Molina, 1782 | | authority | +10157 | Mus coypus | | synonym | +10157 | Myocastor coypus (Molina, 1782) | | authority | +10157 | Myocastor coypus | | scientific name | +10157 | nutria | | genbank common name | +10162 | Proechimys | | scientific name | +10170 | Bathyergus Illiger, 1811 | | authority | +10170 | Bathyergus | | scientific name | +10172 | Bathyergus suillus (Schreber, 1782) | | authority | +10172 | Bathyergus suillus | | scientific name | +10172 | Cape dune mole rat | | common name | +10172 | Cape dune mole-rat | | genbank common name | +10172 | Mus suillus Schreber, 1782 | | authority | +10172 | Mus suillus | | synonym | +10173 | Coetomys | | synonym | +10173 | Cryptomys Gray, 1864 | | authority | +10173 | Cryptomys | | scientific name | +10175 | African mole rat | | common name | +10175 | Bathyergus hottentotus Lesson, 1826 | | authority | +10175 | Bathyergus hottentotus | | synonym | +10175 | common mole-rat | | common name | +10175 | Cryptomys hottentotus (Lesson, 1826) | | authority | +10175 | Cryptomys hottentotus | | scientific name | +10175 | Hottentot mole-rat | | genbank common name | +10298 | herpes simplex virus 1 HSV-1 | | equivalent name | +10298 | Herpes simplex virus 1 | | synonym | +10298 | herpes simplex virus HSV-1 | | equivalent name | +10298 | Herpes simplex virus type 1 | | genbank common name | +10298 | herpes simplex virus type 1 HSV-1 | | equivalent name | +10298 | herpes simplex virus type 1 HSV1 | | equivalent name | +10298 | herpes simplex virus type-1 HSV-1 | | equivalent name | +10298 | HSV-1 | | acronym | +10298 | HSV1 | | acronym | +10298 | Human alphaherpesvirus 1 | | scientific name | +10298 | Human herpesvirus 1 | | synonym | +10298 | Human herpesvirus type 1 | | equivalent name | +10325 | B virus | | synonym | +10325 | CeHV-1 | | acronym | +10325 | Cercopithecid herpesvirus 1 | | equivalent name | +10325 | Cercopithecine herpesvirus 1 | | equivalent name | +10325 | herpes B virus | | equivalent name | +10325 | herpes virus B | | equivalent name | +10325 | Herpesvirus simiae | | equivalent name | +10325 | Macacine alphaherpesvirus 1 | | scientific name | +10325 | Macacine herpesvirus 1 | | equivalent name | +10325 | monkey B virus | | common name | +10325 | Simian herpes B virus | | equivalent name | +10325 | simian herpes B virus SHBV | | equivalent name | +10325 | Simian herpesvirus B | | equivalent name | +10326 | EHV-1 | | acronym | +10326 | Equid alphaherpesvirus 1 | | scientific name | +10326 | Equid herpesvirus 1 | | equivalent name | +10326 | equine abortion virus | | equivalent name | +10326 | equine herpesvirus 1 EHV-1 | | equivalent name | +10326 | Equine herpesvirus-1 | | equivalent name | +10326 | Equine herpesvirus 1 | | genbank common name | +10326 | equine herpesvirus type 1 EHV-1 | | synonym | +10326 | equine herpesvirus type-1 | | equivalent name | +10326 | Equine herpesvirus type 1 | | equivalent name | +10331 | EHV-4 | | acronym | +10331 | EHV4 | | acronym | +10331 | Equid alphaherpesvirus 4 | | scientific name | +10331 | Equid herpesvirus 4 | | equivalent name | +10331 | equine herpesvirus 4 EHV-4 | | equivalent name | +10331 | equine herpesvirus 4 EHV4 | | equivalent name | +10331 | Equine herpesvirus 4 | | genbank common name | +10331 | equine herpesvirus type 4 EHV-4 | | equivalent name | +10331 | equine herpesvirus type 4 | | equivalent name | +10331 | equine rhinopneumonitis virus | | equivalent name | +10335 | HHV-3 | | acronym | +10335 | Human alphaherpesvirus 3 | | scientific name | +10335 | Human herpes virus 3 | | equivalent name | +10335 | Human herpesvirus 3 | | equivalent name | +10335 | Varicella Zoster Virus | | equivalent name | +10335 | Varicella-zoster virus | | genbank common name | +10335 | varicella zoster virus VZV | | equivalent name | +10335 | varicella-zoster virus VZV | | equivalent name | +10335 | VZV | | acronym | +10376 | EBV | | acronym | +10376 | Epstein Barr virus | | common name | +10376 | Epstein-Barr virus EBV | | equivalent name | +10376 | Epstein-Barr virus | | genbank common name | +10376 | HHV-4 | | acronym | +10376 | human gammaherpesvirus 4 | | scientific name | +10376 | Human herpesvirus 4 | | equivalent name | +10376 | Human herpesvirus type 4 | | equivalent name | +10390 | GaHV-2 | | acronym | +10390 | Gallid alphaherpesvirus 2 | | scientific name | +10390 | Gallid herpesvirus 2 | | equivalent name | +10390 | Gallid herpesvirus type 2 | | equivalent name | +10390 | Marek disease virus | | equivalent name | +10390 | Marek disease virus type 1 | | common name | +10390 | Marek's disease herpesvirus 1 | | equivalent name | +10390 | Marek's disease herpesvirus | | equivalent name | +10390 | Marek's disease virus | | equivalent name | +10390 | Mareks disease virus | | equivalent name | +10390 | Marek's disease virus MDV1 | | equivalent name | +10390 | Marek's disease virus (MDV) | | equivalent name | +10390 | Marek's disease virus MDV | | equivalent name | +10390 | Marek's disease virus serotype 1 MDV-1 | | equivalent name | +10390 | Marek's disease virus type 1 MDV1 | | equivalent name | +10390 | Marek's disease virus type 1 | | synonym | +10390 | MDV1 | MDV1 | acronym | +10401 | channel catfish virus CCV | | equivalent name | +10401 | Channel catfish virus | | genbank common name | +10401 | IcHV-1 | | acronym | +10401 | Ictalurid herpesvirus 1 | | scientific name | +10995 | Avian infectious bursal disease virus | | equivalent name | +10995 | Gumboro virus | | genbank common name | +10995 | IBDV | | acronym | +10995 | infectious bursal disease virus IBDV | | equivalent name | +10995 | Infectious bursal disease virus of chickens | | equivalent name | +10995 | Infectious bursal disease virus | | scientific name | +11855 | Mason-Pfizer monkey virus | | scientific name | +11855 | MPMV | | acronym | +11855 | simian Mason-Pfizer D-type retrovirus SM-PDT | | equivalent name | +11855 | Simian Mason-Pfizer type D retrovirus | | equivalent name | +11855 | Simian mason-pfizer virus | | equivalent name | +12304 | Cucumovirus | | scientific name | +12305 | CMV | | acronym | +12305 | cucumber mosaic cucumovirus CMV | | equivalent name | +12305 | cucumber mosaic cucumovirus | | genbank common name | +12305 | cucumber mosaic virus CMV | | equivalent name | +12305 | cucumber mosaic virus, CMV | | equivalent name | +12305 | Cucumber mosaic virus | | scientific name | +12657 | EHV-2 | | acronym | +12657 | Equid gammaherpesvirus 2 | | scientific name | +12657 | Equid herpesvirus 2 | | equivalent name | +12657 | equine cytomegalovirus | | equivalent name | +12657 | Equine herpes virus 2 | | equivalent name | +12657 | Equine herpesvirus 2 | | genbank common name | +12657 | Equine herpes virus type 2 | | equivalent name | +12657 | not_Equid_herpesvirus_2 | | equivalent name | +12912 | Acanthurus | | scientific name | +12945 | Aratinga | | scientific name | +12945 | Aratinga Spix, 1824 | | authority | +12946 | Aratinga erythrogenys | | synonym | +12946 | Psittacara erythrogenys (Lesson, 1844) | | authority | +12946 | Psittacara erythrogenys Lesson, 1844 | | authority | +12946 | Psittacara erythrogenys | | scientific name | +12946 | red-masked conure | | common name | +12946 | red-masked parakeet | | genbank common name | +12981 | Cacatua | | scientific name | +12983 | Cacatua goffiniana Roselaar & Michaels, 2004 | | authority | +12983 | Cacatua goffiniana | | scientific name | +12983 | Cacatua goffini | | synonym | +12983 | Goffin's cockatoo | | common name | +12983 | Kakatoe sanguinea goffini | | synonym | +12983 | Tanimbar cockatoo | | genbank common name | +13012 | Clarias | | scientific name | +13013 | Clarias gariepinus (Burchell, 1822) | | authority | +13013 | Clarias gariepinus | | scientific name | +13013 | Clarias lazera | | synonym | +13013 | North African catfish | | genbank common name | +13013 | sharptooth catfish | | common name | +13013 | Siluriformes sp. BOLD:AAB2256 | | includes | +13013 | Silurus gariepinus Burchell, 1822 | | authority | +13013 | Silurus gariepinus | | synonym | +13028 | Cynoscion | | scientific name | +13029 | Cynoscion nebulosus (Cuvier, 1830) | | authority | +13029 | Cynoscion nebulosus | | scientific name | +13029 | Otolithus nebulosus Cuvier, 1830 | | authority | +13029 | Otolithus nebulosus | | synonym | +13029 | speckled trout | | common name | +13029 | spotted seatrout | | genbank common name | +13029 | spotted weakfish | | common name | +13037 | American monarch | | common name | +13037 | Danaus (Danaus) plexippus | | synonym | +13037 | Danaus plexippus (Linnaeus, 1758) | | authority | +13037 | Danaus plexippus | | scientific name | +13037 | monarch butterfly | | genbank common name | +13037 | Papilio plexippus Linnaeus, 1758 | | authority | +13037 | Papilio plexippus | | synonym | +13039 | Diaprepes | | scientific name | +13040 | Apopka weevil | | common name | +13040 | Diaprepes abbreviata | | synonym | +13040 | Diaprepes abbreviatus (Linnaeus, 1758) | | authority | +13040 | Diaprepes abbreviatus | | scientific name | +13040 | Diaprepes root weevil | | genbank common name | +13040 | sugarcane rootstalk borer weevil | | common name | +13040 | West Indian weevil | | common name | +13084 | Heteronotia | | scientific name | +13084 | Heteronotia Wermuth, 1965 | | authority | +13090 | Hosta | | scientific name | +13090 | Hosta Tratt. | | authority | +13090 | plantain lilies | | genbank common name | +13091 | Hosta japonica | | synonym | +13091 | Hosta japonica (Thunb.) Voss | | authority | +13091 | Hosta lancifolia Engl., 1887 | | authority | +13091 | Hosta lancifolia | | scientific name | +13091 | Japanese plantain lily | | genbank common name | +13091 | saji-giboshi | | common name | +13105 | Lepomis | | scientific name | +13122 | gypsy moths | | genbank common name | +13122 | Lymantria | | scientific name | +13138 | Mastotermes | | scientific name | +13139 | Darwin's termite | | common name | +13139 | giant northern termite | | genbank common name | +13139 | Mastotermes darwinensis | | synonym | +13139 | Mastotermes darwiniensis Froggatt, 1897 | | authority | +13139 | Mastotermes darwiniensis | | scientific name | +13150 | Micromys | | scientific name | +13151 | Eurasian harvest mouse | | common name | +13151 | European harvest mouse | | genbank common name | +13151 | Micromys minutus | | scientific name | +13151 | Mus minutus Pallas, 1771 | | authority | +13151 | Mus minutus | | synonym | +13163 | Myzus | | scientific name | +13164 | green peach aphid | | genbank common name | +13164 | Myzus (Nectarosiphon) persicae | | synonym | +13164 | Myzus persicae | | scientific name | +13164 | Myzus persicae (Sulzer, 1776) | | authority | +13164 | peach-potato aphid | | common name | +13213 | Pionus | | scientific name | +13253 | palmettoes | | common name | +13253 | palmettos | | genbank common name | +13253 | Sabal Adans., 1763 | | authority | +13253 | Sabal | | scientific name | +13265 | Smilodon | | scientific name | +13266 | Felis fatalis Leidy, 1868 | | authority | +13266 | Felis fatalis | | synonym | +13266 | saber-toothed cat | | genbank common name | +13266 | saber-toothed tiger | | common name | +13266 | Smilodon fatalis | | scientific name | +13289 | Tilletia | | scientific name | +13289 | Tilletia Tul. & C. Tul., 1847 | | authority | +13290 | stinking smut of wheat | | common name | +13290 | Tilletia caries | | scientific name | +13290 | Tilletia tritici | | synonym | +13290 | Uredo caries DC., 1815 | | authority | +13290 | Uredo caries | | synonym | +13290 | wheat bunt fungus | | genbank common name | +13396 | Carcharodon | | scientific name | +13397 | Carcharodon carcharias (Linnaeus,1758) | | authority | +13397 | Carcharodon carcharias | | scientific name | +13397 | great white shark | | genbank common name | +13397 | Squalus carcharias Linnaeus, 1758 | | authority | +13397 | Squalus carcharias | | synonym | +13397 | white shark | | common name | +13426 | Cichorium L., 1753 | | authority | +13426 | Cichorium | | scientific name | +13427 | chicory | | genbank common name | +13427 | Cichorium intybus L., 1753 | | authority | +13427 | Cichorium intybus | | scientific name | +13427 | Puna chicory | | includes | +13427 | radicchio | | common name | +13427 | succory | | common name | +13488 | Dicentrarchus | | scientific name | +13489 | Dicentrarchus labrax (Linnaeus, 1758) | | authority | +13489 | Dicentrarchus labrax | | scientific name | +13489 | European sea bass | | common name | +13489 | European seabass | | genbank common name | +13489 | Labrax labrax | | synonym | +13489 | Morone labrax | | synonym | +13489 | Perca labrax Linnaeus, 1758 | | authority | +13489 | Perca labrax | | synonym | +13489 | Roccus labrax | | synonym | +13489 | Sciaena labrax | | synonym | +13580 | Katsuwonus | | scientific name | +13603 | black marlin | | genbank common name | +13603 | giant black marlin | | common name | +13603 | Istiomax indicus | | synonym | +13603 | Istiompax indica (Cuvier, 1832) | | authority | +13603 | Istiompax indica | | scientific name | +13603 | Makaira indica (Cuvier, 1832) | | authority | +13603 | Makaira indica | | synonym | +13603 | Pacific black marlin | | common name | +13603 | silver marlin | | common name | +13603 | Tetrapturus indicus Cuvier, 1832 | | authority | +13603 | Tetrapturus indicus | | synonym | +13625 | Paeonia L., 1753 | | authority | +13625 | Paeonia | | scientific name | +13625 | peonies | | genbank common name | +13632 | common green bottle fly | | genbank common name | +13632 | Lucilia sericata (Meigen, 1826) | | authority | +13632 | Lucilia sericata | | scientific name | +13632 | Phaenicia sericata | | synonym | +13632 | sheep blowfly | | common name | +13667 | bowstring hemps | | genbank common name | +13667 | Sansevieria | | scientific name | +13667 | Sansevieria Thunb., 1794 | | authority | +13675 | Scomber | | scientific name | +13676 | chub mackerel | | genbank common name | +13676 | Pneumatophorus japonicus | | synonym | +13676 | Scomber japonicus Houttuyn, 1782 | | authority | +13676 | Scomber japonicus | | scientific name | +13676 | Spanish mackerel | Spanish mackerel | common name | +13707 | marigolds | | genbank common name | +13707 | Tagetes L. | | authority | +13707 | Tagetes | | scientific name | +13708 | African marigold | | genbank common name | +13708 | big marigold | | common name | +13708 | Tagetes erecta L., 1753 | | authority | +13708 | Tagetes erecta | | scientific name | +13708 | Tagetes remotiflora Kunze, 1847 | | authority | +13708 | Tagetes remotiflora | | synonym | +13721 | Histiophorus audax Philippi, 1887 | | authority | +13721 | Histiophorus audax | | synonym | +13721 | Istiophorus audax | | synonym | +13721 | Kajikia audax (Philippi, 1887) | | authority | +13721 | Kajikia audax | | scientific name | +13721 | Makaira audax | | synonym | +13721 | Marlina audax | | synonym | +13721 | Pacific striped marlin | | common name | +13721 | striped marlin | | genbank common name | +13721 | striped swordfish | | common name | +13721 | Tetrapturus audax (Philippi, 1887) | | authority | +13721 | Tetrapturus audax | | synonym | +13735 | Chinese soft-shelled turtle | | genbank common name | +13735 | Chinese softshell turtle | | common name | +13735 | Pelodiscus sinensis | | scientific name | +13735 | Pelodiscus sinensis Wiegmann, 1835 | | authority | +13735 | Pelodiscus sinensis (Wiegmann, 1835) Cox et al. 1998 | | authority | +13735 | Trionyx sinensis | | synonym | +13735 | Trionyx sinensis Wiegmann, 1835 | | authority | +13745 | murres | | genbank common name | +13745 | Uria | | scientific name | +13746 | Atlantic murre | | common name | +13746 | Colymbus aalge Pontoppidan, 1763 | | authority | +13746 | Colymbus aalge | | synonym | +13746 | common murre | | genbank common name | +13746 | Guillemot | | common name | +13746 | Uria aalge (Pontoppidan, 1763) | | authority | +13746 | Uria aalge | | scientific name | +13763 | Xyrichtys | | scientific name | +13764 | rosy razorfish | | genbank common name | +13764 | straighttailed razorfish | | common name | +13764 | straight-tail razorfish | | common name | +13764 | Xyrichtys martinicensis | | scientific name | +13764 | Xyrichtys martinicensis Valenciennes, 1840 | | authority | +13764 | Xyrichtys novacula martinicensis | | synonym | +13833 | adder's-tongue ferns | | genbank common name | +13833 | Ophioglossum L., 1753 | | authority | +13833 | Ophioglossum | | scientific name | +13834 | Engelmann's adder's-tongue | | common name | +13834 | limestone adder's-tongue | | genbank common name | +13834 | Ophioglossum engelmannii Prantl, 1883 | | authority | +13834 | Ophioglossum engelmannii | | scientific name | +13834 | Whittieria engelmannii | | synonym | +15371 | awnless brome grass | | common name | +15371 | Bromopsis inermis (Leyss.) Holub | | authority | +15371 | Bromopsis inermis | | synonym | +15371 | Bromus inermis Leyss., 1761 | | authority | +15371 | Bromus inermis | | scientific name | +15371 | Hungarian brome grass | | common name | +15371 | smooth brome grass | | genbank common name | +17778 | Calycadenia DC. | | authority | +17778 | Calycadenia | | scientific name | +21819 | Mentha L. | | authority | +21819 | Mentha | | scientific name | +21819 | mints | | common name | +23012 | Kalanchoe Adans., 1763 | | authority | +23012 | Kalanchoe | | scientific name | +23012 | Palm-Beach bells | | common name | +23013 | Bryophyllum daigremontianum (Raym.-Hamet & H.Perrier) A.Berger, 1930 | | synonym | +23013 | devil's backbone | | genbank common name | +23013 | Kalanchoe bryophyllum | | synonym | +23013 | Kalanchoe daigremontiana Raym.-Hamet & H.Perrier, 1914 | | authority | +23013 | Kalanchoe daigremontiana | | scientific name | +23013 | mother-of-millions | | common name | +23216 | bramble | | genbank common name | +23216 | Rubus L., 1754 | | authority | +23216 | Rubus | | scientific name | +24234 | Proboscidea | Proboscidea | scientific name | +24234 | Proboscidea Schmidel, 1763 | | authority | +24655 | Nicandra Adans., 1763 | | authority | +24655 | Nicandra | Nicandra | scientific name | +24735 | Ulmus L., 1753 | | authority | +24735 | Ulmus | | scientific name | +26378 | Iris | Iris | scientific name | +26378 | Iris L., 1753 | | authority | +26473 | Buddleia | | synonym | +26473 | Buddleja L., 1753 | | authority | +26473 | Buddleja | | scientific name | +27457 | Bactrocera (Bactrocera) dorsalis | | synonym | +27457 | Bactrocera (Bactrocera) invadens | | synonym | +27457 | Bactrocera dorsalis (Hendel, 1912) | | authority | +27457 | Bactrocera dorsalis | | scientific name | +27457 | Bactrocera invadens Drew, Tsuruta & White, 2005 | | authority | +27457 | Bactrocera invadens | | synonym | +27457 | Bactrocera papayae | | synonym | +27457 | Bactrocera philippinensis Drew & Hancock, 1994 | | authority | +27457 | Bactrocera philippinensis | | synonym | +27457 | Bactrocera sp. NG-2014 | | includes | +27457 | Bactrocera sp. NG-2014.NigA2 | | includes | +27457 | Bactrocera sp. NG-2014.NigE12 | | includes | +27457 | Bactrocera sp. ONAH-2014 | | includes | +27457 | Bactrocera sp. ONAH-2014.OnA8 | | includes | +27457 | Bactrocera sp. ONAH-2014.OnC3 | | includes | +27457 | Bactrocera sp. ONAH-2014.OnD13 | | includes | +27457 | Bactrocera sp. ONAH-2014.OnE13 | | includes | +27457 | Bactrocera sp. ONAH-2014.OnE3 | | includes | +27457 | Dacus dorsalis Hendel, 1912 | | authority | +27457 | Dacus dorsalis | | synonym | +27457 | oriental fruit fly | | genbank common name | +27457 | papaya fruit fly | papaya fruit fly | common name | +27457 | Philippines fruit fly | | common name | +27578 | flying frogs | | genbank common name | +27578 | Rhacophorus | | scientific name | +27596 | anoa | | common name | +27596 | Anoa depressicornis | | synonym | +27596 | Bubalus depressicornis depressicornis | | synonym | +27596 | Bubalus depressicornis fergusoni | | synonym | +27596 | Bubalus depressicornis ferqusoni | | synonym | +27596 | Bubalus depressicornis | | scientific name | +27596 | Bubalus depressicornis Smith, 1827 | | authority | +27596 | lowland anoa | | genbank common name | +27605 | Eubalaena | | scientific name | +27606 | Balaena glacialis Muller, 1776 | | authority | +27606 | Balaena glacialis | | synonym | +27606 | Eubalaena glacialis (Mueller, 1776) | | authority | +27606 | Eubalaena glacialis | | scientific name | +27606 | North Atlantic right whale | | genbank common name | +27606 | northern right whale | | common name | +27616 | Dioplodon europaeus Gervais, 1855 | | authority | +27616 | Dioplodon europaeus | | synonym | +27616 | Gervais' beaked whale | | genbank common name | +27616 | Gervais's beaked whale | | common name | +27616 | Mesoplodon europaeus | | scientific name | +27654 | Artibeus hartii | | scientific name | +27654 | Artibeus hartii Thomas, 1892 | | authority | +27654 | Enchisthenes hartii | | synonym | +27654 | little fruit-eating bat | | genbank common name | +27654 | velvety fruit-eating bat | | common name | +27694 | Prochilodus | | scientific name | +27695 | curimbata | | genbank common name | +27695 | Paca lineatus | | synonym | +27695 | Paca lineatus Valenciennes, 1837 | | authority | +27695 | Prochilodus lineatus | | scientific name | +27695 | Prochilodus lineatus (Valenciennes, 1837) | | authority | +27695 | streaked prochilod | | common name | +27705 | Micropterus | | scientific name | +27706 | Huro salmoides | | synonym | +27706 | Labrus salmoides Lacepede, 1802 | | authority | +27706 | Labrus salmoides | | synonym | +27706 | Labrus salmonides | | synonym | +27706 | largemouth bass | | genbank common name | +27706 | largemouth blackbass | | common name | +27706 | Micropterus nigricans (Cuvier, 1828) | | authority | +27706 | Micropterus nigricans | | synonym | +27706 | Micropterus salmoides (Lacepede, 1802) | | authority | +27706 | Micropterus salmoides | | scientific name | +27707 | Puntius | | scientific name | +27710 | Rasbora | | scientific name | +27719 | Hoplias | | scientific name | +27720 | Esox malabaricus Bloch, 1794 | | authority | +27720 | Esox malabaricus | | synonym | +27720 | Hoplias malabaricus (Bloch, 1794) | | authority | +27720 | Hoplias malabaricus | | scientific name | +27720 | Macrodon malabaricus | | synonym | +27720 | tiger characin | | common name | +27720 | trahira | | genbank common name | +27724 | Osteoglossum | | scientific name | +27726 | Scleropages | | scientific name | +27760 | Pseudotropheus | | scientific name | +27771 | common dab | | genbank common name | +27771 | dab | | common name | +27771 | Limanda limanda (Linnaeus, 1758) | | authority | +27771 | Limanda limanda | | scientific name | +27771 | Liopsetta limanda | | synonym | +27771 | Pleuronectes limanda | | synonym | +27772 | Coregonus | | scientific name | +27777 | Florida gar | | genbank common name | +27777 | Florida spotted gar | | common name | +27777 | Lepisosteus platyrhinchus | | synonym | +27777 | Lepisosteus platyrhincus DeKay, 1842 | | authority | +27777 | Lepisosteus platyrhincus | | scientific name | +27777 | Lepisosteus platyrhynchus | | synonym | +27786 | Eretmochelys | | scientific name | +27787 | Chelone imbricata | | synonym | +27787 | Eretmochelys imbricata | | scientific name | +27787 | hawksbill sea turtle | | genbank common name | +27787 | hawksbill turtle | | common name | +27787 | Testudo imbricata Linnaeus, 1766 | | authority | +27787 | Testudo imbricata | | synonym | +27788 | Chelonia olivacea Eschscholtz, 1829 | | authority | +27788 | Chelonia olivacea | | synonym | +27788 | Lepidochelys olivacea (Eschscholtz, 1829) | | authority | +27788 | Lepidochelys olivacea | | scientific name | +27788 | olive ridley sea turtle | | common name | +27788 | Pacific ridley | | genbank common name | +27789 | Natator | | scientific name | +27790 | Australian flatback | | common name | +27790 | Chelonia depressa Garman, 1880 | | authority | +27790 | Chelonia depressa | | synonym | +27790 | flatback sea turtle | | genbank common name | +27790 | Natator depressus | | scientific name | +27922 | Mnemiopsis | | scientific name | +27923 | American comb jelly | | common name | +27923 | Mnemiopsis leidyi Agassiz, 1865 | | authority | +27923 | Mnemiopsis leidyi | | scientific name | +27923 | Mnemiopsis mccradyi | | synonym | +27923 | sea walnut | | genbank common name | +27923 | warty comb jelly | | common name | +28376 | Anolis | | scientific name | +28376 | Chamaelinorops | | includes | +28437 | Ingerixalus moltrechti | | synonym | +28437 | Moltrecht's treefrog | | common name | +28437 | Nantou flying frog | | genbank common name | +28437 | Rhacophorus moltrechti Boulenger, 1908 | | authority | +28437 | Rhacophorus moltrechti | | synonym | +28437 | Zhangixalus moltrechti (Boulenger, 1908) | | authority | +28437 | Zhangixalus moltrechti | | scientific name | +28483 | autumn squill | | common name | +28483 | Prospero autumnale (L.) Speta, 1982 | | authority | +28483 | Prospero autumnale | | scientific name | +28483 | Scilla autumnalis L. | | authority | +28483 | Scilla autumnalis | | synonym | +28483 | starry hyacinth | | genbank common name | +28502 | Amaranthus hybridus var. erythrostachys Moq., 1849 | | synonym | +28502 | Amaranthus hypochondriacus L., 1753 | | authority | +28502 | Amaranthus hypochondriacus | | scientific name | +28502 | Amaranthus hypocondriacus | | synonym | +28502 | grain amaranth | | genbank common name | +28502 | prince's feather | prince's feather | common name | +28540 | Buddleia davidii | | synonym | +28540 | Buddleja davidii Franch., 1888 | | authority | +28540 | Buddleja davidii | | scientific name | +28540 | butterfly bush | | common name | +28540 | summer lilac | | genbank common name | +28588 | Bactrocera cucurbitae (Coquillett, 1899) | | authority | +28588 | Bactrocera cucurbitae | | synonym | +28588 | Bactrocera (Zeugodacus) cucurbitae | | synonym | +28588 | melon fly | | genbank common name | +28588 | melon fruit fly | | common name | +28588 | Zeugodacus cucurbitae (Coquillett, 1899) | | authority | +28588 | Zeugodacus cucurbitae | | scientific name | +28588 | Zeugodacus (Zeugodacus) cucurbitae | | synonym | +28736 | Elephantulus | | scientific name | +28736 | long-eared elephant shrews | | genbank common name | +28737 | Cape elephant shrew | | genbank common name | +28737 | Cape long-eared elephant shrew | | common name | +28737 | Elephantulus edwardii | | scientific name | +28737 | Macroscelides edwardii Smith, 1839 | | authority | +28737 | Macroscelides edwardii | | synonym | +28769 | Profundulus | | scientific name | +28834 | Cepaea | | scientific name | +28835 | banded grove snail | | common name | +28835 | banded wood snail | | genbank common name | +28835 | brown-lipped snail | | common name | +28835 | Cepaea nemoralis (Linnaeus, 1758) | | authority | +28835 | Cepaea nemoralis | | scientific name | +28835 | Helix nemoralis Linnaeus, 1758 | | authority | +28835 | Helix nemoralis | | synonym | +28835 | Stylommatophora sp. BOLD:AAG1590 | | includes | +28913 | Calycadenia ciliosa Greene | | authority | +28913 | Calycadenia ciliosa | | synonym | +28913 | Calycadenia fremontii A.Gray, 1859 | | authority | +28913 | Calycadenia fremontii | | scientific name | +28913 | Fremont's calycadenia | | genbank common name | +28913 | Klamath calycadenia | | common name | +29014 | Grammostola | | scientific name | +29017 | Chinese bird spider | | common name | +29017 | Chinese earth tiger | | genbank common name | +29017 | Chinese golden earth tiger | | common name | +29017 | Cyriopagopus schmidti | | scientific name | +29017 | Cyriopagopus schmidti (von Wirth, 1991) | | authority | +29017 | Haplopelma schmidti | | synonym | +29017 | Ornithoctonus huwena | | synonym | +29017 | Selenocosmia huwena | | synonym | +29017 | Selenocosmia huwena Wang, Peng & Xie, 1993 | | authority | +29021 | Scutigera | | scientific name | +29022 | house centipede | | genbank common name | +29022 | Scolopendra coleoptrata Linnaeus, 1758 | | authority | +29022 | Scolopendra coleoptrata | | synonym | +29022 | Scutigera coleoptrata | | scientific name | +29022 | twenty-eight-legger | | common name | +29054 | Epinotia | | scientific name | +29058 | American bollworm | | common name | +29058 | corn ear worm | | common name | +29058 | cotton bollworm | | genbank common name | +29058 | Helicoverpa armigera (Hubner, 1808) | | authority | +29058 | Helicoverpa armigera | | scientific name | +29058 | Heliothis armigera | | synonym | +29058 | Heliothis (Helicoverpa) armigera | | synonym | +29058 | Noctua armigera Hubner, 1805 | | authority | +29058 | Noctua armigera | | synonym | +29058 | scarce bordered straw | | common name | +29058 | tobacco budworm | tobacco budworm | common name | +29073 | polar bear | | genbank common name | +29073 | Thalarctos maritimus | | synonym | +29073 | Ursus maritimus Phipps, 1774 | | authority | +29073 | Ursus maritimus | | scientific name | +29073 | white bear | | common name | +29081 | Macroscelides | | scientific name | +29089 | Black crested gibbon | | genbank common name | +29089 | crested gibbon | | common name | +29089 | Hylobates concolor | | synonym | +29089 | Nomascus concolor | | scientific name | +29089 | Simia concolor Harlan, 1826 | | authority | +29089 | Simia concolor | | synonym | +29090 | Dolichotis | | scientific name | +29091 | Cavia patagonum | | synonym | +29091 | Cavia patagonum Zimmerman, 1780 | | authority | +29091 | Dolichotis patagonum | | scientific name | +29091 | Dolichotis patagonum (Zimmermann, 1780) | | authority | +29091 | Patagonian cavy | | genbank common name | +29091 | Patagonian mara | | common name | +29092 | field vole | | common name | +29092 | Microtus agrestis | | scientific name | +29092 | Mus agrestis Linnaeus, 1761 | | authority | +29092 | Mus agrestis | | synonym | +29092 | short-tailed field vole | | genbank common name | +29138 | Vombatus | | scientific name | +29139 | coarse-haired wombat | | common name | +29139 | common wombat | | genbank common name | +29139 | Didelphis ursina Shaw, 1800 | | authority | +29139 | Didelphis ursina | | synonym | +29139 | Vombatus ursinus | | scientific name | +29153 | Micropogonias | | scientific name | +29642 | Asplenium nidus L., 1753 | | authority | +29642 | Asplenium nidus | | scientific name | +29642 | bird's-nest fern | | genbank common name | +29642 | Neottopteris nidus (L.) J.Sm. | | authority | +29642 | Neottopteris nidus | | synonym | +29642 | nest fern | | common name | +29694 | Cenchrus longisetus M.C.Johnst., 1963 | | authority | +29694 | Cenchrus longisetus | | scientific name | +29694 | Cenchrus villosus (R.Br. ex Fresen.) Kuntze, 1898 | | authority | +29694 | feathertop | | common name | +29694 | Pennisetum villosum R.Br. ex Fresen. | | authority | +29694 | Pennisetum villosum | | synonym | +29694 | white foxtail | | genbank common name | +29706 | salt marsh cordgrass | | common name | +29706 | smooth cordgrass | | genbank common name | +29706 | Spartina alterniflora Loisel., 1807 | | authority | +29706 | Spartina alterniflora | | synonym | +29706 | Sporobolus alterniflorus (Loisel.) P.M.Peterson & Saarela, 2014 | | authority | +29706 | Sporobolus alterniflorus | | scientific name | +29710 | Dioscorea cayenensis Lam., 1789 | | authority | +29710 | Dioscorea cayenensis | | scientific name | +29710 | Dioscorea cayennensis | | equivalent name | +29710 | Lagos yam | | common name | +29710 | twelve-months yam | | common name | +29710 | yellow Guinea yam | | common name | +29710 | yellow yam | | common name | +29892 | Auricularia auricula-judae (Bull.) Quel., 1886 | | synonym | +29892 | Auricularia auricula-judae | | scientific name | +29892 | Auricularia auricula | | synonym | +29892 | ear fungus | | genbank common name | +29892 | Hirneola auricula-judae (Bull.) Berk., 1860 | | authority | +29892 | Hirneola auricula-judae | | synonym | +29892 | Tremella auricula-judae Bull., 1789 | | authority | +29892 | Tremella auricula-judae | | synonym | +29892 | wood ear | | common name | +30195 | Apis terrestris | | synonym | +30195 | Bombus terrestris (Linnaeus, 1758) | | authority | +30195 | Bombus terrestris | | scientific name | +30195 | buff-tailed bumblebee | | genbank common name | +30195 | large earth bumblebee | | common name | +30252 | Melanoplus | | scientific name | +30252 | Monopterus Fischer-Waldheim, 1846 | | authority | +30252 | Monopterus | Monopterus | synonym | +30316 | Spea | | scientific name | +30317 | desert spadefoot toad | | common name | +30317 | Mexican spadefoot toad | | genbank common name | +30317 | New Mexico spadefoot toad | | common name | +30317 | Scaphiopus multiplicata | | synonym | +30317 | Scaphiopus multiplicatus (Cope, 1863) | | authority | +30317 | Scaphiopus multiplicatus | | synonym | +30317 | southern spadefoot toad | | common name | +30317 | Spea hammondii multiplicata | | synonym | +30317 | Spea multiplicata | | scientific name | +30325 | Anaxyrus boreas (Baird & Girard, 1852) | | authority | +30325 | Anaxyrus boreas | | scientific name | +30325 | boreal toad | | genbank common name | +30325 | Bufo boreas Baird & Girard, 1852 | | authority | +30325 | Bufo boreas | | synonym | +30325 | western toad | | common name | +30326 | Bufo calamita Laurenti, 1768 | | authority | +30326 | Bufo calamita | | synonym | +30326 | Epidalea calamita (Laurenti, 1768) | | authority | +30326 | Epidalea calamita | | scientific name | +30326 | natter jack | | common name | +30326 | natterjack | | common name | +30326 | natter-jack toad | | common name | +30326 | natterjack toad | | genbank common name | +30326 | running toad | | common name | +30327 | Anaxyrus canorus (Camp, 1916) | | authority | +30327 | Anaxyrus canorus | | scientific name | +30327 | Bufo canorus Camp, 1916 | | authority | +30327 | Bufo canorus | | synonym | +30327 | Yosemite Park toad | | common name | +30327 | Yosemite toad | | genbank common name | +30331 | Asiatic toad | | genbank common name | +30331 | Bufo bufo gargarizans | | synonym | +30331 | Bufo gargarizans Cantor, 1842 | | authority | +30331 | Bufo gargarizans | | scientific name | +30331 | Bufo japonicus gargarizans | | synonym | +30331 | Chusan Island toad | | common name | +30331 | Zhoushan toad | | common name | +30332 | Bufo granulosus Spix, 1824 | | authority | +30332 | Bufo granulosus | | synonym | +30332 | Chaunus granulosus | | synonym | +30332 | common lesser toad | | common name | +30332 | granular toad | | genbank common name | +30332 | Rhinella granulosa | | scientific name | +30332 | Rhinella granulosa (Spix, 1824) | | authority | +30334 | Amietophrynus kisoloensis (Loveridge, 1932) | | authority | +30334 | Amietophrynus kisoloensis | | synonym | +30334 | Bufo kisoloensis | | synonym | +30334 | Bufo regularis kisoloensis Loveridge, 1932 | | authority | +30334 | Bufo regularis kisoloensis | | synonym | +30334 | Kisolo toad | | genbank common name | +30334 | montane golden toad | | common name | +30334 | Sclerophrys kisoloensis | | scientific name | +30335 | Asian common toad | | genbank common name | +30335 | black-spined toad | | common name | +30335 | Bufo melanostictus Schneider, 1799 | | authority | +30335 | Bufo melanostictus | | synonym | +30335 | Bufo melanosticus | | synonym | +30335 | common Indian toad | | common name | +30335 | Docidophryne melanostictus | | synonym | +30335 | doubtful toad | | common name | +30335 | Duttaphrynus melanostictus (Schneider, 1799) | | authority | +30335 | Duttaphrynus melanostictus | | scientific name | +30335 | Phrynoidis melanostictus | | synonym | +30335 | South Asian garden toad | | common name | +30335 | Southeast Asian toad | | common name | +30336 | Anaxyrus microscaphus (Cope, 1867) | | authority | +30336 | Anaxyrus microscaphus | | scientific name | +30336 | Arizona toad | | genbank common name | +30336 | Bufo microscaphus Cope, 1867 | | authority | +30336 | Bufo microscaphus | | synonym | +30336 | southwestern toad | | common name | +30338 | Bufotes viridis | | scientific name | +30338 | Bufo viridis Laurenti, 1768 | | authority | +30338 | Bufo viridis | | synonym | +30338 | European green toad | | genbank common name | +30338 | Palearctic green toad | | common name | +30338 | Pseudepidalea viridis (Laurenti, 1768) | | authority | +30338 | Pseudepidalea viridis | | synonym | +30343 | chameleon treefrog | | genbank common name | +30343 | Dryophytes versicolor (LeConte, 1825) | | authority | +30343 | Dryophytes versicolor | | scientific name | +30343 | eastern gray treefrog | | common name | +30343 | Hyla versicolor LeConte, 1825 | | authority | +30343 | Hyla versicolor | | synonym | +30344 | green tree frog | green tree frog | common name | +30344 | Hyla caerulea | | synonym | +30344 | Pelodryas caerulea | | synonym | +30344 | Rana caerulea | | synonym | +30344 | Rana caerulea White, 1790 | | authority | +30344 | Ranoidea caerulea | | scientific name | +30344 | Ranoidea caerulea (White, 1790) | | authority | +30344 | White's tree frog | | genbank common name | +30348 | Pseudophryne | | scientific name | +30374 | Calotriton asper (Duget, 1852) | | authority | +30374 | Calotriton asper | | scientific name | +30374 | Euproctus asper (Duges, 1852) | | authority | +30374 | Euproctus asper | | synonym | +30374 | Hemitriton asper Duges, 1852 | | authority | +30374 | Hemitriton asper | | synonym | +30374 | Pyrenean brook newt | | genbank common name | +30374 | Pyrenean brook salamander | | common name | +30384 | Aythya | | scientific name | +30389 | Ardea | | scientific name | +30389 | great herons | | genbank common name | +30408 | Crossoptilon crossoptilon (Hodgson, 1838) | | authority | +30408 | Crossoptilon crossoptilon | | scientific name | +30408 | Phasianus crossoptilon Hodgson, 1838 | | authority | +30408 | Phasianus crossoptilon | | synonym | +30408 | Szechuan white-eared pheasant | | common name | +30408 | white-eared pheasant | | genbank common name | +30413 | Balearica | | scientific name | +30414 | Ardea pavonina Linnaeus, 1758 | | authority | +30414 | Ardea pavonina | | synonym | +30414 | Balearica pavonina (Linnaeus, 1758) | | authority | +30414 | Balearica pavonina | | scientific name | +30414 | black crowned-crane | | genbank common name | +30414 | crowned crane | | common name | +30415 | Ardea japonensis Muller, 1776 | | authority | +30415 | Ardea japonensis | | synonym | +30415 | Grus japonensis | | scientific name | +30415 | Grus japonensis (Statius Muller, 1776) | | authority | +30415 | Grus japonicus | | synonym | +30415 | Japanese crane | | common name | +30415 | Red-crowned crane | | genbank common name | +30420 | Corvus | | scientific name | +30420 | crows | | genbank common name | +30423 | Coloeus monedula (Linnaeus, 1758) | | authority | +30423 | Coloeus monedula | | scientific name | +30423 | Corvus monedula Linnaeus, 1758 | | authority | +30423 | Corvus monedula (Linnaeus, 1758) | | synonym | +30423 | Corvus monedula | | synonym | +30423 | Dohle | | common name | +30423 | jackdaw | | genbank common name | +30424 | buntings | | genbank common name | +30424 | Emberiza | | scientific name | +30425 | Emberiza schoeniclus (Linnaeus, 1758) | | authority | +30425 | Emberiza schoeniclus | | scientific name | +30425 | Fringilla schoeniclus Linnaeus, 1758 | | authority | +30425 | Fringilla schoeniclus | | synonym | +30425 | reed bunting | | genbank common name | +30425 | Rohrammer | | common name | +30425 | Schoeniclus schoeniclus | | synonym | +30426 | Carpodacus | | scientific name | +30427 | Burrica mexicana | | synonym | +30427 | California linnet | | common name | +30427 | Carpodacus mexicanus (Statius Mueller, PL, 1776) | | authority | +30427 | Carpodacus mexicanus | | synonym | +30427 | Fringilla mexicana Statius Muller, 1776 | | authority | +30427 | Fringilla mexicana | | synonym | +30427 | Haemorhous mexicanus | | scientific name | +30427 | house finch | | genbank common name | +30456 | Pionus senilis | | scientific name | +30456 | Psittacus senilis | | synonym | +30456 | Psittacus senilis von Spix, 1824 | | authority | +30456 | white-capped parrot | | genbank common name | +30456 | white-crowned parrot | | common name | +30460 | Bubo | | scientific name | +30460 | eagle owls | | genbank common name | +30461 | Bubo bubo (Linnaeus, 1758) | | authority | +30461 | Bubo bubo | | scientific name | +30461 | Eurasian eagle owl | | common name | +30461 | Eurasian eagle-owl | | genbank common name | +30461 | Strix bubo Linnaeus, 1758 | | authority | +30461 | Strix bubo | | synonym | +30489 | African catshark | | genbank common name | +30489 | Poroderma africanum (Gmelin, 1789) | | authority | +30489 | Poroderma africanum | | scientific name | +30489 | Poroderma africanus | | synonym | +30489 | Squalus africanus Gmelin, 1789 | | authority | +30489 | Squalus africanus | | synonym | +30489 | striped catshark | | common name | +30520 | Bos frontalis Lambert, 1804 | | authority | +30520 | Bos frontalis | | scientific name | +30520 | Bos gaurus frontalis | | synonym | +30520 | gayal | | genbank common name | +30520 | mithun | | common name | +30521 | Bos grunniens Linnaeus, 1766 | | authority | +30521 | Bos grunniens | | scientific name | +30521 | Bos mutus grunniens | | synonym | +30521 | domestic yak | | genbank common name | +30521 | Peophagus grunniens | | synonym | +30521 | yak | | common name | +30531 | Axis axis (Erxleben, 1777) | | authority | +30531 | Axis axis | | scientific name | +30531 | axis deer | | common name | +30531 | Cervus axis Erxleben, 1777 | | authority | +30531 | Cervus axis | | synonym | +30531 | chital | | genbank common name | +30531 | spotted deer | | common name | +30532 | Cervus dama Linnaeus, 1758 | | authority | +30532 | Cervus dama | | synonym | +30532 | Dama dama | | scientific name | +30532 | fallow deer | | genbank common name | +30532 | Texas fallow deer | | common name | +30532 | Texas fallow deers | | common name | +30539 | Vicugna | | scientific name | +30576 | Aethechinus algirus | | synonym | +30576 | Algerian hedgehog | | genbank common name | +30576 | Atelerix algirus | | scientific name | +30576 | Erinaceus algirus Lereboullet, 1842 | | authority | +30576 | Erinaceus algirus | | synonym | +30576 | North African hedgehog | | common name | +30587 | Leontopithecus | | scientific name | +30590 | Alouatta belzebul | | scientific name | +30590 | Alouatta nigerrima | | synonym | +30590 | black-and-red howler monkey | | genbank common name | +30590 | red-handed howler monkey | | common name | +30590 | Simia belzebul Linnaeus, 1766 | | authority | +30590 | Simia belzebul | | synonym | +30591 | Aotus azarae | | synonym | +30591 | Aotus azarai | | scientific name | +30591 | Azara's night monkey | | genbank common name | +30591 | Azara's owl monkey | | common name | +30591 | Simia azarai Humboldt, 1812 | | authority | +30591 | Simia azarai | | synonym | +30593 | Brachyteles | | scientific name | +30594 | Brachyteles arachnoides | | scientific name | +30594 | muriqui | | common name | +30594 | Simia arachnoides Geoffroy, 1806 | | authority | +30594 | Simia arachnoides | | synonym | +30594 | woolly spider monkey | | genbank common name | +30595 | Cacajao | | scientific name | +30596 | Bald Uacari | | genbank common name | +30596 | Cacajao calvus | | scientific name | +30596 | red uakari | | common name | +30596 | Simia calva Geoffroy, 1847 | | authority | +30596 | Simia calva | | synonym | +30597 | Pithecia | | scientific name | +30597 | saki monkeys | | genbank common name | +30609 | Galago moholi A. Smith, 1836 | | authority | +30609 | Galago moholi | | scientific name | +30609 | Galago moholi Smith, 1836 | | authority | +30609 | Galago senegalensis moholi | | synonym | +30609 | Moholi bushbaby | | genbank common name | +30609 | South African galago | | common name | +30610 | greater bushbabies | | genbank common name | +30610 | Otolemur | | scientific name | +30630 | East European vole | | genbank common name | +30630 | Microtus epiroticus | | synonym | +30630 | Microtus levis Miller, 1908 | | authority | +30630 | Microtus levis | | scientific name | +30630 | Microtus subarvalis | | synonym | +30630 | southern vole | | common name | +30639 | Mastomys | | scientific name | +30639 | multimammate rats | | genbank common name | +30640 | eastern gray squirrel | | common name | +30640 | gray squirrel | | genbank common name | +30640 | Neosciurus carolinensis (Gmelin, 1788) | | authority | +30640 | Neosciurus carolinensis | | synonym | +30640 | Sciurus carolinensis Gmelin, 1788 | | authority | +30640 | Sciurus carolinensis | | scientific name | +30732 | Aplocheilus melastigmus McClelland, 1839 | | authority | +30732 | Aplocheilus melastigmus | | synonym | +30732 | Indian medaka | | genbank common name | +30732 | Java medaka | | common name | +30732 | marine medaka | | common name | +30732 | Oryzias melastigma (McClelland, 1839) | | authority | +30732 | Oryzias melastigma | | scientific name | +30804 | Chelon ramada (Risso 1827) | | authority | +30804 | Chelon ramada | | scientific name | +30804 | Liza capito | | synonym | +30804 | Liza ramada | | synonym | +30804 | Liza ramado (Risso, 1810) | | authority | +30804 | Liza ramado | | synonym | +30804 | Mugil capito | | synonym | +30804 | Mugil cephalus ramado Risso, 1810 | | authority | +30804 | Mugil cephalus ramado | | synonym | +30804 | Mugil ramada Risso 1827 | | authority | +30804 | Mugil ramada | | synonym | +30804 | Mugil ramado Risso, 1810 | | authority | +30804 | Mugil ramado | | synonym | +30804 | thinlip mullet | | common name | +30804 | thin-lipped grey mullet | | common name | +30804 | thin-lipped mullet | | genbank common name | +30962 | cutthroat trout | | genbank common name | +30962 | Oncorhynchus clarkii (Richardson, 1836) | | authority | +30962 | Oncorhynchus clarkii | | scientific name | +30962 | Oncorhynchus clarki | | synonym | +30962 | Salmo clarkii Richardson, 1836 | | authority | +30962 | Salmo clarkii | | synonym | +30962 | Salmo clarki | | synonym | +30991 | Amur catfish | | genbank common name | +30991 | Japanese common catfish | | common name | +30991 | namazu | | common name | +30991 | Parasilurus asotus | | synonym | +30991 | Silurus asotus Linnaeus, 1758 | | authority | +30991 | Silurus asotus | | scientific name | +30992 | Pangasianodon | | scientific name | +30993 | giant catfish | giant catfish | common name | +30993 | Mekong giant catfish | | genbank common name | +30993 | Pangasianodon gigas Chevey, 1931 | | authority | +30993 | Pangasianodon gigas | | scientific name | +30993 | Pangasius gigas | | synonym | +31032 | Fugu | | synonym | +31032 | Takifugu | | scientific name | +31033 | Fugu rubripes | | synonym | +31033 | Sphaeroides rubripes | | synonym | +31033 | Takifugu rubripes | | scientific name | +31033 | Takifugu rubripes (Temminck & Schlegel, 1850) | | authority | +31033 | Tetraodon rubripes | | synonym | +31033 | tiger puffer | | common name | +31033 | torafugu | | genbank common name | +31155 | adder | | genbank common name | +31155 | Coluber berus Linnaeus, 1758 | | authority | +31155 | Coluber berus | | synonym | +31155 | Kreuzotter | | common name | +31155 | Vipera berus (Linnaeus, 1758) | | authority | +31155 | Vipera berus | | scientific name | +32071 | Asplenium L., 1753 | | authority | +32071 | Asplenium | | scientific name | +32071 | Ceterach | | includes | +32071 | Phyllitis | | includes | +32071 | Pleurosorus | | includes | +32071 | spleenworts | | genbank common name | +32439 | Dasyatis | | scientific name | +32439 | Urolophoides | | synonym | +32457 | Glossolepis | | scientific name | +32459 | Melanotaenia | | scientific name | +32548 | Myoictis | | scientific name | +32549 | Myoictis melas | | scientific name | +32549 | Phascogalea melas MAA1/4ller, 1840 Muller, 1840 | | authority | +32549 | Phascogalea melas MAA1/4ller, 1840 | | synonym | +32549 | Phascogale melas | | synonym | +32549 | three-striped dasyure | | common name | +32549 | three-striped marsupial mouse | | genbank common name | +32560 | dunnart | | common name | +32560 | narrow-footed marsupial mouse | | genbank common name | +32560 | Phascogale murina | | synonym | +32560 | Phascogale murina Waterhouse, 1838 | | authority | +32560 | slender-tailed dunnart | | common name | +32560 | Sminthopsis murina | | scientific name | +32643 | Heleophryne | | scientific name | +33118 | apple-of-Peru | | common name | +33118 | Nicandra physalodes Gaertn., 1791 | | authority | +33118 | Nicandra physalodes | | scientific name | +33118 | Nicandra physaloides | | synonym | +33118 | shoo-fly plant | | genbank common name | +33120 | Alkekengi officinarum Moench, 1802 | | authority | +33120 | Alkekengi officinarum | | scientific name | +33120 | Chinese-lantern | Chinese-lantern | common name | +33120 | Japanese lantern | | genbank common name | +33120 | Physalis alkekengi L., 1753 | | authority | +33120 | Physalis alkekengi | | synonym | +33120 | winter-cherry | | common name | +33416 | Heliconius | | scientific name | +33416 | Laparus | | synonym | +33416 | Neruda | | synonym | +33434 | Heliconius charithonia (Linnaeus, 1767) | | authority | +33434 | Heliconius charithonia | | scientific name | +33434 | Heliconius charitonius | | synonym | +33434 | Papilio charithonia Linnaeus, 1767 | | authority | +33434 | Papilio charithonia | | synonym | +33434 | zebra butterfly | | common name | +33434 | zebra longwing | | genbank common name | +33452 | Dryas | Dryas | scientific name | +33453 | Dryas iulia (Fabricius, 1775) | | authority | +33453 | Dryas iulia | | scientific name | +33453 | Dryas julia | | synonym | +33453 | julia butterfly | | genbank common name | +33453 | julia | | common name | +33453 | Papilio iulia Fabricius, 1775 | | authority | +33453 | Papilio iulia | | synonym | +33465 | European small ermine moth | | genbank common name | +33465 | Hyponomeuta Billberg, 1820 | | authority | +33465 | Hyponomeuta | | synonym | +33465 | Yponomeuta Latreille, [1796] | | authority | +33465 | Yponomeuta | | scientific name | +33466 | apple ermine | | common name | +33466 | apple ermine moth | | genbank common name | +33466 | Hyponomeuta malinellus | | synonym | +33466 | Hyponomeuta malinellus Zeller, 1838 | | authority | +33466 | Yponomeuta malinellus | | scientific name | +33466 | Yponomeuta malinellus (Zeller, 1838) | | authority | +33519 | eastern rainbow fish | | common name | +33519 | eastern rainbowfish | eastern rainbowfish | genbank common name | +33519 | Melanotaenia splendida (Peters, 1866) | | authority | +33519 | Melanotaenia splendida | | scientific name | +33519 | Nematocentris splendida Peters, 1866 | | authority | +33519 | Nematocentris splendida | | synonym | +33529 | brownspotted killifish | | genbank common name | +33529 | Fundulus punctatus Gunther, 1866 | | authority | +33529 | Fundulus punctatus | | synonym | +33529 | Oaxaca killifish | Oaxaca killifish | common name | +33529 | Profundulus punctatus (Gunther, 1866) | | authority | +33529 | Profundulus punctatus | | scientific name | +33533 | Aspitrigla | | synonym | +33533 | Chelidonichthys | | scientific name | +33548 | Colobus abyssinicus (Oken, 1816) | | authority | +33548 | Colobus abyssinicus | | synonym | +33548 | Colobus guereza Rueppell, 1835 | | authority | +33548 | Colobus guereza Ruppell, 1835 | | authority | +33548 | Colobus guereza | | scientific name | +33548 | eastern black-and -white colobus | | common name | +33548 | guereza | | common name | +33548 | mantled guereza | | genbank common name | +33609 | Gypaetus | | scientific name | +33610 | Gypaetus barbatus Linnaeus, 1758 | | authority | +33610 | Gypaetus barbatus | | scientific name | +33610 | Laemmergeier | | common name | +33610 | lammergeier | | genbank common name | +33610 | Vultur barbatus Linnaeus, 1758 | | authority | +33610 | Vultur barbatus | | synonym | +33630 | Alveolata | | scientific name | +33630 | alveolates | | genbank common name | +33682 | Euglenozoa Cavalier-Smith 1981, emend. Simpson 1997 | | authority | +33682 | Euglenozoans | | synonym | +33682 | Euglenozoa | | scientific name | +33708 | mouse herpesvirus 68 | | equivalent name | +33708 | mouse herpesvirus strain 68 | | equivalent name | +33708 | MuHV-4 | | acronym | +33708 | Murid gammaherpesvirus 4 | | scientific name | +33708 | Murid herpesvirus 4 | | equivalent name | +33708 | murine gammaherpesvirus 68 | | equivalent name | +33708 | Murine herpesvirus 68 | | genbank common name | +33708 | murine herpesvirus type 68 | | equivalent name | +33789 | Channa | | scientific name | +33789 | Ophicephalus Bloch 1793 | | authority | +33789 | Ophicephalus | | synonym | +33790 | Channa aurantiacus Hamilton 1822 | | authority | +33790 | Channa aurantiacus | | synonym | +33790 | Channa gachua (Hamilton, 1822) | | authority | +33790 | Channa gachua | | scientific name | +33790 | Channa gachus (Hamilton, 1822) | | authority | +33790 | dwarf snakehead | | genbank common name | +33790 | Ophicephalus gachua Hamilton, 1822 | | authority | +33790 | Ophicephalus gachua | | synonym | +33790 | red-tailed snakehead | red-tailed snakehead | common name | +33993 | Neorickettsia Philip et al. 1953 (Approved Lists 1980) emend. Dumler et al. 2001 | | authority | +33993 | Neorickettsia | | scientific name | +33993 | risticii group of Ehrlichia | | includes | +34172 | bush palmetto | | common name | +34172 | dwarf palmetto | | genbank common name | +34172 | Sabal adansonii Guerns. | | authority | +34172 | Sabal adansonii | | synonym | +34172 | Sabal minor (Jacq.) Pers., 1805 | | authority | +34172 | Sabal minor | | scientific name | +34172 | scrub palmetto | | common name | +34205 | flag | | genbank common name | +34205 | fleur-de-lis | | common name | +34205 | Iris germanica L., 1753 | | authority | +34205 | Iris germanica | | scientific name | +34205 | Iris pallida x Iris variegata | | synonym | +34205 | Iris x germanica | | synonym | +34205 | Iris x nepalensis | | synonym | +34205 | Iris x nepalensis Wall. ex Lindl., 1824, non Iris nepalensis D.Don, 1825 | | authority | +34474 | Fomitopsis P. Karst., 1881 | | authority | +34474 | Fomitopsis | | scientific name | +34474 | Piptoporus P. Karst., 1881 | | authority | +34474 | Piptoporus | | synonym | +34646 | Mesobuthus | | scientific name | +34647 | Buthus tamulus | | synonym | +34647 | eastern Indian scorpion | | common name | +34647 | Indian red scorpion | | genbank common name | +34647 | Mesobuthus tamulus (Fabricius, 1798) | | authority | +34647 | Mesobuthus tamulus | | scientific name | +34649 | Buthus martensii Karsch | | authority | +34649 | Buthus martensii | | synonym | +34649 | Buthus martensi Karsch | | authority | +34649 | Buthus martensi | | synonym | +34649 | Chinese scorpion | | genbank common name | +34649 | Manchurian scorpion | | common name | +34649 | Mesobuthus martensii (Karsch, 1879) | | authority | +34649 | Mesobuthus martensii | | scientific name | +34649 | Mesobuthus martensi | | synonym | +34675 | Protophormia | | scientific name | +34676 | blue-arsed fly | | common name | +34676 | blue-assed fly | | common name | +34676 | blue-bottle fly | | common name | +34676 | northern blowfly | | genbank common name | +34676 | Phormia terraenovae | | synonym | +34676 | Phormia terranovae | | synonym | +34676 | Protophormia terraenovae (Robineau-desvoidy, 1830) | | authority | +34676 | Protophormia terraenovae | | scientific name | +34676 | Protophormia terrae-novae | | synonym | +34740 | common postman | | common name | +34740 | Heliconius melpomene (Linnaeus, 1758) | | authority | +34740 | Heliconius melpomene | | scientific name | +34740 | Papilio melpomene Linnaeus, 1758 | | authority | +34740 | Papilio melpomene | | synonym | +34740 | postman butterfly | | genbank common name | +34767 | Chiloscyllium | | scientific name | +34815 | Morone | | scientific name | +34815 | Roccus | | synonym | +34816 | Morone saxatilis | | scientific name | +34816 | Morone saxatilis (Walbaum, 1792) | | authority | +34816 | Perca saxatilis | | synonym | +34816 | Perca saxatilis Walbaum, 1792 | | authority | +34816 | striped bass | | common name | +34816 | striped sea-bass | | genbank common name | +34818 | Glyptocephalus | | scientific name | +34819 | Glyptocephalus cynoglossus (Linnaeus, 1758) | | authority | +34819 | Glyptocephalus cynoglossus | | scientific name | +34819 | greysole | | common name | +34819 | Pleuronectes cynoglossus Linnaeus, 1758 | | authority | +34819 | Pleuronectes cynoglossus | | synonym | +34819 | witch | | genbank common name | +34820 | Sebastes | | scientific name | +34885 | Eumetopias | | scientific name | +34886 | Eumetopias jubatus (Schreber, 1776) | | authority | +34886 | Eumetopias jubatus | | scientific name | +34886 | northern sea lion | | common name | +34886 | Phoca jubata Schreber, 1776 | | authority | +34886 | Phoca jubata | | synonym | +34886 | Steller sea lion | | genbank common name | +34891 | Neophocaena Palmer, 1899 | | authority | +34891 | Neophocaena | | scientific name | +34892 | Delphinus phocaenoides Cuvier, 1829 | | authority | +34892 | Delphinus phocaenoides | | synonym | +34892 | Finless porpoise | | common name | +34892 | Indo-Pacific finless porpoise | | genbank common name | +34892 | Neophocaena phocaenoides (G. Cuvier, 1829) | | authority | +34892 | Neophocaena phocaenoides | | scientific name | +34892 | Neophocaena phocanoides | | synonym | +34902 | Trachemys | | scientific name | +34903 | Chrysemys scripta | | synonym | +34903 | dime-store turtle | | common name | +34903 | Pseudemys scripta | | synonym | +34903 | red-eared slider | | common name | +34903 | red-eared slider turtle | | genbank common name | +34903 | slider turtle | | common name | +34903 | Testudo scripta | | synonym | +34903 | Testudo scripta Thunberg, 1792 | | authority | +34903 | Trachemys scripta | | scientific name | +34903 | Trachemys scripta (Thunberg in Schoepf, 1792) | | authority | +34923 | magpies | | genbank common name | +34923 | Pica | | scientific name | +34924 | Common magpie | | common name | +34924 | Corvus pica Linnaeus, 1758 | | authority | +34924 | Corvus pica | | synonym | +34924 | Elster | | common name | +34924 | Eurasian magpie | | genbank common name | +34924 | Pica pica (Linnaeus, 1758) | | authority | +34924 | Pica pica | | scientific name | +34929 | Ailuroedus dentirostris | | synonym | +34929 | Scenopoeetes dentirostris (Ramsay, EP, 1876) | | authority | +34929 | Scenopoeetes dentirostris | | scientific name | +34929 | Scenopoeus dentirostris Ramsay, 1876 | | authority | +34929 | Scenopoeus dentirostris | | synonym | +34929 | tooth-billed bowerbird | | genbank common name | +34929 | tooth-billed catbird | | common name | +34991 | Calliophis | | scientific name | +35046 | Amietophrynus maculatus | | synonym | +35046 | Bufo maculatus Hallowell, 1854 | | authority | +35046 | Bufo maculatus | | synonym | +35046 | Bufo regularis maculatus | | synonym | +35046 | flat-backed toad | | genbank common name | +35046 | lesser square-marked toad | | common name | +35046 | Merten's striped toad | | common name | +35046 | Sclerophrys maculata (Hallowell, 1854) | | authority | +35046 | Sclerophrys maculata | | scientific name | +35076 | Patiria | | scientific name | +35246 | CeHV-6 | | includes | +35246 | CeHV-7 | | includes | +35246 | CeHV-9 | | acronym | +35246 | Cercopithecid herpesvirus 9 | | equivalent name | +35246 | Cercopithecine alphaherpesvirus 9 | | scientific name | +35246 | Cercopithecine herpesvirus 6 | | includes | +35246 | Cercopithecine herpesvirus 7 | | includes | +35246 | Cercopithecine herpesvirus 9 | | equivalent name | +35246 | Simian varicella virus | | genbank common name | +35246 | simian varicella virus SVV | | equivalent name | +35252 | AHV-1 | | acronym | +35252 | AIHV-1 | | acronym | +35252 | Alcelaphine gammaherpesvirus 1 | | scientific name | +35252 | Alcelaphine herpesvirus 1 | | equivalent name | +35252 | AlHV1 | | acronym | +35252 | BHV3 | | acronym | +35252 | bovid herpesvirus 3 | | equivalent name | +35252 | Bovine herpesvirus 3 | | equivalent name | +35252 | Bovine herpesvirus type 3 | | equivalent name | +35252 | malignant catarrhal fever virus | | equivalent name | +35252 | wildebeest herpesvirus | | genbank common name | +35729 | Pseudotrematomus | | synonym | +35729 | Trematomus | | scientific name | +35732 | Mus tanezumi | | synonym | +35732 | Mus tanezumi Temminck, 1845 | | authority | +35732 | Oriental house rat | | genbank common name | +35732 | Rattus brunneusculus (Hodgson, 1845) | | authority | +35732 | Rattus brunneusculus | | synonym | +35732 | Rattus tanezumi | | scientific name | +35732 | Rattus tanezumi Temminch, 1844 | | authority | +35732 | Tanezumi rat | | common name | +35883 | Convolvulus nil L., 1762 | | authority | +35883 | Convolvulus nil | | synonym | +35883 | Ipomoea nil (L.) Roth, 1797 | | authority | +35883 | Ipomoea nil | | scientific name | +35883 | Japanese morning glory | | genbank common name | +35883 | Pharbitis nil (L.) Choisy, 1834 | | authority | +35883 | Pharbitis nil | | synonym | +35883 | qian niu | | common name | +35924 | Chinese peony | | genbank common name | +35924 | common garden peony | | common name | +35924 | Paeonia albiflora Pall. | | authority | +35924 | Paeonia albiflora | | synonym | +35924 | Paeonia lactiflora Pall., 1776 | | authority | +35924 | Paeonia lactiflora | | scientific name | +36048 | truffles | | genbank common name | +36048 | Tuber P. Micheli ex F.H. Wigg., 1780 | | authority | +36048 | Tuber | | scientific name | +36211 | Trachurus | | scientific name | +36220 | Pachycara | | scientific name | +36221 | Antarctic eel pout | Antarctic eel pout | common name | +36221 | Antarctic eelpout | | genbank common name | +36221 | Austrolycicthys brachycephalus | | synonym | +36221 | Lycodes brachycephalus Pappenheim, 1912 | | authority | +36221 | Lycodes brachycephalus | | synonym | +36221 | Pachycara brachycephalum | | scientific name | +36223 | black-cheeked white-nosed monkey | | common name | +36223 | Cercopithecus ascanius (Audebert, 1799) | | authority | +36223 | Cercopithecus ascanius | | scientific name | +36223 | red-tailed monkey | | genbank common name | +36223 | Simia ascanius Audebert, 1799 | | authority | +36223 | Simia ascanius | | synonym | +36229 | baboon | baboon | common name | +36229 | Chacma baboon | | genbank common name | +36229 | Papio hamadryas ursinus | | synonym | +36229 | Papio ursinus (Kerr, 1792) | | authority | +36229 | Papio ursinus | | scientific name | +36229 | Simia ursina Kerr, 1792 | | authority | +36229 | Simia ursina | | synonym | +36244 | Alcedo | | scientific name | +36245 | Alcedo atthis (Linnaeus, 1758) | | authority | +36245 | Alcedo atthis | | scientific name | +36245 | common kingfisher | | genbank common name | +36245 | Gracula atthis Linnaeus, 1758 | | authority | +36245 | Gracula atthis | | synonym | +36245 | river kingfisher | | common name | +36247 | common griffon | | synonym | +36247 | Eurasian griffon | | genbank common name | +36247 | griffon vulture | | common name | +36247 | Gyps fulvus (Hablizl, 1783) | | authority | +36247 | Gyps fulvus | | scientific name | +36247 | Vultur fulvus Hablizl, 1783 | | authority | +36247 | Vultur fulvus | | synonym | +36249 | Corvus macrorhynchos | | scientific name | +36249 | Corvus macrorhynchos Wagler, 1827 | | authority | +36249 | Corvus macrorhynchus | | includes | +36249 | jungle crow | | common name | +36249 | Large-billed crow | | genbank common name | +36257 | Anthus | | scientific name | +36272 | Cettia diphone | | synonym | +36272 | Chinese bush warbler | | common name | +36272 | Horornis diphone (Kittlitz, 1830) | | authority | +36272 | Horornis diphone | | scientific name | +36272 | Japanese bush warbler | | genbank common name | +36272 | Sylvia diphone | | synonym | +36272 | Sylvia diphone von Kittlitz, 1830 | | authority | +36274 | Leiothrix (f.) Swainson 1832 | | authority | +36274 | Leiothrix | Leiothrix | scientific name | +36275 | Leiothrix lutea | | scientific name | +36275 | Leiothrix lutea (Scopoli, 1786) | | authority | +36275 | Pekin robin | | common name | +36275 | red-billed leiothrix | | genbank common name | +36275 | Sylvia lutea Scopoli, 1786 | | authority | +36275 | Sylvia lutea | | synonym | +36283 | Erithacus | | scientific name | +36287 | Zoothera | | scientific name | +36288 | Scaly Thrush | | genbank common name | +36288 | Turdus dauma Latham, 1790 | | authority | +36288 | Turdus dauma | | synonym | +36288 | White's ground thrush | | common name | +36288 | Zoothera dauma | | scientific name | +36295 | Hypsipetes | | scientific name | +36312 | Ezo salamander | | common name | +36312 | Hokkaido salamander | | genbank common name | +36312 | Hynobius retardatus Dunn, 1923 | | authority | +36312 | Hynobius retardatus | | scientific name | +36312 | Noboribetsu salamander | | common name | +36312 | Satobius retardatus | | synonym | +36312 | Yeso salamander | | common name | +36313 | red-bellied newt | | genbank common name | +36313 | redbelly newt | | common name | +36313 | Taricha rivularis | | scientific name | +36313 | Triturus rivularis | | synonym | +36313 | Triturus rivularis Twitty, 1935 | | authority | +36313 | western red-bellied newt | | common name | +36317 | Ambrosi's cave salamander | | genbank common name | +36317 | Hydromantes ambrosii Lanza, 1954 | | authority | +36317 | Hydromantes ambrosii | | synonym | +36317 | Speleomantes ambrosii (Lanza, 1954) | | authority | +36317 | Speleomantes ambrosii | | scientific name | +36317 | Spezia cave salamander newt | | common name | +36318 | Atylodes genei | | synonym | +36318 | brown cave salamander | | common name | +36318 | Hydromantes genei | | synonym | +36318 | Hydromantes genei (Temminck & Schlegel, 1838) | | authority | +36318 | Salamandra genei | | synonym | +36318 | Salamandra genei Temminck & Schlegel, 1838 | | authority | +36318 | Sardinian cave salamander | | genbank common name | +36318 | Speleomantes genei | | scientific name | +36318 | Speleomantes genei (Temminck & Schlegel, 1838) | | authority | +36703 | Eigenmannia | | scientific name | +36795 | Melomys | | scientific name | +36795 | Melomys Thomas, 1922 | | authority | +36796 | grassland melomys | | genbank common name | +36796 | grassland mosaic-tailed rat | | common name | +36796 | Melomys burtoni | | scientific name | +36796 | Mus burtoni Ramsay, 1887 | | authority | +36796 | Mus burtoni | | synonym | +36798 | Uromys | | scientific name | +36799 | masked white-tailed rat | | common name | +36799 | Melomys hadrourus | | synonym | +36799 | Melomys hadrourus Winter, 1984 | | authority | +36799 | Thornton Peak uromys | | genbank common name | +36799 | Uromys hadrourus | | scientific name | +36800 | giant uromys | | genbank common name | +36800 | giant white-tailed rat | | common name | +36800 | Hapalotis caudimaculata Krefft, 1867 | | authority | +36800 | Hapalotis caudimaculata | | synonym | +36800 | Uromys caudimaculatus | | scientific name | +36801 | Crocidura | | scientific name | +36801 | Crocidura Wagler, 1832 | | authority | +36801 | white-toothed shrews | | genbank common name | +37003 | Kryptolebias marmoratus (Poey, 1880) | | authority | +37003 | Kryptolebias marmoratus | | scientific name | +37003 | mangrove rivulus | | genbank common name | +37003 | matanzas rivulus | | common name | +37003 | Rivulus marmoratus Poey, 1880 | | authority | +37003 | Rivulus marmoratus | | synonym | +37022 | Cerradomys subflavus | | scientific name | +37022 | Flavescent Oryzomys | | genbank common name | +37022 | Hesperomys subflavus | | synonym | +37022 | Hesperomys subflavus Wagner, 1842 | | authority | +37022 | Oryzomys subflavus | | synonym | +37022 | terraced rice rat | | common name | +37029 | Felis bengalensis Kerr, 1792 | | authority | +37029 | Felis bengalensis | | synonym | +37029 | leopard cat | | genbank common name | +37029 | Prionailurus bengalensis (Kerr, 1792) | | authority | +37029 | Prionailurus bengalensis | | scientific name | +37031 | Suricata | | scientific name | +37032 | meerkat | | genbank common name | +37032 | slender-tailed meerkat | | common name | +37032 | Suricata suricatta | | scientific name | +37032 | suricate | | common name | +37032 | Viverra suricatta Schreber, 1776 | | authority | +37032 | Viverra suricatta | | synonym | +37038 | Gavia | | scientific name | +37039 | Colymbus immer Brunnich, 1764 | | authority | +37039 | Colymbus immer | | synonym | +37039 | common loon | | common name | +37039 | Gavia imber | | synonym | +37039 | Gavia immer (Brunnich, 1764) | | authority | +37039 | Gavia immer immer | | synonym | +37039 | Gavia immer | | scientific name | +37039 | great northern diver | | common name | +37039 | great northern loon | | genbank common name | +37039 | Urinator imber | | synonym | +37063 | Pterodroma Bonaparte, 1856 | | authority | +37063 | Pterodroma | | scientific name | +37088 | Hydromantes supramontis Lanza, Nascetti & Bullini 1986 | | authority | +37088 | Hydromantes supramontis | | synonym | +37088 | Nuoro salamander | | common name | +37088 | Speleomantes supramontis (Lanza, Nascetti & Bullini, 1986) | | authority | +37088 | Speleomantes supramontis | | scientific name | +37088 | Supramonte cave salamander | | genbank common name | +37108 | herpesvirus of turkey | | equivalent name | +37108 | herpesvirus of turkeys | | common name | +37108 | MeHV-1 | | acronym | +37108 | Meleagrid alphaherpesvirus 1 | | scientific name | +37108 | Meleagrid herpesvirus 1 | | equivalent name | +37108 | Meleagrid herpesvirus type 1 | | equivalent name | +37108 | Turkey herpesvirus | | genbank common name | +37108 | turkey herpesvirus HVT | | equivalent name | +37184 | Hippotragus | | scientific name | +37185 | Antilope leucophaeus Pallas, 1766 | | authority | +37185 | Antilope leucophaeus | | synonym | +37185 | blue antelope | | genbank common name | +37185 | blue buck | | common name | +37185 | Hippotragus leucophaeus | | scientific name | +37285 | Coatzacoalcos gambusia | | common name | +37285 | Gambusia rachovii | | synonym | +37285 | Gambusia rachowii | | synonym | +37285 | Gambusia rachowi (Regan, 1914) | | authority | +37285 | Gambusia rachowi | | synonym | +37285 | Heterophallus rachovii Regan, 1914 | | authority | +37285 | Heterophallus rachovii | | scientific name | +37285 | Rachow's gambusia | | genbank common name | +37295 | Cebus nigrivittatus | | synonym | +37295 | Cebus olivaceus Schomburgk, 1848 | | authority | +37295 | Cebus olivaceus | | scientific name | +37295 | weeper capuchin monkey | | genbank common name | +37295 | weeping capuchin | | common name | +37347 | Cladobates belangeri | | synonym | +37347 | Cladobates belangeri Wagner, 1841 | | authority | +37347 | common tree shrew | common tree shrew | common name | +37347 | northern tree shrew | | genbank common name | +37347 | Tupaia belangeri | | scientific name | +37347 | Tupaia belangeri (Wagner, 1841) | | authority | +37347 | Tupaia glis belangeri | | synonym | +37437 | Malacothrix | Malacothrix | scientific name | +37437 | Malacothrix Wagner, 1843 | | authority | +37438 | Dendromus typicus Smith, 1834 | | authority | +37438 | Dendromus typicus | | synonym | +37438 | gerbil mouse | | common name | +37438 | long-eared mouse | | genbank common name | +37438 | Malacothrix typica | | scientific name | +37579 | Python | | scientific name | +37601 | Carduelis chloris | | synonym | +37601 | Chloris chloris | | scientific name | +37601 | European greenfinch | | genbank common name | +37601 | Loxia chloris Linnaeus, 1758 | | authority | +37601 | Loxia chloris | | synonym | +37601 | western greenfinch | | common name | +37604 | Acanthis | | scientific name | +37604 | redpolls | | genbank common name | +37606 | Pyrrhula | | scientific name | +37607 | Eurasian bullfinch | | genbank common name | +37607 | Gimpel | | common name | +37607 | Loxia pyrrhula Linnaeus, 1758 | | authority | +37607 | Loxia pyrrhula | | synonym | +37607 | northern bullfinch | | common name | +37607 | Pyrrhula pyrrhula (Linnaeus, 1758) | | authority | +37607 | Pyrrhula pyrrhula | | scientific name | +37610 | Erithacus rubecula (Linnaeus, 1758) | | authority | +37610 | Erithacus rubecula | | scientific name | +37610 | European robin | | genbank common name | +37610 | Motacilla rubecula Linnaeus, 1758 | | authority | +37610 | Motacilla rubecula | | synonym | +37610 | robin | robin | common name | +37613 | Vidua | | scientific name | +38526 | Abramis | | scientific name | +38527 | Abramis brama (Linnaeus, 1758) | | authority | +38527 | Abramis brama | | scientific name | +38527 | bream | bream | common name | +38527 | common bream | | genbank common name | +38527 | Cyprinus brama Linnaeus, 1758 | | authority | +38527 | Cyprinus brama | | synonym | +38564 | Heteromyias | | scientific name | +38564 | thicket robins | | genbank common name | +38565 | ashy robin | | genbank common name | +38565 | black-cheeked robin | | common name | +38565 | grey-headed robin | | common name | +38565 | Heteromyias albispecularis (Salvadori, 1876) | | authority | +38565 | Heteromyias albispecularis | | scientific name | +38565 | Poecilodryas albispecularis (Salvadori, 1876) | | synonym | +38565 | Poecilodryas albispecularis | | synonym | +38565 | white-browned robin | | common name | +38597 | Aepyprymnus | | scientific name | +38598 | Aepyprymnus rufescens | | scientific name | +38598 | Bettongia rufescens Gray, 1837 | | authority | +38598 | Bettongia rufescens | | synonym | +38598 | rufous bettong | | common name | +38598 | rufous rat-kangaroo | | genbank common name | +38619 | Lutreolina | | scientific name | +38620 | Didelphis crassicaudata Desmarest, 1804 | | authority | +38620 | Didelphis crassicaudata | | synonym | +38620 | Lutreolina crassicaudata | | scientific name | +38620 | lutrine opossum | | common name | +38620 | thick-tailed opossum | | genbank common name | +38660 | Amblypharyngodon | | scientific name | +38667 | grasshopper mice | | genbank common name | +38667 | Onychomys | | scientific name | +38679 | Chihuahuan grasshopper mouse | | genbank common name | +38679 | Mearns's grasshopper mouse | | common name | +38679 | Onychomys arenicola Mearns, 1896 | | authority | +38679 | Onychomys arenicola | | scientific name | +38679 | Onychomys torridus arenicola Mearns, 1896 | | authority | +38679 | Onychomys torridus arenicola | | synonym | +38730 | dropseed | | genbank common name | +38730 | Sporobolus R.Br., 1810 | | authority | +38730 | Sporobolus | | scientific name | +38771 | Gopherus | | scientific name | +38772 | Agassiz's desert tortoise | | genbank common name | +38772 | desert tortoise | | common name | +38772 | Gopherus agassizii | | scientific name | +38772 | Gopherus agassizi | | synonym | +38772 | Gopherus polyphemus agassizii | | synonym | +38772 | Xerobates agassizii Cooper, 1861 | | authority | +38772 | Xerobates agassizii | | synonym | +38773 | Florida gopher tortoise | | genbank common name | +38773 | gopher tortoise | | common name | +38773 | Gopherus polyphemus | | scientific name | +38773 | Testudo polyphemus Daudin, 1802 | | authority | +38773 | Testudo polyphemus | | synonym | +38933 | Polychrus | | scientific name | +38934 | common monkey lizard | | genbank common name | +38934 | Lacerta marmorata (Linnaeus, 1758) | | authority | +38934 | Lacerta marmorata Linnaeus, 1758 | | authority | +38934 | Lacerta marmorata | | synonym | +38934 | many-colored bush anole | | common name | +38934 | Polychrus marmoratus (Linnaeus, 1758) | | authority | +38934 | Polychrus marmoratus | | scientific name | +39023 | Atlantic coral snake | | common name | +39023 | Elaps diastema Dumeril, Bibron & Dumeril, 1854 | | authority | +39023 | Elaps diastema | | synonym | +39023 | Micrurus diastema (Dumeril, Bibron & Dumeril, 1854) | | authority | +39023 | Micrurus diastema | | scientific name | +39023 | variable coral snake | | genbank common name | +39030 | Apodemus agrarius (Pallas, 1771) | | authority | +39030 | Apodemus agrarius | | scientific name | +39030 | Apodemus pratensis | | synonym | +39030 | Eurasian field mouse | | genbank common name | +39030 | Mus agrarius Pallas, 1771 | | authority | +39030 | Mus agrarius | | synonym | +39030 | Old World field mouse | | common name | +39030 | striped field mouse | | common name | +39081 | Muscardinus | | scientific name | +39082 | hazel dormouse | | genbank common name | +39082 | hazel mouse | | common name | +39082 | Mus avellanarius Linnaeus, 1758 | | authority | +39082 | Mus avellanarius | | synonym | +39082 | Muscardinus avellanarius (Linnaeus, 1758) | | authority | +39082 | Muscardinus avellanarius | | scientific name | +39099 | Coluber obsoletus Say, 1823 | | authority | +39099 | Coluber obsoletus | | synonym | +39099 | Elaphe obsoleta Burt 1935 | | authority | +39099 | Elaphe obsoleta | | synonym | +39099 | Pantherophis obsoletus (Say 1823) Utiger et al. 2002 | | authority | +39099 | Pantherophis obsoletus | | scientific name | +39099 | rat snake | | common name | +39099 | Western rat snake | | genbank common name | +39147 | Gonyosoma | | scientific name | +39171 | horsemints | | common name | +39171 | Monarda L., 1753 | | authority | +39171 | Monarda | Monarda | scientific name | +39171 | wild bergamots | | genbank common name | +39246 | Tropidophis | | scientific name | +39343 | bee balm | | genbank common name | +39343 | Monarda didyma L., 1753 | | authority | +39343 | Monarda didyma | | scientific name | +39343 | Monarda fistulosa Curt. | | synonym | +39343 | Oswego tea | | common name | +39500 | Cordyline Comm. ex R.Br. | | authority | +39500 | Cordyline | | scientific name | +39501 | Cordyline fruticosa (L.) A.Chev., 1919 | | authority | +39501 | Cordyline fruticosa | | scientific name | +39501 | Cordyline terminalis (L.) Kunth, 1820 | | authority | +39501 | Cordyline terminalis | | synonym | +39501 | Dracaena compacta | | synonym | +39501 | good luck plant | | common name | +39501 | ti plant | | genbank common name | +39534 | Dracaena trifasciata (Prain) Mabb., 2017 | | authority | +39534 | Dracaena trifasciata | | synonym | +39534 | mother-in-law's tongue | | common name | +39534 | Sansevieria trifasciata Prain, 1903 | | authority | +39534 | Sansevieria trifasciata | | scientific name | +39534 | snake plant | | genbank common name | +39588 | Hyperolius | | scientific name | +39588 | Nesionixalus | | synonym | +39589 | argus reed frog | | genbank common name | +39589 | golden sedge frog | | common name | +39589 | Hyperolius argus Peters, 1854 | | authority | +39589 | Hyperolius argus | | scientific name | +39589 | Rappia argus | | synonym | +39589 | yellow spotted reed frog | | common name | +39591 | Bayon's common reedfrog | | common name | +39591 | common reed frog | | genbank common name | +39591 | Eucnemis viridi-flavus | | synonym | +39591 | Hyperolius destefanii Scortecci, 1943 | | authority | +39591 | Hyperolius destefanii | | synonym | +39591 | Hyperolius variabilis Ahl, 1931 | | authority | +39591 | Hyperolius variabilis | | synonym | +39591 | Hyperolius viridiflavus bayoni | | synonym | +39591 | Hyperolius viridiflavus destefanii (Scortecci, 1943) | | authority | +39591 | Hyperolius viridiflavus destefanii | | synonym | +39591 | Hyperolius viridiflavus (Dumeril and Bibron, 1841) | | authority | +39591 | Hyperolius viridiflavus (Dumeril & Bibron, 1841) | | authority | +39591 | Hyperolius viridiflavus | | scientific name | +39591 | Hyperolius viridiflavus variabilis (Ahl, 1931) | | authority | +39591 | Hyperolius viridiflavus variabilis | | synonym | +39591 | Hyperolius viridiflavus variablilis Ahl, 1931 | | authority | +39591 | Hyperolius viridiflavus viridiflavus | | includes | +39591 | Rappia bayoni Boulenger, 1911 | | authority | +39591 | Rappia bayoni | | synonym | +39599 | Afrixalus | | scientific name | +39601 | Leptopelis Gunther, 1859 | | authority | +39601 | Leptopelis | | scientific name | +39602 | Amani forest treefrog | | common name | +39602 | Hylambates vermiculatus Boulenger, 1909 | | authority | +39602 | Hylambates vermiculatus | | synonym | +39602 | Leptopelis vermiculatus (Boulenger, 1909) | | authority | +39602 | Leptopelis vermiculatus | | scientific name | +39602 | vermiculated tree frog | | genbank common name | +39603 | Bagamoyo forest treefrog | | genbank common name | +39603 | Broadley's tree frog | | common name | +39603 | Hylambates argenteus Pfeffer, 1893 | | authority | +39603 | Hylambates argenteus | | synonym | +39603 | Leptopelis argenteus (Pfeffer, 1893) | | authority | +39603 | Leptopelis argenteus | | scientific name | +39603 | Leptopelis broadleyi Poynton, 1985 | | authority | +39603 | Leptopelis broadleyi | | synonym | +39603 | silvery tree frog | | common name | +39603 | triad tree frog | triad tree frog | common name | +39604 | Leptopelis argenteus concolor | | synonym | +39604 | Leptopelis concolor Ahl, 1929 | | authority | +39604 | Leptopelis concolor | | scientific name | +39604 | triad tree frog | triad tree frog | common name | +39604 | Witu forest treefrog | | genbank common name | +39609 | Chirixalus | | synonym | +39609 | Chiromantis | | scientific name | +39611 | Buergeria | | scientific name | +39616 | Aphelocoma | | scientific name | +39620 | Acrocephalus | | scientific name | +39682 | Chinese green tree viper | | common name | +39682 | Stejneger's pit viper | | genbank common name | +39682 | Trimeresurus stejnegeri Schmidt, 1925 | | authority | +39682 | Trimeresurus stejnegeri | | scientific name | +39682 | Viridovipera stejnegeri | | synonym | +39705 | Herpestes edwardsii (Geoffroy Saint-Hilaire, 1818) | | authority | +39705 | Herpestes edwardsii | | synonym | +39705 | Indian gray mongoose | | genbank common name | +39705 | Indian grey mongoose | | common name | +39705 | Urva edwardsii | | scientific name | +39707 | buckeyes | buckeyes | genbank common name | +39707 | commodores | | common name | +39707 | Junonia | | scientific name | +39707 | pansies | | common name | +39708 | buckeye | | genbank common name | +39708 | Junonia coenia Hubner, 1822 | | authority | +39708 | Junonia coenia | | scientific name | +39708 | peacock butterfly | | common name | +39708 | Precis coenia | | synonym | +39855 | Jerusalem campion | | common name | +39855 | Lychnis chalcedonica L. | | authority | +39855 | Lychnis chalcedonica | | synonym | +39855 | Maltese cross | | common name | +39855 | scarlet lychnis | | genbank common name | +39855 | Silene chalcedonica (L.) E.H.L.Krause, 1901 | | authority | +39855 | Silene chalcedonica | | scientific name | +39944 | Caprine alphaherpesvirus 1 | | scientific name | +39944 | Caprine herpesvirus 1 | | equivalent name | +39944 | Caprine herpesvirus type 1 | | equivalent name | +39944 | CpHV-1 | | acronym | +39944 | goat herpesvirus | | genbank common name | +39946 | Indian rice | | common name | +39946 | Indica rice | | common name | +39946 | long-grained rice | | genbank common name | +39946 | Oryza sativa (indica cultivar-group) | | synonym | +39946 | Oryza sativa Indica Group | | scientific name | +39946 | Oryza sativa (indica group) | | synonym | +39946 | Oryza sativa subsp. indica Kato | | authority | +39946 | Oryza sativa subsp. indica | | synonym | +39946 | Oryza sp. Poi-6 | | includes | +39957 | Lophorina | | scientific name | +39958 | Lophorina superba (Forster, JR, 1781) | | authority | +39958 | Lophorina superba | | scientific name | +39958 | Paradisea superba Forster, 1781 | | authority | +39958 | Paradisea superba | | synonym | +39958 | Superb bird of paradise | | genbank common name | +39958 | superb paradise bird | | common name | +39992 | Terminalia L., 1767 | | authority | +39992 | Terminalia | | scientific name | +39993 | badam | | common name | +39993 | Indian almond | | genbank common name | +39993 | kamani | | common name | +39993 | myrobalan | | common name | +39993 | Terminalia catappa L., 1767 | | authority | +39993 | Terminalia catappa | | scientific name | +39993 | Terminalia cattapa | | synonym | +39993 | tropical almond | | common name | +40009 | lasiandra | | common name | +40009 | Lasiandra urvilleana DC., 1828 | | authority | +40009 | Lasiandra urvilleana | | synonym | +40009 | Pleroma urvilleanum (DC.) P.J.F.Guim. & Michelang., 2019 | | authority | +40009 | Pleroma urvilleanum | | scientific name | +40009 | princess flower | | genbank common name | +40009 | purple glory bush | | common name | +40009 | Tibouchina urvilleana (DC.) Cogn., 1885 | | authority | +40009 | Tibouchina urvilleana | | synonym | +40074 | Asterocampa | | scientific name | +40075 | Apatura clyton Boisduval & Le Conte, 1835 | | authority | +40075 | Apatura clyton | | synonym | +40075 | Asterocampa clyton (Boisduval & LeConte, 1833) | | authority | +40075 | Asterocampa clyton (Boisduval & Le Conte, 1835) | | authority | +40075 | Asterocampa clyton | | scientific name | +40075 | brown emperor | | common name | +40075 | tawny emperor | tawny emperor | genbank common name | +40094 | Hylephila | | scientific name | +40095 | fiery skipper | | genbank common name | +40095 | Hylephila phylaeus | | synonym | +40095 | Hylephila phyleus | | scientific name | +40095 | least skipper | | common name | +40095 | Papilio phyleus Drury, 1773 | | authority | +40095 | Papilio phyleus | | synonym | +40103 | Agrius Hubner, 1819 | | authority | +40103 | Agrius | | scientific name | +40104 | Agrius cingulata (Fabricius, 1775) | | authority | +40104 | Agrius cingulata | | scientific name | +40104 | Agrius cingulatus | | synonym | +40104 | pink-spotted hawk moth | | common name | +40104 | Sphinx cingulata Fabricius, 1775 | | authority | +40104 | Sphinx cingulata | | synonym | +40104 | sweetpotato hornworm | sweetpotato hornworm | genbank common name | +40156 | Lonchura | | scientific name | +40156 | mannikins | | genbank common name | +40157 | Bengalese finch | | common name | +40157 | Lonchura domestica | | synonym | +40157 | Lonchura striata domestica | | includes | +40157 | Lonchura striata (Linnaeus, 1766) | | authority | +40157 | Lonchura striata | | scientific name | +40157 | Loxia striata Linnaeus, 1766 | | authority | +40157 | Loxia striata | | synonym | +40157 | society finch | | common name | +40157 | white-backed munia | | common name | +40157 | white-rumped munia | | genbank common name | +40168 | Alcolapia | | scientific name | +40169 | Alcolapia alcalica (Hilgendorf, 1905) | | authority | +40169 | Alcolapia alcalica | | synonym | +40169 | magadi tilapia | | common name | +40169 | Natron tilapia | | genbank common name | +40169 | Oreochromis alcalicus | | scientific name | +40169 | Tilapia alcalica Hilgendorf, 1905 | | authority | +40169 | Tilapia alcalica | | synonym | +40180 | Alectoris melanocephala | | scientific name | +40180 | Arabian chukar | | common name | +40180 | Arabian partridge | | genbank common name | +40180 | Perdix melanocephala Ruppell, 1835 | | authority | +40180 | Perdix melanocephala | | synonym | +40193 | Oreochromis urolepis (Norman, 1922) | | authority | +40193 | Oreochromis urolepis | | scientific name | +40193 | Rufigi tilapia | | genbank common name | +40193 | Tilapia urolepis Norman, 1922 | | authority | +40193 | Tilapia urolepis | | synonym | +40205 | Aimophila fuscus | | synonym | +40205 | brown towhee | | common name | +40205 | canyon towhee | | genbank common name | +40205 | Kieneria fusca (Swainson, 1827) | | authority | +40205 | Kieneria fusca Swainson, 1827 | | synonym | +40205 | Kieneria fusca | | synonym | +40205 | Melozone fusca | | scientific name | +40205 | Melozone fusca Swainson, 1827 | | authority | +40205 | Melozone fuscus | | synonym | +40205 | Pipilo fuscus | | synonym | +40224 | Artibeus cinereus | | scientific name | +40224 | Dermanura cinerea Gervais, 1856 | | authority | +40224 | Dermanura cinerea | | synonym | +40224 | Gervais' fruit-eating bat | | genbank common name | +40224 | Gervais's fruit-eating bat | | common name | +40229 | Artibeus phaeotis (Miller, 1902) | | authority | +40229 | Artibeus phaeotis | | synonym | +40229 | Dermanura phaeotis Miller, 1902 | | authority | +40229 | Dermanura phaeotis | | scientific name | +40229 | dwarf fruit-eating bat | | genbank common name | +40229 | pygmy fruit-eating bat | | common name | +40249 | Uromastyx | | scientific name | +40450 | birch polypore | | common name | +40450 | Boletus betulinus Bull., 1788 | | authority | +40450 | Boletus betulinus | | synonym | +40450 | Fomitopsis betulina (Bull.) B.K. Cui, M.L. Han & Y.C. Dai, 2016 | | authority | +40450 | Fomitopsis betulina | | scientific name | +40450 | Piptoporus betulinus (Bull.) P. Karst., 1881 | | authority | +40450 | Piptoporus betulinus | | synonym | +40450 | razor strop fungus | | genbank common name | +40493 | Lutianus | | synonym | +40493 | Lutjanus | | scientific name | +40505 | Lutjanus campechanus (Poey, 1860) | | authority | +40505 | Lutjanus campechanus | | scientific name | +40505 | Mesoprion campechanus | | synonym | +40505 | northern red snapper | | genbank common name | +40505 | red snapper | | common name | +40510 | Pristipomoides | | scientific name | +40690 | emerald rockcod | | genbank common name | +40690 | Pagothenia bernacchii | | synonym | +40690 | Pseudotrematomus bernacchii (Boulenger, 1902) | | authority | +40690 | Pseudotrematomus bernacchii | | synonym | +40690 | rockcod | | common name | +40690 | Trematomus bernacchii Boulenger, 1902 | | authority | +40690 | Trematomus bernacchii | | scientific name | +40690 | Trematomus bernacchi | | synonym | +41106 | Dorcus | | scientific name | +41107 | Dorcus parallelipipedus (Linnaeus, 1758) | | authority | +41107 | Dorcus parallelipipedus | | scientific name | +41107 | Dorcus parallelopipedus | | synonym | +41107 | Dorcus sp. BMNH 1425263 | | includes | +41107 | lesser stag beetle | | genbank common name | +41107 | small stag beetle | | common name | +41138 | Coccinella | | scientific name | +41139 | Coccinella 7-punctata | | synonym | +41139 | Coccinella septempunctata Linnaeus, 1758 | | authority | +41139 | Coccinella septempunctata | | scientific name | +41139 | seven-spotted lady beetle | | common name | +41139 | seven-spotted ladybird | | genbank common name | +41140 | Calvia | | scientific name | +41185 | Korscheltellus | | scientific name | +41679 | Chinese radish | | genbank common name | +41679 | daikon | | common name | +41679 | Japanese radish | | common name | +41679 | kaiware daikon | | common name | +41679 | Raphanus sativus Chinese Radish Group | | synonym | +41679 | Raphanus sativus var. hortensis | | synonym | +41679 | Raphanus sativus var. longipinnatus | | synonym | +41679 | Raphanus sativus var. niger (Mill.) J.Kern., 1789 | | authority | +41679 | Raphanus sativus var. niger | | scientific name | +42043 | Behen vulgaris Moench, 1794 | | synonym | +42043 | bladder campion | | genbank common name | +42043 | maiden's-tears | | common name | +42043 | Silene vulgaris (Moench) Garcke, 1869 | | authority | +42043 | Silene vulgaris | | scientific name | +42043 | Silene zawadskii hort. ex Fenzl, 1851 | | authority | +42043 | Silene zawadskii | | synonym | +42043 | Zawadskii's campion | | common name | +42058 | Pronolagus | | scientific name | +42059 | greater red rock rabbit | | genbank common name | +42059 | Lepus crassicaudatus Geoffroy, 1832 | | authority | +42059 | Lepus crassicaudatus | | synonym | +42059 | Natal red rockhare | | common name | +42059 | Pronolagus crassicaudatus | | scientific name | +42061 | Lepus rupestris Smith, 1834 | | authority | +42061 | Lepus rupestris | | synonym | +42061 | Pronolagus rupestris | | scientific name | +42061 | Smith's red rockhare | | common name | +42061 | Smith's red rock rabbit | | genbank common name | +42146 | bare-backed fruit bats | | genbank common name | +42146 | Dobsonia | | scientific name | +42147 | Dobsonia moluccensis | | scientific name | +42147 | Hypoderma moluccensis Quoy & Gaimard, 1830 | | authority | +42147 | Hypoderma moluccensis | | synonym | +42147 | Moluccan bare-backed fruit bat | | genbank common name | +42147 | Moluccan naked-backed fruit bat | | common name | +42150 | Glis zemni Erxleben, 1777 | | authority | +42150 | Glis zemni | | synonym | +42150 | Podolsk blind mole rat | | genbank common name | +42150 | Podolsk mole rat | | common name | +42150 | Spalax podolicus | | synonym | +42150 | Spalax podolicus Trouessart, 1897 | | authority | +42150 | Spalax polonicus | | synonym | +42150 | Spalax zemni (Erxleben, 1777) | | authority | +42150 | Spalax zemni | | scientific name | +42151 | East African long-eared elephant shrew | | genbank common name | +42151 | Elephantulus rufescens Peters, 1878 | | authority | +42151 | Elephantulus rufescens | | synonym | +42151 | Galegeeska rufescens (Peters, 1878) | | authority | +42151 | Galegeeska rufescens | | scientific name | +42151 | rufous elephant shrew | | common name | +42163 | Podarcis | | scientific name | +42183 | Ovophis | | scientific name | +42195 | Dieffenbachia Schott | | authority | +42195 | Dieffenbachia | | scientific name | +42196 | Dieffenbachia maculata (Lodd.) Sweet | | authority | +42196 | Dieffenbachia maculata | | synonym | +42196 | Dieffenbachia picta Schott | | authority | +42196 | Dieffenbachia picta | | synonym | +42196 | Dieffenbachia seguine Schott, 1832 | | authority | +42196 | Dieffenbachia seguine | | scientific name | +42196 | dumb cane | | genbank common name | +42196 | mother-in-law plant | | common name | +42229 | Cerasus avium (L.) Moench | | authority | +42229 | Cerasus avium | | synonym | +42229 | gean | | common name | +42229 | mazzard | | common name | +42229 | Prunus avium (L.) L., 1755 | | authority | +42229 | Prunus avium | | scientific name | +42229 | Prunus cerasus var. avium L., 1753 | | authority | +42229 | Prunus cerasus var. avium | | synonym | +42229 | sweet cherry | | genbank common name | +42274 | Bassaris | | synonym | +42274 | Cynthia | | synonym | +42274 | Vanessa | | scientific name | +42283 | Enodia | | scientific name | +42284 | Enodia portlandia | | scientific name | +42284 | Papilio portlandia Fabricius, 1781 | | authority | +42284 | Papilio portlandia | | synonym | +42284 | pearly eye | | genbank common name | +42284 | southern pearly eye | | common name | +42285 | Hermeuptychia | | scientific name | +42286 | Euptychia hermes | | synonym | +42286 | Hermes satyr | | common name | +42286 | Hermeuptychia (Euptychia) hermes | | synonym | +42286 | Hermeuptychia hermes (Fabricius, 1775) | | authority | +42286 | Hermeuptychia hermes | | scientific name | +42286 | Hermeuptychia isabella | | synonym | +42286 | little wood satyr | | genbank common name | +42286 | Papilio hermes Fabricius, 1775 | | authority | +42286 | Papilio hermes | | synonym | +42293 | Pontia | | scientific name | +42295 | clouded yellow butterflies | | common name | +42295 | clouded yellows | | genbank common name | +42295 | Colias | | scientific name | +42296 | alfalfa caterpillar | | common name | +42296 | Colias euritheme | | synonym | +42296 | Colias eurytheme Boisduval, 1852 | | authority | +42296 | Colias eurytheme | | scientific name | +42296 | orange sulphur butterfly | | common name | +42296 | orange sulphur | | genbank common name | +42298 | Celastrina | | scientific name | +42299 | Celastrina argiolus ladon | | synonym | +42299 | Celastrina ladon | | scientific name | +42299 | common blue | common blue | common name | +42299 | Papilio ladon Cramer, 1780 | | authority | +42299 | Papilio ladon | | synonym | +42299 | spring azure | | genbank common name | +42336 | Bidens L., 1753 | | authority | +42336 | Bidens | | scientific name | +42337 | beggar-ticks | | common name | +42337 | Bidens pilosa L., 1753 | | authority | +42337 | Bidens pilosa | | scientific name | +42337 | Bidens pilosus | | synonym | +42337 | bur-marigold | | genbank common name | +42337 | cuckold | | common name | +42337 | sticktight | | common name | +42498 | Gasteropelecus | | scientific name | +42509 | Brachysynodontis | | synonym | +42509 | Hemisynodontis | | synonym | +42509 | Synodontis | | scientific name | +42513 | Pygocentrus | | scientific name | +42514 | Pygocentrus nattereri Kner, 1858 | | authority | +42514 | Pygocentrus nattereri | | scientific name | +42514 | red-bellied piranha | | genbank common name | +42514 | red piranha | | common name | +42514 | Serrasalmus nattereri (Kner, 1858) | | authority | +42514 | Serrasalmus nattereri | | synonym | +42525 | Colossoma | | scientific name | +42526 | black pacu | | common name | +42526 | Colossoma macropomum (Cuvier, 1816) | | authority | +42526 | Colossoma macropomum | | scientific name | +42526 | Myletes macropomus Cuvier, 1816 | | authority | +42526 | Myletes macropomus | | synonym | +42526 | tambaqui | | genbank common name | +42562 | Hepsetus | | scientific name | +42563 | African pike characin | | genbank common name | +42563 | African pike-characoid | | common name | +42563 | Hepsetus odoe (Bloch, 1794) | | authority | +42563 | Hepsetus odoe | | scientific name | +42563 | Kafuke pike | | common name | +42563 | Salmo odoe Bloch, 1794 | | authority | +42563 | Salmo odoe | | synonym | +42617 | Abramites | | scientific name | +42653 | Petrocephalus | | scientific name | +42721 | Marmosops | | scientific name | +42749 | Phelsuma | | scientific name | +42756 | Necturus | | scientific name | +43042 | Florida slimy salamander | | common name | +43042 | Grobman's slimy salamander | | common name | +43042 | Plethodon glutinosus | | scientific name | +43042 | Plethodon grobmani | | synonym | +43042 | Salamandra glutinosa Green, 1818 | | authority | +43042 | Salamandra glutinosa | | synonym | +43042 | slimy salamander | | genbank common name | +43042 | southeastern slimy salamander | | common name | +43043 | brook salamanders | | genbank common name | +43043 | Eurycea | | scientific name | +43043 | Typhlotriton | | synonym | +43044 | Cylindrosoma longicauda | | synonym | +43044 | Eurycea longicauda (Green, 1818) | | authority | +43044 | Eurycea longicauda | | scientific name | +43044 | Geotriton longicauda | | synonym | +43044 | long-tailed salamander | long-tailed salamander | genbank common name | +43044 | long-tailed triton | | common name | +43044 | Plethodon longicauda | | synonym | +43044 | Plethodon (Saurocercus) longicauda | | synonym | +43044 | Salamandra longicauda Green, 1818 | | authority | +43044 | Salamandra longicauda | | synonym | +43044 | Saurocercus longicauda | | synonym | +43044 | Spelerpes longicauda | | synonym | +43044 | Spelerpes longicaudus | | synonym | +43045 | Desmognathus | | scientific name | +43045 | dusky salamanders | | genbank common name | +43045 | Leurognathus | | synonym | +43048 | Abranchus alleghaniensis | | synonym | +43048 | Cryptobranchus alleganiensis (Daudin, 1803) | | authority | +43048 | Cryptobranchus alleganiensis | | scientific name | +43048 | hellbender | | genbank common name | +43048 | Menopoma alleghaniensis | | synonym | +43048 | Salamandra alleganiensis Daudin, 1803 | | authority | +43048 | Salamandra alleganiensis Sonnini de Manoncourt & Latreille, 1801 | | authority | +43048 | Salamandra alleganiensis | | synonym | +43048 | Triton alleganiensis | | synonym | +43104 | Rubus hispidus L., 1753 | | authority | +43104 | Rubus hispidus | | scientific name | +43104 | Rubus paganus L.H.Bailey, 1941 | | authority | +43104 | Rubus paganus | | synonym | +43104 | Rubus sempervirens Bigelow, 1824, non T.T.Yu & L.T.Lu, 1982 | | synonym | +43104 | Rubus vigil L.H.Bailey, 1925 | | authority | +43104 | Rubus vigil | | synonym | +43104 | running blackberry | | common name | +43104 | swamp blackberry | | common name | +43104 | swamp dewberry | | genbank common name | +43257 | Sillago | | scientific name | +43326 | Thrichomys | | scientific name | +43327 | common punare | | genbank common name | +43327 | punare | | common name | +43327 | Thrichomys apereoides (Lund, 1839) | | authority | +43327 | Thrichomys apereoides | | scientific name | +43327 | Thrichomys aperoides | | synonym | +43331 | Elaphurus | | scientific name | +43332 | Cervus davidianus | | synonym | +43332 | Elaphurus davidianus Milne-Edwards, 1866 | | authority | +43332 | Elaphurus davidianus | | scientific name | +43332 | milu | | common name | +43332 | Pere David's deer | | genbank common name | +43336 | Orthosia | Orthosia | scientific name | +43385 | asparagus fly | | genbank common name | +43385 | asparagus maggot | | common name | +43385 | Platyparea poeciloptera Schrank, 1776 | | authority | +43385 | Platyparea poeciloptera | | synonym | +43385 | Plioreocepta poeciloptera (Schrank, 1776) | | authority | +43385 | Plioreocepta poeciloptera | | scientific name | +43470 | Dendrobates | | scientific name | +43472 | Dendrobates speciosus Schmidt, 1857 | | authority | +43472 | Dendrobates speciosus | | synonym | +43472 | Hylaplesia speciosa | | synonym | +43472 | Oophaga speciosa (Schmidt, 1857) | | authority | +43472 | Oophaga speciosa | | scientific name | +43472 | splendid poison-arrow frog | | common name | +43472 | splendid poison frog | | genbank common name | +43476 | Dicamptodon | | scientific name | +43507 | Leiopelma | | scientific name | +43532 | Alabama waterdog | | genbank common name | +43532 | blackwarrior waterdog | | common name | +43532 | Necturus alabamensis | | scientific name | +43532 | Necturus alabamensis Viosca, 1937 | | authority | +43532 | Necturus beyeri alabamensis | | synonym | +43541 | Pelodytes | | scientific name | +43542 | Alytes punctatus | | synonym | +43542 | common parsley frog | | common name | +43542 | Cystignathus punctatus | | synonym | +43542 | mud-diver | | common name | +43542 | Ostetricans punctatus | | synonym | +43542 | parsley frog | | genbank common name | +43542 | Pelodytes punctatus (Daudin, 1802) | | authority | +43542 | Pelodytes punctatus | | scientific name | +43542 | Rana punctata Daudin, 1802 | | authority | +43542 | Rana punctata | | synonym | +43542 | spotted mud frog | | common name | +43557 | harlequin frogs | | common name | +43557 | Pseudis | | scientific name | +43557 | swimming frogs | | genbank common name | +43558 | paradox frog | | genbank common name | +43558 | Pseudis paradoxa (Linnaeus, 1758) | | authority | +43558 | Pseudis paradoxa | | scientific name | +43558 | Pseudis paradoxus | | synonym | +43558 | Rana paradoxa Linnaeus, 1758 | | authority | +43558 | Rana paradoxa | | synonym | +43558 | swiming frog | | common name | +43644 | Uma | | scientific name | +43645 | Colorado Desert fringe-toed lizard | | genbank common name | +43645 | Uma notata Baird, 1858 | | authority | +43645 | Uma notata rufopunctata Cope 1895 | | authority | +43645 | Uma notata rufopunctata | | synonym | +43645 | Uma notata | | scientific name | +43645 | Uma rufopunctata rufopunctata | | synonym | +43645 | Uma rufopunctata | | synonym | +43645 | Yuman Desert fringe-toed lizard | | common name | +43699 | Monopterus | Monopterus | scientific name | +43700 | Fluta alba | | synonym | +43700 | Monopterus albus | | scientific name | +43700 | Monopterus albus (Zuiew, 1793) | | authority | +43700 | Muraena alba | | synonym | +43700 | Muraena alba Zuiew, 1793 | | authority | +43700 | Muraena alba Zulew, 1793 | | authority | +43700 | rice-field eel | | common name | +43700 | swamp eel | swamp eel | genbank common name | +43777 | Guianan saki | | common name | +43777 | Pithecia pithecia | | scientific name | +43777 | Simia pithecia Linnaeus, 1766 | | authority | +43777 | Simia pithecia | | synonym | +43777 | white-faced saki | | genbank common name | +44170 | Stichopathes | | scientific name | +44326 | Albanian pool frog | | genbank common name | +44326 | Balkan frog | Balkan frog | common name | +44326 | Pelophylax shqipericus | | scientific name | +44326 | Rana shqiperica Hotz, Uzzell, Gunther, Tunner & Heppich, 1987 | | authority | +44326 | Rana shqiperica | | synonym | +44326 | Virpazar frog | | common name | +44371 | burrowing frogs | burrowing frogs | common name | +44371 | burrowing treefrogs | | common name | +44371 | cross-banded treefrogs | | genbank common name | +44371 | Mexican treefrogs | | common name | +44371 | Pternohyla | | synonym | +44371 | Smilisca | | scientific name | +44371 | smiliscas | | common name | +44490 | Chelodina | | scientific name | +44492 | Chelodina oblonga Gray, 1841 | | authority | +44492 | Chelodina oblonga | | scientific name | +44492 | Chelodina rugosa Ogilby, 1889 | | authority | +44492 | Chelodina rugosa Ogilby, 1890 | | authority | +44492 | Chelodina rugosa | | synonym | +44492 | Chelodina siebenrocki | | synonym | +44492 | Chelodina siebenrocki Werner, 1901 | | authority | +44492 | Macrochelodina oblonga | | synonym | +44492 | Macrochelodina rugosa | | synonym | +44492 | North Australian snake-necked turtle | | genbank common name | +44492 | Northern long-necked turtle | | common name | +44662 | Sitobion | | scientific name | +44664 | English grain aphid | | genbank common name | +44664 | grain aphid | | common name | +44664 | Sitobion avenae (Fabricius, 1775) | | authority | +44664 | Sitobion avenae | | scientific name | +44664 | Sitobion (Sitobion) avenae | | synonym | +44664 | Sitobion (Sitobium) avenae | | synonym | +44664 | Sitobium avenae | | synonym | +44679 | 17-year locust | | common name | +44679 | Cicada septendecim | | synonym | +44679 | Magicicada septendecim (Linnaeus, 1758) | | authority | +44679 | Magicicada septendecim | | scientific name | +44679 | seventeen-year cicada | seventeen-year cicada | genbank common name | +44679 | Tettigonia septendecim | | synonym | +44679 | Tibicen septendecim | | synonym | +44679 | Tibicina septemdecim | | synonym | +45171 | moutan peony | | common name | +45171 | Paeonia arborea Donn ex K.Koch | | authority | +45171 | Paeonia arborea | | synonym | +45171 | Paeonia moutan | | synonym | +45171 | Paeonia suffruticosa Andrews | | authority | +45171 | Paeonia suffruticosa cv. Gunpohden | | includes | +45171 | Paeonia suffruticosa | | scientific name | +45171 | Paeonia x suffruticosa | | synonym | +45171 | tree peony | | genbank common name | +45324 | Bombax L. | | authority | +45324 | Bombax | | scientific name | +45325 | Bombax ceiba L., 1753 | | authority | +45325 | Bombax ceiba | | scientific name | +45325 | Bombax malabaricum DC. | | authority | +45325 | Bombax malabaricum | | synonym | +45325 | Gossampinus malabarica (DC.) Merr. | | authority | +45325 | Gossampinus malabarica | | synonym | +45325 | Indian kapok | | genbank common name | +45325 | red silk-cotton tree | | common name | +45325 | Salmalia malabarica | | synonym | +45485 | Ammospermophilus | | scientific name | +45487 | Ammospermophilus harrisii | | scientific name | +45487 | Harris' antelope squirrel | | common name | +45487 | Harris's antelope squirrel | | genbank common name | +45487 | Sciurus harrisii Audubon and Bachman, 1854 | | authority | +45487 | Sciurus harrisii | | synonym | +45623 | edible frog | | common name | +45623 | Hylarana lessonae | | synonym | +45623 | Pelophylax esculentus | | synonym | +45623 | Pelophylax klepton esculentus | | synonym | +45623 | Pelophylax kl. esculentus | | synonym | +45623 | Pelophylax lessonae (Camerano, 1882) | | authority | +45623 | Pelophylax lessonae | | scientific name | +45623 | pool frog | | genbank common name | +45623 | Rana esculata | | synonym | +45623 | Rana esculenta synklepton | | synonym | +45623 | Rana esculenta var. lessonae Camerano, 1882 | | authority | +45623 | Rana esculenta var. lessonae | | synonym | +45623 | Rana klepton esculenta | | synonym | +45623 | Rana kl. esculenta | | synonym | +45623 | Rana lessonae | | synonym | +45623 | Rana lessonae x Rana ridibunda | | synonym | +45623 | Rana synklepton esculenta | | synonym | +45643 | Chenonetta | | scientific name | +45644 | Anas jubata Latham, 1801 | | authority | +45644 | Anas jubata | | synonym | +45644 | Australian wood duck | | common name | +45644 | Chenonetta jubata | | scientific name | +45644 | Maned duck | | genbank common name | +45779 | eastern tiger swallowtail | | genbank common name | +45779 | Papilio glaucus Linnaeus, 1758 | | authority | +45779 | Papilio glaucus | | scientific name | +45779 | Pterourus glaucus | | synonym | +45779 | tiger swallowtail | | common name | +46296 | Dendrelaphis | | scientific name | +46304 | Eridiphas | | synonym | +46304 | Hypsiglena | | scientific name | +46501 | Hydrochous | | scientific name | +46502 | Collocalia gigas Hartert & Butler, 1901 | | authority | +46502 | Collocalia gigas | | synonym | +46502 | giant swiftlet | | genbank common name | +46502 | Hydrochous gigas | | scientific name | +46502 | waterfall swift | | common name | +46514 | Asterina miniata | | synonym | +46514 | bat star | | genbank common name | +46514 | broad-disk star | | common name | +46514 | Patiria miniata (Brandt, 1835) | | authority | +46514 | Patiria miniata | | scientific name | +46514 | sea bat | | common name | +46514 | webbed star | | common name | +46750 | anchor coral | | common name | +46750 | Euphyllia ancora | | synonym | +46750 | Euphyllia ancora Veron & Pichon, 1980 | | authority | +46750 | Fimbriaphyllia ancora | | scientific name | +46750 | Fimbriaphyllia ancora (Veron & Pichon, 1980) | | authority | +46750 | hammer coral | | genbank common name | +46780 | Danio malabaricus | | synonym | +46780 | Devario malabaricus (Jerdon, 1849) | | authority | +46780 | Devario malabaricus | | scientific name | +46780 | giant danio | giant danio | common name | +46780 | Malabar danio | | genbank common name | +46780 | Perilampus malabaricus Jerdon, 1849 | | authority | +46780 | Perilampus malabaricus | | synonym | +46841 | Leopardus | | scientific name | +46841 | Oncifelis | | includes | +46841 | Oreailurus | | synonym | +46905 | Turnagra | | scientific name | +46906 | New Zealand thrush | | common name | +46906 | piopio | | genbank common name | +46906 | Tanagra capensis Sparrman, 1787 | | authority | +46906 | Tanagra capensis | | synonym | +46906 | Turnagra capensis | | scientific name | +46962 | Caulophyllum Michx., 1803 | | authority | +46962 | Caulophyllum | | scientific name | +46963 | blue cohosh | | genbank common name | +46963 | Caulophyllum sp. KFM-2002 | | includes | +46963 | Caulophyllum thalictroides (L.) Michx., 1803 | | authority | +46963 | Caulophyllum thalictroides | | scientific name | +46963 | papooseroot | | common name | +47435 | Euphlyctis palavanensis | | synonym | +47435 | Limnonectes palavanensis (Boulenger, 1894) | | authority | +47435 | Limnonectes palavanensis | | scientific name | +47435 | Palawan wart frog | | genbank common name | +47435 | Rana palavanensis Boulenger, 1894 | | authority | +47435 | Rana palavanensis | | synonym | +47435 | smooth guardian frog | | common name | +47436 | lesser swamp frog | | genbank common name | +47436 | Limnonectes paramacrodon (Inger, 1966) | | authority | +47436 | Limnonectes paramacrodon | | scientific name | +47436 | masked frog | masked frog | common name | +47436 | peat swamp frog | | common name | +47436 | Rana paramacrodon Inger, 1966 | | authority | +47436 | Rana paramacrodon | | synonym | +47436 | Tawau wart frog | | common name | +47437 | greater swamp frog | | genbank common name | +47437 | Inger's wart frog | | common name | +47437 | Limnonectes ingeri (Kiew, 1978) | | authority | +47437 | Limnonectes ingeri | | scientific name | +47437 | Rana ingeri Kiew, 1978 | | authority | +47437 | Rana ingeri | | synonym | +47543 | barking toad | | common name | +47543 | Bufo asper Gravenhorst, 1829 | | authority | +47543 | Bufo asper | | synonym | +47543 | giant Asian toad | | genbank common name | +47543 | Malayan giant toad | | common name | +47543 | Phrynoides aspera | | synonym | +47543 | Phrynoidis aspera (Gravenhorst, 1829) | | authority | +47543 | Phrynoidis aspera | | synonym | +47543 | Phrynoidis asper | | scientific name | +47548 | Bufo gariepensis Smith, 1848 | | authority | +47548 | Bufo gariepensis | | synonym | +47548 | Gariep toad | | common name | +47548 | Karroo toad | | genbank common name | +47548 | mountain toad | mountain toad | common name | +47548 | Vandijkophrynus gariepensis | | scientific name | +47548 | Vandijkophrynus gariepensis (Smith, 1848) | | authority | +47549 | Amietophrynus garmani (Meek, 1897) | | authority | +47549 | Amietophrynus garmani | | synonym | +47549 | Bufo garmani Meek, 1897 | | authority | +47549 | Bufo garmani | | synonym | +47549 | eastern olive toad | | common name | +47549 | Garman's square-backed toad | | common name | +47549 | Garman's square-marked toad | | common name | +47549 | Garman's toad | | common name | +47549 | light-nosed toad | | common name | +47549 | northern mottled toad | | common name | +47549 | olive toad | olive toad | genbank common name | +47549 | Sclerophrys garmani | | scientific name | +47555 | Anaxyrus retiformis (Sanders and Smith, 1951) | | authority | +47555 | Anaxyrus retiformis | | scientific name | +47555 | Bufo debilis retiformis Sanders & Smith, 1951 | | authority | +47555 | Bufo debilis retiformis | | synonym | +47555 | Bufo retiformis (Saunders & Smith, 1951) | | authority | +47555 | Bufo retiformis | | synonym | +47555 | Bufo retriformis | | synonym | +47555 | Pima green toad | | common name | +47555 | Sonora green toad | | common name | +47555 | Sonoran green toad | | genbank common name | +47559 | Anaxyrus terrestris (Bonnaterre, 1789) | | authority | +47559 | Anaxyrus terrestris | | scientific name | +47559 | Bufo rufus | Bufo rufus | synonym | +47559 | Bufo rufus Schneider, 1799 | | authority | +47559 | Bufo terrestris (Bonnaterre, 1798) | | authority | +47559 | Bufo terrestris | | synonym | +47559 | Rana terrestris Bonnaterre, 1789 | | authority | +47559 | Rana terrestris | | synonym | +47559 | southeastern toad | | common name | +47559 | southern toad | | genbank common name | +47561 | Anaxyrus woodhousii (Girard, 1854) | | authority | +47561 | Anaxyrus woodhousii | | scientific name | +47561 | Bufo woodhousei | | synonym | +47561 | Bufo woodhousii Girard, 1854 | | authority | +47561 | Bufo woodhousii | | synonym | +47561 | Rocky Mountain toad | | common name | +47561 | Woodhouse's toad | | genbank common name | +47563 | Leptodactylus Fitzinger, 1826 | | authority | +47563 | Leptodactylus | | scientific name | +47563 | Vanzolinius | | synonym | +47564 | Leptodactylus pentadactylus | | scientific name | +47564 | Rana pentadactyla Laurenti, 1768 | | authority | +47564 | Rana pentadactyla | | synonym | +47564 | smokey jungle frog | | common name | +47564 | smoky jungle frog | | genbank common name | +47564 | South American bullfrog | | common name | +47576 | Ansonia | | scientific name | +47577 | Ansonia muelleri (Boulenger, 1887) | | authority | +47577 | Ansonia muelleri | | scientific name | +47577 | Bufo muelleri Boulenger, 1887 | | authority | +47577 | Bufo muelleri | | synonym | +47577 | Mueller's stream toad | | genbank common name | +47577 | Muller's stream toad | | common name | +47578 | Atelopus | | scientific name | +47586 | Bufo lemur (Cope, 1869) | | authority | +47586 | Bufo lemur | | synonym | +47586 | lowland Caribbean toad | | genbank common name | +47586 | Peltophryne lemur Cope, 1869 | | authority | +47586 | Peltophryne lemur | | scientific name | +47586 | Puerto Rican crested toad | | common name | +47605 | Hibiscus L. | | authority | +47605 | Hibiscus | | scientific name | +47605 | rosemallows | | common name | +47699 | Myripristis | | scientific name | +47707 | Adioryx | | synonym | +47707 | Sargocentron | | scientific name | +47718 | Acanthophthalmus | | synonym | +47718 | Cobitis | | scientific name | +47727 | Briba | | synonym | +47727 | Hemidactilus | | synonym | +47727 | Hemidactylus | | scientific name | +47727 | Teratolepis | | synonym | +47766 | Agrotis | | scientific name | +47929 | CeHV-8 | | acronym | +47929 | Cercopithecine herpesvirus 8 | | equivalent name | +47929 | macacine betaherpesvirus 3 | | scientific name | +47929 | Macacine herpesvirus 3 | | equivalent name | +47929 | Rhesus cytomegalovirus 68-1 | | equivalent name | +47929 | Rhesus cytomegalovirus | | genbank common name | +47929 | Rhesus cytomegalovirus (strain 68-1) (RhCMV) | | equivalent name | +47929 | Rhesus cytomegalovirus (strain 68-1) | | synonym | +47929 | Rhesus cytomegalovirus strain 68-1 | | synonym | +47929 | Rhesus macaque cytomegalovirus | | equivalent name | +47929 | Rhesus monkey cytomegalovirus | | equivalent name | +48169 | longtail tuna | | genbank common name | +48169 | northern bluefin tuna | northern bluefin tuna | common name | +48169 | Thunnus tonggol (Bleeker, 1851) | | authority | +48169 | Thunnus tonggol | | scientific name | +48169 | Thynnus tonggol Bleeker, 1851 | | authority | +48169 | Thynnus tonggol | | synonym | +48170 | Chelon | | scientific name | +48191 | Chelon aurata | | synonym | +48191 | Chelon auratus (Risso, 1810) | | authority | +48191 | Chelon auratus | | scientific name | +48191 | golden grey mullet | | genbank common name | +48191 | golden mullet | | common name | +48191 | Liza aurata (Risso, 1810) | | authority | +48191 | Liza aurata | | synonym | +48191 | Mugil auratus Risso, 1810 | | authority | +48191 | Mugil auratus | | synonym | +48193 | flathead mullet | | genbank common name | +48193 | Formosan gray mullet | | common name | +48193 | Formosan grey mullet | | common name | +48193 | Mugil cephalotus | | synonym | +48193 | Mugil cephalotus Valenciennes, 1836 | | authority | +48193 | Mugil cephalus Linnaeus, 1758 | | authority | +48193 | Mugil cephalus | | scientific name | +48193 | Mugil galapagensis Ebeling, 1961 | | authority | +48193 | Mugil galapagensis | | synonym | +48193 | Mugil japonicus | | synonym | +48284 | Caprimulgus Linnaeus, 1758 | | authority | +48284 | Caprimulgus | | scientific name | +48415 | Macrozoarces | | synonym | +48415 | Zoarces | | scientific name | +48455 | Gonostoma | | scientific name | +48456 | Atlantic fangjaw | | genbank common name | +48456 | Atlantic lightfish | | common name | +48456 | Gonostoma atlanticum Norman, 1930 | | authority | +48456 | Gonostoma atlanticum | | scientific name | +48456 | Gonostoma cf. atlanticum CBM DNA 2015-011 | | synonym | +48456 | Gonostoma cf. atlanticum CBM:ZF:20323 | | synonym | +48667 | Rutilus | | scientific name | +48849 | Fringilla domestica Linnaeus, 1758 | | authority | +48849 | Fringilla domestica | | synonym | +48849 | Haussperling | | common name | +48849 | house sparrow | | genbank common name | +48849 | Passer domesticus (Linnaeus, 1758) | | authority | +48849 | Passer domesticus | | scientific name | +48890 | marsh tit | | genbank common name | +48890 | Parus palustris Linnaeus, 1758 | | authority | +48890 | Parus palustris | | synonym | +48890 | Poecile palustris Linnaeus, 1758 | | authority | +48890 | Poecile palustris | | scientific name | +48890 | Sumpfmeise | | common name | +48987 | Nyctimene | | scientific name | +48988 | common tube-nosed fruit bat | | genbank common name | +48988 | Cynopterus albiventer Gray, 1863 | | authority | +48988 | Cynopterus albiventer | | synonym | +48988 | Nyctimene albiventer | | scientific name | +48988 | tube-nosed fruit bat | | common name | +49551 | Ligusticum L., 1753 | | authority | +49551 | Ligusticum | | scientific name | +49554 | beach lovage | | common name | +49554 | Ligusticum scothicum | | synonym | +49554 | Ligusticum scoticum L. | | authority | +49554 | Ligusticum scoticum | | scientific name | +49554 | Scots lovage | | genbank common name | +49652 | Barnardia scilloides Lindl. | | authority | +49652 | Barnardia scilloides | | synonym | +49652 | Chinese squill | | common name | +49652 | Japanese jacinth | | genbank common name | +49652 | Scilla scilloides (Lindl.) Druce, 1917 | | authority | +49652 | Scilla scilloides | | scientific name | +50178 | Cephalotaxus | | scientific name | +50178 | Cephalotaxus Siebold & Zucc. ex Endl. | | authority | +50178 | plum yews | | genbank common name | +50352 | Chalinolobus | | scientific name | +50352 | groove-lipped bats | | common name | +50352 | lobe-lipped bats | | genbank common name | +50352 | wattled bats | | common name | +50353 | Chalinolobus morio | | scientific name | +50353 | chocolate wattled bat | | common name | +50353 | chocolate-wattled bat | | genbank common name | +50353 | Scotophilus morio Gray, 1841 | | authority | +50353 | Scotophilus morio | | synonym | +50368 | Arothron Mueller 1841 | | authority | +50368 | Arothron | | scientific name | +50403 | Vanellus | | scientific name | +50590 | Lithognathus | | scientific name | +50591 | Lithognathus mormyrus (Linnaeus, 1758) | | authority | +50591 | Lithognathus mormyrus | | scientific name | +50591 | Pagellus mormyrus | | synonym | +50591 | sand steenbras | | genbank common name | +50591 | Sparus mormyrus Linnaeus, 1758 | | authority | +50591 | Sparus mormyrus | | synonym | +50591 | striped seabream | | common name | +50732 | Astronotus | | scientific name | +50733 | Astronotus ocellatus (Agassiz, 1831) | | authority | +50733 | Astronotus ocellatus | | scientific name | +50733 | Lobotes ocellatus Agassiz, 1831 | | authority | +50733 | Lobotes ocellatus | | synonym | +50733 | marblecichlid | | common name | +50733 | oscar cichlid | | common name | +50733 | oscar | | genbank common name | +50733 | red oscar | | common name | +50733 | velvet cichlid | | common name | +50744 | Dascyllus | | scientific name | +50790 | Dascyllus trimaculatus (Ruppell, 1829) | | authority | +50790 | Dascyllus trimaculatus | | scientific name | +50790 | Pomacentrus trimaculatus Ruppell, 1829 | | authority | +50790 | Pomacentrus trimaculatus | | synonym | +50790 | three spot damselfish | | genbank common name | +50790 | threespot dascyllus | | common name | +50908 | Occidozyga | | scientific name | +50911 | Limnonectes ibanorum (Inger, 1964) | | authority | +50911 | Limnonectes ibanorum | | scientific name | +50911 | Rana ibanorum Inger, 1964 | | authority | +50911 | Rana ibanorum | | synonym | +50911 | rough-backed river frog | | genbank common name | +50911 | tributary wart frog | | common name | +50913 | brown mountain frog | | genbank common name | +50913 | Euphlyctis macrodon | | synonym | +50913 | giant Javan frog | | common name | +50913 | Limnonectes macrodon (Dumeril & Bibron, 1841) | | authority | +50913 | Limnonectes macrodon | | scientific name | +50913 | Malayan giant bullfrog | | common name | +50913 | Malaya wart frog | | common name | +50913 | Rana macrodon | | synonym | +50913 | Rana macrodon Tschudi, 1838 | | authority | +50914 | Euphlyctis magna | | synonym | +50914 | Limnonectes magnus | | scientific name | +50914 | Limnonectes magnus (Stejneger, 1910) | | authority | +50914 | Mindanao fanged frog | | genbank common name | +50914 | Mount Apo wart frog | | common name | +50914 | Rana magna Stejneger, 1910 | | authority | +50914 | Rana magna | | synonym | +50915 | Limnonectes malesianus (Kiew, 1984) | | authority | +50915 | Limnonectes malesianus | | scientific name | +50915 | Malaysian peat frog | | genbank common name | +50915 | Malaysian river frog | | common name | +50915 | Rana malesiana Kiew, 1984 | | authority | +50915 | Rana malesiana | | synonym | +50915 | Singapore wart frog | | common name | +51088 | Myristica Gronov. | | authority | +51088 | Myristica | | scientific name | +51089 | mace | | common name | +51089 | Myristica fragrans Houtt., 1774 | | authority | +51089 | Myristica fragrans | | scientific name | +51089 | Myristica officinalis L.f., 1781, non Myristica officinalis Mart., 1828 | | synonym | +51089 | nutmeg | | genbank common name | +51213 | Cyclura | | scientific name | +51242 | Galaxias | | scientific name | +51341 | Aplodontia Richardson, 1829 | | authority | +51341 | Aplodontia | | scientific name | +51342 | Anisonyx rufa Rafinesque, 1817 | | authority | +51342 | Anisonyx rufa | | synonym | +51342 | Aplodontia rufa | | scientific name | +51342 | mountain beaver | | genbank common name | +51342 | sewellel | | common name | +51345 | Graphiurus | | scientific name | +51351 | bai cai | | common name | +51351 | Brassica campestris (Pekinensis Group) | | synonym | +51351 | Brassica campestris subsp. pekinensis (Lour.) G.Olsson | | authority | +51351 | Brassica campestris subsp. pekinensis | | synonym | +51351 | Brassica campestris var. pekinensis | | synonym | +51351 | Brassica pekinensis | | synonym | +51351 | Brassica rapa Chinese Cabbage Group | | synonym | +51351 | Brassica rapa subsp. pekinensis (Lour.) Kitam., 1984 | | authority | +51351 | Brassica rapa subsp. pekinensis | | scientific name | +51351 | Brassica rapa var. glabra Regel | | authority | +51351 | Brassica rapa var. glabra | | synonym | +51351 | Brassica rapa var. pekinensis | | synonym | +51351 | celery cabbage | | common name | +51351 | Chinese cabbage | | genbank common name | +51351 | pe-tsai | | common name | +51360 | Piculus | | scientific name | +51360 | Piculus Spix, 1824 | | authority | +51647 | Gloydius | | scientific name | +51750 | Coluber molurus Linnaeus, 1758 | | authority | +51750 | Coluber molurus | | synonym | +51750 | Indian python | | common name | +51750 | Indian rock python | | genbank common name | +51750 | Molurus bivittatus | | equivalent name | +51750 | Python molurus (Linnaeus, 1758) | | authority | +51750 | Python molurus | | scientific name | +51750 | rock python | rock python | common name | +51752 | African rock python | | genbank common name | +51752 | Coluber sebae Gmelin, 1789 | | authority | +51752 | Coluber sebae | | synonym | +51752 | Python sebae (Gmelin, 1789) | | authority | +51752 | Python sebae | | scientific name | +51752 | rock python | rock python | common name | +51788 | Halichoeres | | scientific name | +51797 | Pomacanthus | | scientific name | +51843 | Anilius | | scientific name | +51844 | Anguis scytale Linnaeus, 1758 | | authority | +51844 | Anguis scytale | | synonym | +51844 | Anilius scytale | | scientific name | +51844 | false coral snake | | genbank common name | +51844 | South American red pipe snake | | common name | +51846 | Brahminy blind snake | | genbank common name | +51846 | common blind snake | | common name | +51846 | Eryx braminus Daudin, 1803 | | authority | +51846 | Eryx braminus | | synonym | +51846 | Indotyphlops braminus | | scientific name | +51846 | Ramphotyphlops braminus | | synonym | +51891 | Antaresia maculosa (Peters, 1873) | | authority | +51891 | Antaresia maculosa | | scientific name | +51891 | eastern Children's python | | common name | +51891 | eastern small-blotched python | | genbank common name | +51891 | Liasis maculosa | | synonym | +51891 | Liasis maculosus Peters, 1873 | | authority | +51891 | Liasis maculosus | | synonym | +51894 | Chondropython | | synonym | +51894 | Morelia | Morelia | scientific name | +51896 | carpet python | | genbank common name | +51896 | Coluber spilotus Lacepede, 1804 | | authority | +51896 | Coluber spilotus | | synonym | +51896 | Morelia spilota (Lacepede, 1804) | | authority | +51896 | Morelia spilota | | scientific name | +51896 | Python spilotus | | synonym | +51896 | South-western carpet python | | common name | +51901 | Cyanopsitta | | scientific name | +51902 | Ara spixii | | synonym | +51902 | Cyanopsitta spixii | | scientific name | +51902 | Little blue macaw | | common name | +51902 | Sittace spixii | | synonym | +51902 | Sittace spixii Wagler, 1832 | | authority | +51902 | Spixs macaw | | common name | +51902 | Spix's macaw | | genbank common name | +51949 | common poison-arrow frog | | common name | +51949 | Dendrobates histrionicus Berthold, 1845 | | authority | +51949 | Dendrobates histrionicus | | synonym | +51949 | Dendrobates tinctorius histrionicus | | synonym | +51949 | harlequin poison frog | | genbank common name | +51949 | Oophaga histrionica (Berthold, 1845) | | authority | +51949 | Oophaga histrionica | | scientific name | +51949 | red-and-black poison frog | | common name | +51959 | Andinobates minutus | | scientific name | +51959 | blue-bellied poison-arrow frog | | common name | +51959 | blue-bellied poison frog | | common name | +51959 | bluebelly poison frog | | genbank common name | +51959 | Dendrobates minutus minutus Shreve, 1935 | | authority | +51959 | Dendrobates minutus minutus | | synonym | +51959 | Dendrobates minutus Shreve, 1935 | | authority | +51959 | Dendrobates minutus | | synonym | +51959 | Minyobates minutus | | synonym | +51959 | Ranitomeya minuta (Shreve, 1935) | | authority | +51959 | Ranitomeya minuta | | synonym | +51980 | Haitian dwarf boa | | genbank common name | +51980 | Haitian ground boa | | common name | +51980 | Tropidophis haetianus (Cope, 1879) | | authority | +51980 | Tropidophis haetianus | | scientific name | +51980 | Ungualia haetiana Cope, 1879 | | authority | +51980 | Ungualia haetiana | | synonym | +52105 | black-bellied salamander | | genbank common name | +52105 | Desmognathus quadramaculatus | | scientific name | +52105 | mountain triton | | common name | +52105 | Salamandra quadramaculata Holbrook, 1840 | | authority | +52105 | Salamandra quadramaculata | | synonym | +52123 | Oceanodroma | | scientific name | +52158 | Agrostis miliacea L., 1753 | | authority | +52158 | Agrostis miliacea | | synonym | +52158 | Oloptum miliaceum (L.) Roser & Hamasha, 2012 | | authority | +52158 | Oloptum miliaceum | | scientific name | +52158 | Oryzopsis miliacea (L.) Benth. & Hook. ex Asch. & Schweinf., 1887 | | authority | +52158 | Oryzopsis miliacea | | synonym | +52158 | Piptatherum miliaceum (L.) Coss., 1851 | | authority | +52158 | Piptatherum miliaceum | | synonym | +52158 | rice-millet | | common name | +52158 | smilo grass | | genbank common name | +52232 | black and white tassel-ear marmoset | | common name | +52232 | Callithrix humeralifera (E. Geoffroy, 1812) | | authority | +52232 | Callithrix humeralifera | | synonym | +52232 | Callithrix jacchus humeralifer | | synonym | +52232 | Hapale humeralifer | | synonym | +52232 | Mico humeralifera | | synonym | +52232 | Mico humeralifer (Geoffroy, 1812) | | authority | +52232 | Mico humeralifer | | scientific name | +52232 | Santarem marmoset | | genbank common name | +52232 | tassel-eared marmoset | | common name | +52370 | Quadrula | | scientific name | +52372 | mapleleaf | | common name | +52372 | mapleleaf mussel | | genbank common name | +52372 | Quadrula apiculata | | synonym | +52372 | Quadrula quadrula (Rafinesque, 1820) | | authority | +52372 | Quadrula quadrula | | scientific name | +52372 | ridged mapleleaf | | common name | +52372 | southern mapleleaf | | common name | +52617 | Carassius auratus cuvieri | | synonym | +52617 | Carassius cuvieri cuvieri | | synonym | +52617 | Carassius cuvieri | | scientific name | +52617 | Carassius cuvieri Temminck & Schlegel, 1846 | | authority | +52617 | Japanese crucian carp | | genbank common name | +52617 | Japanese (white) crucian carp | | common name | +52617 | white crucian carp | | common name | +52631 | Crocidura suaveolens (Pallas, 1811) | | authority | +52631 | Crocidura suaveolens | | scientific name | +52631 | lesser shrew | | common name | +52631 | Lesser white-toothed shrew | | genbank common name | +52631 | Sorex suaveolens Pallas, 1811 | | authority | +52631 | Sorex suaveolens | | synonym | +52652 | Aphyosemion (Chromaphyosemion) | | authority | +52652 | Aphyosemion | | scientific name | +52652 | Chromaphyosemion | | synonym | +52652 | Diapteron | | synonym | +52653 | Aphyosemion australe (Rachow, 1921) | | authority | +52653 | Aphyosemion australe | | scientific name | +52653 | Haplochilus calliurus australis | | synonym | +52653 | lyretail killi | | common name | +52653 | lyretail killifish | | genbank common name | +52653 | lyretail panchax | | common name | +52655 | Aphyoplatys | | synonym | +52655 | Epiplatys | | scientific name | +52813 | Neomys | | scientific name | +52814 | Mediterranean water shrew | | common name | +52814 | Neomys anomalis | | synonym | +52814 | Neomys anomalus Cabrera, 1907 | | authority | +52814 | Neomys anomalus | | scientific name | +52814 | southern water shrew | | genbank common name | +52838 | Balbis banana | | genbank common name | +52838 | Musa balbisiana Colla, 1820 | | authority | +52838 | Musa balbisiana | | scientific name | +52838 | Musa BB Group | | synonym | +52838 | Musa rosacea Jacq., 1804 | | authority | +52838 | Musa rosacea | | synonym | +52838 | Musa sp. 'Pisang klutuk' | | includes | +52838 | starchy banana | | common name | +53222 | Lupinus cosentinii Guss., 1828 | | authority | +53222 | Lupinus cosentinii | | scientific name | +53222 | Lupinus cosentini | | synonym | +53222 | sandplain lupin | | common name | +53222 | West Australian blue lupin | | genbank common name | +53541 | Stegomyia | | scientific name | +53545 | Ochlerotatus | Ochlerotatus | scientific name | +53882 | Gymnocladus Lam. | | authority | +53882 | Gymnocladus | | scientific name | +53883 | chicot | | common name | +53883 | Gymnocladus dioica | | synonym | +53883 | Gymnocladus dioicus (L.) K.Koch, 1869 | | authority | +53883 | Gymnocladus dioicus | | scientific name | +53883 | Kentucky coffee tree | | genbank common name | +53883 | nicker tree | | common name | +54021 | black-footed albatross | | common name | +54021 | Diomedea nigripes Audubon, 1839 | | authority | +54021 | Diomedea nigripes | | synonym | +54021 | Hawaiian black-footed albatross | | genbank common name | +54021 | Phoebastria nigripes | | scientific name | +54054 | brown skua | | genbank common name | +54054 | Catharacta antarctica lonnbergi Mathews, 1912 | | authority | +54054 | Catharacta antarctica lonnbergi | | synonym | +54054 | Catharacta lonnbergi | | synonym | +54054 | Catharacta skua lonnbergi | | synonym | +54054 | Lonnberg's skua | | common name | +54054 | Stercorarius antarctica lonnbergi | | synonym | +54054 | Stercorarius antarcticus lonnbergi | | synonym | +54054 | Stercorarius lonnbergi (Mathews, 1912) | | authority | +54054 | Stercorarius lonnbergi | | scientific name | +54057 | Catharacta | | synonym | +54057 | Stercorarius Brisson, 1760 | | authority | +54057 | Stercorarius | | scientific name | +54132 | Pygathrix | | scientific name | +54133 | dove langur | | common name | +54133 | Pygathrix nemaeus | | scientific name | +54133 | Red shanked douc langur | | genbank common name | +54133 | Simia nemaeus Linnaeus, 1771 | | authority | +54133 | Simia nemaeus | | synonym | +54136 | brow-ridged langurs | | common name | +54136 | leaf monkeys | | genbank common name | +54136 | Trachypithecus Reichenbach, 1862 | | authority | +54136 | Trachypithecus | | scientific name | +54181 | dusky leaf monkey | | common name | +54181 | Dusky leaf-monkey | | genbank common name | +54181 | Presbytis obscurus | | synonym | +54181 | spectacled langur | | common name | +54181 | Trachypithecus obscurus (Reid, 1837) | | authority | +54181 | Trachypithecus obscurus | | scientific name | +54319 | Etheostoma caeruleum | | scientific name | +54319 | Etheostoma caeruleum Storer, 1845 | | authority | +54319 | Etheostoma cf. caeruleum TJN-2011 | | synonym | +54319 | Ozark rainbow darter | | common name | +54319 | rainbow darter | | genbank common name | +54328 | Alvordius evides | | synonym | +54328 | gilt darter | | genbank common name | +54328 | Percina cf. evides TJN-2011 | | synonym | +54328 | Percina evides (Jordan & Copeland, 1877) | | authority | +54328 | Percina evides | | scientific name | +54328 | western gilt darter | | common name | +54342 | arrow darter | | common name | +54342 | Cumberland arrow darter | | genbank common name | +54342 | Etheostoma sagitta (Jordan & Swain, 1883) | | authority | +54342 | Etheostoma sagitta | | scientific name | +54342 | Poecilichthys sagitta Jordan & Swain, 1883 | | authority | +54342 | Poecilichthys sagitta | | synonym | +54439 | Capnoides | | scientific name | +54483 | Porphyrio | | scientific name | +54484 | North Island takahe | | genbank common name | +54484 | Notornis mantelli Owen, 1848 | | authority | +54484 | Notornis mantelli | | synonym | +54484 | Porphyrio mantelli (Owen, 1848) | | authority | +54484 | Porphyrio mantelli | | scientific name | +54484 | takahe | takahe | common name | +54497 | Caballus modestus | | synonym | +54497 | Cabalus modestus (Hutton, 1872) | | authority | +54497 | Cabalus modestus | | scientific name | +54497 | Chatham Island rail | | genbank common name | +54497 | Chatham rail | | common name | +54497 | Gallirallus modestus (Hutton, 1872) | | authority | +54497 | Gallirallus modestus | | synonym | +54497 | Rallus modestus Hutton, 1872 | | authority | +54497 | Rallus modestus | | synonym | +54500 | Chatham Islands banded rail | | common name | +54500 | Dieffenbach's rail | | genbank common name | +54500 | Gallirallus dieffenbachii (Gray,GR, 1843) | | authority | +54500 | Gallirallus dieffenbachii | | scientific name | +54500 | Gallirallus philippensis dieffenbachii | | synonym | +54500 | Rallus philippiensis dieffenbachii | | synonym | +54555 | Alburnus | | scientific name | +54555 | Chalcalburnus | | synonym | +54563 | Black Sea roach | | common name | +54563 | common roach | | genbank common name | +54563 | kutum | kutum | common name | +54563 | Leuciscus frisii | | synonym | +54563 | Rutilus frisii (Nordmann, 1840) | | authority | +54563 | Rutilus frisii | | scientific name | +54578 | Cyanocorax | | scientific name | +54769 | Acanthis flammea (Linnaeus, 1758) | | authority | +54769 | Acanthis flammea | | scientific name | +54769 | Carduelis flammea | | synonym | +54769 | common redpoll | | genbank common name | +54769 | Fringilla flammea Linnaeus, 1758 | | authority | +54769 | Fringilla flammea | | synonym | +54769 | redpoll | | common name | +54971 | Arenaria interpres | | scientific name | +54971 | ruddy turnstone | | genbank common name | +54971 | Tringa interpres Linnaeus, 1758 | | authority | +54971 | Tringa interpres | | synonym | +54971 | turnstone | turnstone | common name | +54972 | Arenaria | Arenaria | scientific name | +54972 | turnstones | | genbank common name | +55055 | Agrius convolvuli (Linnaeus, 1758) | | authority | +55055 | Agrius convolvuli | | scientific name | +55055 | convolvulus hawk-moth | | common name | +55055 | Herse convolvuli | | synonym | +55055 | morning glory sphinx moth | | genbank common name | +55055 | Sphinx convolvuli Linnaeus, 1758 | | authority | +55055 | Sphinx convolvuli | | synonym | +55055 | sweetpotato hornworm | sweetpotato hornworm | common name | +55107 | Phalloceros | | scientific name | +55108 | dusky millions fish | | genbank common name | +55108 | Girardinus caudimaculatus Hensel, 1868 | | authority | +55108 | Girardinus caudimaculatus | | synonym | +55108 | one-spot livebearer | | common name | +55108 | Phalloceros caudimaculatus (Hensel, 1868) | | authority | +55108 | Phalloceros caudimaculatus | | scientific name | +55108 | speckled mosquitofish | | common name | +55108 | spottail mosquitofish | | common name | +55112 | Notacanthus | | scientific name | +55137 | Myliobatis Cuvier, 1816 | | authority | +55137 | Myliobatis | | scientific name | +55141 | Squatina | | scientific name | +55533 | Apalone | | scientific name | +55534 | Apalone spinifera (Le Sueur, 1827) | | authority | +55534 | Apalone spinifera | | scientific name | +55534 | spiny softshell | | common name | +55534 | spiny softshell turtle | | genbank common name | +55534 | Trionyx spiniferus Le Sueur, 1827 | | authority | +55534 | Trionyx spiniferus | | synonym | +55577 | Dioscorea cayenensis subsp. rotundata (Poir.) J.Miege, 1968 | | synonym | +55577 | Dioscorea cayenensis subsp. rotundata | | scientific name | +55577 | Dioscorea cayennensis subsp. rotundata | | equivalent name | +55577 | Dioscorea rotundata Poir., 1813 | | authority | +55577 | Dioscorea rotundata | | synonym | +55577 | eboe yam | | common name | +55577 | Guinea yam | | genbank common name | +55577 | white guinea yam | | common name | +55577 | white yam | white yam | common name | +55977 | Tomicus | | scientific name | +56217 | Bolomys lactens | | synonym | +56217 | Necromys lactens | | scientific name | +56217 | Necromys lactens (Thomas, 1918) | | authority | +56217 | Necromys sp. OMNH 34512 | | includes | +56217 | rufous-bellied bolo mouse | | common name | +56217 | White-chinned akodont | | genbank common name | +56312 | Tyto | | scientific name | +56313 | common barn owl | | genbank common name | +56313 | Schleiereule | | common name | +56313 | Strix alba Scopoli, 1769 | | authority | +56313 | Strix alba | | synonym | +56313 | Tyto alba | | scientific name | +56313 | Tyto alba (Scopoli, 1769) | | authority | +56318 | Habromys | | scientific name | +56362 | Acronicta | | scientific name | +56362 | Agriopodes | | synonym | +56364 | Agrotis ipsilon (Hufnagel, 1766) | | authority | +56364 | Agrotis ipsilon | | scientific name | +56364 | black cutworm moth | | genbank common name | +56364 | dark sword grass moth | | common name | +56364 | greasy cutworm moth | | common name | +56364 | Phalaena ipsilon Hufnagel, 1766 | | authority | +56364 | Phalaena ipsilon | | synonym | +56375 | Catocala | | scientific name | +56375 | Mormonia | | synonym | +56435 | Abrornis proregulus (Pallas, 1811) | | authority | +56435 | Abrornis proregulus | | synonym | +56435 | Motacilla proregulus Pallas, 1811 | | authority | +56435 | Motacilla proregulus | | synonym | +56435 | Pallas's leaf-warbler | | genbank common name | +56435 | Pallas's Lwaf-Warbler | | common name | +56435 | Phylloscopus proregulus (Pallas, 1811) | | authority | +56435 | Phylloscopus proregulus proregulus | | synonym | +56435 | Phylloscopus proregulus | | scientific name | +56435 | Reguloides proregulus proregulus | | synonym | +56435 | Reguloides proregulus | | synonym | +56612 | Poeciliopsis | | scientific name | +56721 | Pseudaphritis | | scientific name | +56722 | Aphritis urvillii | | synonym | +56722 | congolli | | genbank common name | +56722 | Pseudaphritis urvillii | | scientific name | +56722 | Pseudaphritis urvillii (Valenciennes, 1832) | | authority | +56722 | tupong | | common name | +57176 | Aotus vociferans | | scientific name | +57176 | noisy night monkey | | genbank common name | +57176 | Nyctipithecus vociferans Spix, 1823 | | authority | +57176 | Nyctipithecus vociferans | | synonym | +57176 | Spix's night monkey | | common name | +57374 | gold-and-black lion tamarin | | common name | +57374 | golden-headed lion tamarin | | genbank common name | +57374 | Leontopithecus chrysomelas | | scientific name | +57374 | Leontopithecus rosalia chrysomelas | | synonym | +57374 | Midas chrysomelas Kuhl, 1820 | | authority | +57374 | Midas chrysomelas | | synonym | +57375 | buffy-eared marmoset | | common name | +57375 | Callithrix aurita | | scientific name | +57375 | Callithrix jacchus aurita | | synonym | +57375 | Simia aurita Geoffroy, 1812 | | authority | +57375 | Simia aurita | | synonym | +57375 | white-eared marmoset | | genbank common name | +57378 | black-pencilled marmoset | | genbank common name | +57378 | black tufted-ear marmoset | | common name | +57378 | Callithrix jacchus penicillata | | synonym | +57378 | Callithrix penicillata | | scientific name | +57378 | Simia penicillata Geoffroy, 1812 | | authority | +57378 | Simia penicillata | | synonym | +57542 | Batrachoseps | | scientific name | +57542 | slender salamanders | | genbank common name | +57544 | Batrachoseps attenuatus pacificus | | synonym | +57544 | Batrachoseps pacificus (Cope, 1865) | | authority | +57544 | Batrachoseps pacificus | | scientific name | +57544 | Channel Islands slender salamander | | genbank common name | +57544 | Hemidactylium pacificum Cope, 1865 | | authority | +57544 | Hemidactylium pacificum | | synonym | +57544 | Pacific slender salamander | | common name | +57544 | Pacific worm-salamander | | common name | +57549 | Ensatina | | scientific name | +57550 | common Ensatina | | genbank common name | +57550 | Ensatina eschscholtzii Gray, 1850 | | authority | +57550 | Ensatina eschscholtzii | | scientific name | +57550 | Monterey salamander | | common name | +57550 | Plethodon eschscholtzii | | synonym | +57550 | red salamander | red salamander | common name | +57550 | redwood salamander | | common name | +57551 | Ensatina eschscholtzii croceater | | scientific name | +57551 | Plethodon croceater Cope, 1868 | | authority | +57551 | Plethodon croceater | | synonym | +57551 | yellow-blotched Ensatina | | genbank common name | +57551 | yellow-blotched salamander | | common name | +57552 | Ensatina eschscholtzii oregonensis | | scientific name | +57552 | Heredia oregonensis Girard, 1856 | | authority | +57552 | Heredia oregonensis | | synonym | +57552 | Northern Pacific red salamander | | common name | +57552 | Oregon Ensatina | | genbank common name | +57552 | Oregon salamander | | common name | +57552 | Oregon triton | | common name | +57552 | Plethodon oregonensis | | synonym | +57554 | Hydromantes flavus Stefani, 1969 | | authority | +57554 | Hydromantes flavus | | synonym | +57554 | Monte Albo cave salamander | | genbank common name | +57554 | Speleomantes flavus | | scientific name | +57554 | Speleomantes flavus (Stefani, 1969) | | authority | +57554 | Stefani's salamander | | common name | +57554 | yellowish cave salamander | | common name | +57555 | Apennines salamander | | common name | +57555 | Hydromantes italicus Dunn, 1923 | | authority | +57555 | Hydromantes italicus | | synonym | +57555 | Hydromantes (Speleomantes) italicus | | synonym | +57555 | Italian cave salamander | | genbank common name | +57555 | Speleomantes italicus (Dunn, 1923) | | authority | +57555 | Speleomantes italicus | | scientific name | +57569 | fire salamanders | | genbank common name | +57569 | Salamandra | | scientific name | +57571 | European fire salamander | | common name | +57571 | European salamander | | common name | +57571 | fire salamander | | genbank common name | +57571 | Lacerta salamandra Linnaeus, 1758 | | authority | +57571 | Lacerta salamandra | | synonym | +57571 | Salamandra salamandra | | scientific name | +57571 | spotted salamander | spotted salamander | common name | +57791 | Ecsenius | | scientific name | +57795 | Entomacrodus | | scientific name | +57804 | Heteroclinus | | scientific name | +57805 | Heteroclinus heptaeolus (Ogilby, 1885) | | authority | +57805 | Heteroclinus heptaeolus | | scientific name | +57805 | Ogilby's weedfish | | common name | +57805 | Petraites heptaeolus Ogilby, 1885 | | authority | +57805 | Petraites heptaeolus | | synonym | +57805 | seven-bar weedfish | | genbank common name | +57834 | Omobranchus | | scientific name | +57846 | Petroscirtes | | scientific name | +57850 | Rhabdoblennius | | scientific name | +57854 | Starksia | | scientific name | +57988 | Odontaspis | | scientific name | +57989 | bumpytail ragged-tooth | | common name | +57989 | Odontaspis ferox (Risso, 1810) | | authority | +57989 | Odontaspis ferox | | scientific name | +57989 | sandtiger shark | | common name | +57989 | smalltooth sand tiger | | genbank common name | +57989 | Squalus ferox | | synonym | +58023 | Tracheophyta | | scientific name | +58023 | Tracheophyta Sinnott ex Cavalier-Smith, 1998 | | authority | +58023 | vascular plants | vascular plants | blast name | +58023 | vascular plants | vascular plants | common name | +58068 | Hipposideros | | scientific name | +58071 | Angolan fruit bat | | common name | +58071 | Angolan soft-furred fruit bat | | genbank common name | +58071 | Cynonycteris angolensis Bocage, 1898 | | authority | +58071 | Cynonycteris angolensis | | synonym | +58071 | Myonycteris angolensis (Bocage, 1898) | | authority | +58071 | Myonycteris angolensis | | scientific name | +58071 | Rousettus angolensis | | synonym | +58186 | Aubria | | scientific name | +58187 | Aubria subsigillata (Dumeril, 1856) | | authority | +58187 | Aubria subsigillata | | scientific name | +58187 | brown ball frog | | genbank common name | +58187 | Rana subsigillata Dumeril, 1856 | | authority | +58187 | Rana subsigillata | | synonym | +58187 | West African brown frog | | common name | +58200 | Mimus | | scientific name | +58208 | Thraupis | | scientific name | +58209 | blue-gray tanager | | genbank common name | +58209 | blue-grey tanager | | common name | +58209 | Tangara episcopus (Linnaeus, 1766) | | synonym | +58209 | Tangara episcopus | | synonym | +58209 | Thraupis episcopus (Linnaeus, 1766) | | authority | +58209 | Thraupis episcopus | | scientific name | +58316 | Blicca | | scientific name | +58317 | Abramis bjoerkna | | synonym | +58317 | Blicca bjoerkna (Linnaeus, 1758) | | authority | +58317 | Blicca bjoerkna | | scientific name | +58317 | Cyprinus bjoerkna Linnaeus, 1758 | | authority | +58317 | Cyprinus bjoerkna | | synonym | +58317 | silver bream | silver bream | common name | +58317 | white bream | | genbank common name | +58318 | Scardinius | | scientific name | +58319 | Cyprinus erythrophthalmus Linnaeus, 1758 | | authority | +58319 | Cyprinus erythrophthalmus | | synonym | +58319 | pearl roach | | common name | +58319 | redeye | | common name | +58319 | rudd | | genbank common name | +58319 | Scardinius erythrophthalmus (Linnaeus, 1758) | | authority | +58319 | Scardinius erythrophthalmus | | scientific name | +58325 | common dace | | genbank common name | +58325 | Cyprinus leuciscus Linnaeus, 1758 | | authority | +58325 | Cyprinus leuciscus | | synonym | +58325 | dace | | common name | +58325 | Eurasian dace | | common name | +58325 | graining | | common name | +58325 | hasel | | common name | +58325 | Leuciscus leuciscus (Linnaeus, 1758) | | authority | +58325 | Leuciscus leuciscus | | scientific name | +58326 | Rhodeus | | scientific name | +58512 | Cornufer vitiensis (Girard, 1853) | | authority | +58512 | Cornufer vitiensis | | scientific name | +58512 | Fiji tree frog | | genbank common name | +58512 | Halophila vitiensis Girard, 1853 | | authority | +58512 | Halophila vitiensis | | synonym | +58512 | Levuka wrinkled ground frog | | common name | +58512 | Platymantis vitiensis (Girard, 1853) | | authority | +58512 | Platymantis vitiensis | | synonym | +58514 | Tomopterna | | scientific name | +58517 | Ceratobatrachus guentheri Boulenger, 1884 | | authority | +58517 | Ceratobatrachus guentheri | | synonym | +58517 | Cornufer guentheri Boulenger, 1882 | | authority | +58517 | Cornufer guentheri | | scientific name | +58517 | Guenther's wrinkled ground frog | | common name | +58517 | Gunther's triangle frog | | genbank common name | +58517 | Gunther's wrinkled ground frog | | common name | +58517 | Platymantis guentheri (Boulenger, 1882) | | authority | +58517 | Platymantis guentheri | | synonym | +58518 | Euphlyctis | | scientific name | +58518 | Rana cynophylictis | | synonym | +58519 | Bufo cyanophlyctis | | synonym | +58519 | Bufo cyanophlyetis | | synonym | +58519 | common skittering frog | | common name | +58519 | Dicroglossus cyanophlyctis | | synonym | +58519 | Dicroglossus cyanophlyetis | | synonym | +58519 | Euphlyctis cyanophlyctis (Schneider, 1799) | | authority | +58519 | Euphlyctis cyanophlyctis | | scientific name | +58519 | Euphlyctis cyanophyletis | | synonym | +58519 | Rana cyanophlyctis | | synonym | +58519 | Rana cyanophlyetis | | synonym | +58519 | skipper frog | | common name | +58519 | skipping frog | | common name | +58519 | skittering frog | | genbank common name | +58519 | water skipping frog | | common name | +58674 | Ensatina eschscholtzii klauberi | | scientific name | +58674 | Ensatina klauberi Dunn, 1929 | | authority | +58674 | Ensatina klauberi | | synonym | +58674 | large-blotched Ensatina | | genbank common name | +58674 | large-blotched salamander | | common name | +58676 | Ensatina eschscholtzii platensis | | scientific name | +58676 | Ensatina platensis | | synonym | +58676 | Plethodon platensis | | synonym | +58676 | Sierra Nevada Ensatina | | genbank common name | +58676 | Sierra Nevada salamander | | common name | +58676 | Urotropis platensis Jimenez de la Espada, 1875 | | authority | +58676 | Urotropis platensis | | synonym | +58766 | Mastigoproctus | | scientific name | +58767 | giant vinegaroon | | common name | +58767 | giant whipscorpion | | genbank common name | +58767 | Mastigoproctus giganteus (Lucas, 1835) | | authority | +58767 | Mastigoproctus giganteus | | scientific name | +58767 | Thelyphonus giganteus Lucas, 1835 | | authority | +58767 | Thelyphonus giganteus | | synonym | +58823 | Plodia | | scientific name | +58824 | Indian meal moth | | common name | +58824 | Indianmeal moth | | genbank common name | +58824 | Plodia interpunctella (Hubner, 1813) | | authority | +58824 | Plodia interpunctella | | scientific name | +58824 | Tinea interpunctella Hubner, 1813 | | authority | +58824 | Tinea interpunctella | | synonym | +59529 | Antilope subgutturosa Guldenstadt, 1780 | | authority | +59529 | Antilope subgutturosa | | synonym | +59529 | black-tailed gazelle | | common name | +59529 | Gazella subgutturosa (Guldenstaedt, 1780) | | authority | +59529 | Gazella subgutturosa | | scientific name | +59529 | goitered gazelle | | genbank common name | +59537 | Pantholops | | scientific name | +59538 | chiru | | genbank common name | +59538 | Pantholops hodgsonii (Abel, 1826) | | authority | +59538 | Pantholops hodgsonii | | scientific name | +59538 | Pantholops hodgsoni | | synonym | +59538 | Tibetan antelope | | common name | +59557 | Lycoperdon aestivum | | synonym | +59557 | Lycoperdon aestivum Wulfen, 1787 | | authority | +59557 | red-grained black truffle | | common name | +59557 | summer truffle | | genbank common name | +59557 | Tuber aestivum | | scientific name | +59660 | Scarus | | scientific name | +59661 | Callyodon iseri Bloch, 1789 | | authority | +59661 | Callyodon iseri | | synonym | +59661 | grey chub | | common name | +59661 | Scarus iseri (Bloch, 1789) | | authority | +59661 | Scarus iseri | | scientific name | +59661 | Scarus iserti | | synonym | +59661 | striped parrotfish | striped parrotfish | genbank common name | +59945 | Rexea | | scientific name | +59946 | common gemfish | | common name | +59946 | eastern gemfish | | common name | +59946 | Gempylus solandri Cuvier, 1832 | | authority | +59946 | Gempylus solandri | | synonym | +59946 | hake | | common name | +59946 | king barracouta | | common name | +59946 | Rexea solandri (Cuvier, 1832) | | authority | +59946 | Rexea solandri | | scientific name | +59946 | silver gemfish | silver gemfish | genbank common name | +59946 | silver kingfish | | common name | +59946 | southern kingfish | southern kingfish | common name | +60273 | Aphyosemion cameronense (Boulenger, 1903) | | authority | +60273 | Aphyosemion cameronense | | scientific name | +60273 | Cameroon killi | | common name | +60273 | Cameroon killifish | | genbank common name | +60273 | Haplochilus cameronensis | | synonym | +60273 | Mesoaphyosemion cameronense (Boulenger, 1903) | | authority | +60273 | Mesoaphyosemion cameronense | | synonym | +60281 | Aphyosemion elegans (Boulenger, 1899) | | authority | +60281 | Aphyosemion elegans | | scientific name | +60281 | elegant killi | | common name | +60281 | elegant killifish | | genbank common name | +60281 | Haplochilus elegans | | synonym | +60283 | Aphyosemion exiguum (Boulenger, 1911) | | authority | +60283 | Aphyosemion exiguum | | scientific name | +60283 | Haplochilus exiguus Boulenger, 1911 | | authority | +60283 | Haplochilus exiguus | | synonym | +60283 | jewel killi | | common name | +60283 | jewel killifish | | genbank common name | +60402 | Aphyosemion guineense Daget, 1954 | | authority | +60402 | Aphyosemion guineense | | synonym | +60402 | Archiaphyosemion guineense | | scientific name | +60402 | Guinean killi | | common name | +60402 | Guinean killifish | | genbank common name | +60402 | Roloffia guineense | | synonym | +60461 | Agapornis | | scientific name | +60468 | Agapornis roseicollis | | scientific name | +60468 | Agapornis roseicollis (Vieillot, 1818) | | authority | +60468 | peach-faced lovebird | | genbank common name | +60468 | Psittacus roseicollis | | synonym | +60468 | Psittacus roseicollis Vieillot, 1818 | | authority | +60468 | rosy-cheeked lovebird | | common name | +60710 | Cercopithecus aethiops pygerythrus | | synonym | +60710 | Cercopithecus pygerythrus | | synonym | +60710 | Chlorocebus aethiops pygerythrus | | synonym | +60710 | Chlorocebus pygerythrus Cuvier, 1821 | | authority | +60710 | Chlorocebus pygerythrus (F. Cuvier, 1821) | | authority | +60710 | Chlorocebus pygerythrus | | scientific name | +60710 | vervet | | genbank common name | +60710 | vervet monkey | | common name | +60886 | Rhabdocalyptus | | scientific name | +61153 | Arvicanthis | | scientific name | +61156 | African grass rat | | common name | +61156 | Arvicanthis niloticus (Geoffrey, 1803) | | authority | +61156 | Arvicanthis niloticus | | scientific name | +61156 | Mus niloticus Geoffroy, 1803 | | authority | +61156 | Mus niloticus | | synonym | +61156 | Nile rat | | genbank common name | +61195 | Australian giant treefrog | | genbank common name | +61195 | giant treefrog | | common name | +61195 | Hyla infrafrenata Guenther, 1867 | | authority | +61195 | Hyla infrafrenata | | synonym | +61195 | Litoria infrafrenata (Gunther, 1867) | | authority | +61195 | Litoria infrafrenata | | synonym | +61195 | Nyctimystes infrafrenatus (Gunther, 1867) | | authority | +61195 | Nyctimystes infrafrenatus | | scientific name | +61195 | white-lipped treefrog | | common name | +61320 | Hydrocynus | | scientific name | +61508 | Persicaria Mill., 1754 | | authority | +61508 | Persicaria | | scientific name | +61614 | Discoglossus galganoi jeanneae | | synonym | +61614 | Discoglossus jeanneae Busack, 1986 | | authority | +61614 | Discoglossus jeanneae | | scientific name | +61614 | East Iberian painted frog | | common name | +61614 | Spanish painted frog | | genbank common name | +61615 | Pelobates | | scientific name | +61616 | Cultripes cultripes | | synonym | +61616 | Iberian spadefoot toad | | common name | +61616 | Pelobates cultripes (Cuvier, 1829) | | authority | +61616 | Pelobates cultripes | | scientific name | +61616 | Rana cultripes Cuvier, 1829 | | authority | +61616 | Rana cultripes | | synonym | +61616 | Spanish spadefoot toad | | common name | +61616 | western spadefoot | | common name | +61616 | western spadefoot toad | western spadefoot toad | genbank common name | +61620 | common jollytail | | common name | +61620 | cowfish | | genbank common name | +61620 | Galaxias maculatus (Jenyns, 1842) | | authority | +61620 | Galaxias maculatus | | scientific name | +61620 | inanga | | common name | +61620 | Mesites maculatus Jenyns, 1842 | | authority | +61620 | Mesites maculatus | | synonym | +61621 | black snub-nosed monkey | | genbank common name | +61621 | Pygathrix bieti | | synonym | +61621 | Rhinopithecus bieti Milne-Edwards, 1897 | | authority | +61621 | Rhinopithecus bieti | | scientific name | +61621 | Yunnan snub-nosed monkey | | common name | +61808 | Pomacentrus | | scientific name | +61817 | Archocentrus spilurum | | synonym | +61817 | Archocentrus spilurus | | synonym | +61817 | blue-eye cichlid | | genbank common name | +61817 | Cichlasoma spilorum | | synonym | +61817 | Cryptoheros spilurus (Guenther, 1862) | | authority | +61817 | Cryptoheros spilurus | | scientific name | +61817 | Cutter's cichlid | | common name | +61817 | Heros spilurus Guenther, 1862 | | authority | +61817 | Heros spilurus Gunther, 1862 | | authority | +61817 | Heros spilurus | | synonym | +61818 | Amphilophus | | scientific name | +61818 | Astatheros | | synonym | +61819 | Amphilophus citrinellus (Guenther, 1864) | | authority | +61819 | Amphilophus citrinellus | | scientific name | +61819 | Archocentrus citrinellum | | synonym | +61819 | Cichlasoma citrinellum | | synonym | +61819 | Herichthys citrinellus | | synonym | +61819 | Heros citrinellus Guenther, 1864 | | authority | +61819 | Heros citrinellus Gunther, 1864 | | authority | +61819 | Heros citrinellus | | synonym | +61819 | Midas cichlid | | genbank common name | +61819 | red devil cichlid | | common name | +61819 | red devil | red devil | common name | +61835 | Terranatos | | scientific name | +61836 | Austrofundulus dolichopterus | | synonym | +61836 | Austrofundulus dolichopterus Weitzman & Wourms, 1967 | | authority | +61836 | saberfin killie | | genbank common name | +61836 | saberfin killifish | | common name | +61836 | Terranatos dolichopterus | | scientific name | +61836 | Terranatos dolichopterus (Weitzman & Wourms, 1967) | | authority | +61851 | Bunopithecus hoolock (Harlan, 1834) | | authority | +61851 | Bunopithecus hoolock hoolock | | synonym | +61851 | Bunopithecus hoolock | | synonym | +61851 | hoolock gibbon | | genbank common name | +61851 | Hoolock hoolock hoolock | | synonym | +61851 | Hoolock hoolock | | scientific name | +61851 | Hylobates hoolock | | synonym | +61851 | Simia hoolock | | synonym | +61851 | Western hoolock gibbon | | common name | +61852 | buff-cheeked gibbon | | common name | +61852 | Hylobates concolor gabriellae | | synonym | +61852 | Hylobates gabriellae | | synonym | +61852 | Hylobates gabriellae Thomas, 1909 | | authority | +61852 | Nomascus gabriellae | | scientific name | +61852 | Red-cheeked gibbon | | genbank common name | +61853 | Hylobates concolor leucogenys | | synonym | +61853 | Hylobates concolor leucogyneus | | synonym | +61853 | Hylobates leucogenys leucogenys | | synonym | +61853 | Hylobates leucogenys Ogilby, 1840 | | authority | +61853 | Hylobates leucogenys | | synonym | +61853 | Nomascus leucogenys leucogenys | | synonym | +61853 | Nomascus leucogenys | | scientific name | +61853 | Nomascus leukogenys | | synonym | +61853 | northern white-cheeked gibbon | | genbank common name | +61853 | White-cheeked Gibbon | | common name | +62066 | Brachymystax | | scientific name | +62067 | Brachymystax lenok (Pallas, 1773) | | authority | +62067 | Brachymystax lenok | | scientific name | +62067 | lenok | | common name | +62067 | lenok trout | | genbank common name | +62067 | Manchurian trout | | common name | +62067 | Salmo lenok Pallas, 1773 | | authority | +62067 | Salmo lenok | | synonym | +62211 | Iridosornis | | scientific name | +62224 | Neothraupis | | scientific name | +62226 | Neothraupis fasciata (Lichtenstein, 1823) | | authority | +62226 | Neothraupis fasciata | | scientific name | +62226 | Tanagra fasciata Lichtenstein, 1823 | | authority | +62226 | Tanagra fasciata | | synonym | +62226 | white banded tanager | | common name | +62226 | white-banded tanager | | genbank common name | +62258 | Vermivora | | scientific name | +62330 | Fagopyrum tataricum Gaertn., 1790 | | authority | +62330 | Fagopyrum tataricum | | scientific name | +62330 | Kangra buckwheat | | common name | +62330 | Polygonum tataricum L. | | authority | +62330 | Polygonum tataricum | | synonym | +62330 | Tartarian buckwheat | | genbank common name | +62964 | Narke | | scientific name | +63058 | Chinese elm | | genbank common name | +63058 | lacebark | | common name | +63058 | leatherleaf elm | | common name | +63058 | Ulmus parvifolia Jacq., 1798 | | authority | +63058 | Ulmus parvifolia | | scientific name | +63058 | Ulmus sieboldii | | synonym | +63176 | Parachromis | | scientific name | +63221 | Homo neanderthalensis | | synonym | +63221 | Homo sapiens neanderthalensis King, 1864 | | authority | +63221 | Homo sapiens neanderthalensis | | scientific name | +63221 | Neandertal | | genbank common name | +63221 | Neandertal man | | common name | +63221 | Neanderthal | | common name | +63221 | Neanderthal man | | common name | +63461 | Nerium | | scientific name | +63479 | common oleander | | genbank common name | +63479 | Nerium indicum Mill. | | authority | +63479 | Nerium indicum | | synonym | +63479 | Nerium odorum Ait. | | authority | +63479 | Nerium odorum | | synonym | +63479 | Nerium oleander L., 1753 | | authority | +63479 | Nerium oleander | | scientific name | +63479 | rose-bay | | common name | +63614 | Angolan mole-rat | | genbank common name | +63614 | Bocage's mole rat | | common name | +63614 | Cryptomys bocagei (de Winton, 1897) | | authority | +63614 | Cryptomys bocagei | | synonym | +63614 | Fukomys bocagei | | scientific name | +63787 | Bryophyllum fedtschenkoi (Raym.-Hamet & H.Perrier) Lauz.-March., 1974 | | authority | +63787 | Bryophyllum fedtschenkoi | | synonym | +63787 | Kalanchoe fedtschenkoi Raym.-Hamet & H.Perrier, 1915 | | authority | +63787 | Kalanchoe fedtschenkoi | | scientific name | +63787 | lavender-scallops | | common name | +63787 | South American air plant | | genbank common name | +64152 | banded snakehead | | common name | +64152 | Channa stratus | | synonym | +64152 | Channa striata (Bloch, 1793) | | authority | +64152 | Channa striata | | scientific name | +64152 | chevron snakehead | | common name | +64152 | Ophicephalus striatus Bloch, 1793 | | authority | +64152 | Ophicephalus striatus | | synonym | +64152 | snakehead murrel | | genbank common name | +64152 | striped snakehead | | common name | +64176 | Common wall lizard | | genbank common name | +64176 | Lacerrta muralis Dumeril & Bibron, 1893 | | authority | +64176 | Lacerrta muralis | | synonym | +64176 | Mauereidechse | | common name | +64176 | Podarcis muralis (Dumeril & Bibron, 1839) | | authority | +64176 | Podarcis muralis | | scientific name | +64176 | Seps muralis Laurenti, 1768 | | authority | +64176 | Seps muralis | | synonym | +64415 | Balkan wall lizard | | common name | +64415 | Crimean wall lizard | | genbank common name | +64415 | Lacerta taurica Pallas, 1814 | | authority | +64415 | Lacerta taurica | | synonym | +64415 | Podarcis tauricus | | scientific name | +64459 | Artogeia rapae | | synonym | +64459 | cabbage white | | genbank common name | +64459 | European cabbage white | | common name | +64459 | Papilio rapae Linnaeus, 1758 | | authority | +64459 | Papilio rapae | | synonym | +64459 | Pieris rapae (Linnaeus, 1758) | | authority | +64459 | Pieris rapae | | scientific name | +64459 | small cabbage white | | common name | +64459 | small white | | common name | +64799 | Chlorodrepanis virens (Gmelin, 1851) | | authority | +64799 | Chlorodrepanis virens | | scientific name | +64799 | common amakihi | | common name | +64799 | Hawaii amakihi | | genbank common name | +64799 | Hemignathus virens (Gmelin, 1851) | | synonym | +64799 | Hemignathus virens (Gmelin, JF, 1788) | | authority | +64799 | Hemignathus virens | | synonym | +64884 | citronelle | | common name | +64884 | Citrus jambhiri Lush. | | authority | +64884 | Citrus jambhiri | | scientific name | +64884 | Citrus x jambhiri | | synonym | +64884 | jambhiri-orange | | common name | +64884 | rough lemon | | genbank common name | +65476 | European green lizard | | common name | +65476 | green lizard | | genbank common name | +65476 | Lacerta viridis (Laurenti, 1768) | | authority | +65476 | Lacerta viridis | | scientific name | +65476 | Seps viridis Laurenti, 1768 | | authority | +65476 | Seps viridis | | synonym | +65620 | Bettongia Gray, 1837 | | authority | +65620 | Bettongia | | scientific name | +65620 | bettongs | | common name | +65621 | Bettongia leseuri | | synonym | +65621 | Bettongia lesueur | | scientific name | +65621 | boodie | | genbank common name | +65621 | burrowing bettong | | common name | +65621 | Hypsiprymnus lesueur Quoy & Gaimard, 1824 | | authority | +65621 | Hypsiprymnus lesueur | | synonym | +65692 | Charybdis | Charybdis | scientific name | +65771 | Cuban lily | | common name | +65771 | hyacinth-of-Peru | | common name | +65771 | Oncostema peruviana (L.) Speta | | authority | +65771 | Oncostema peruviana | | synonym | +65771 | Peruvian jacinth | | genbank common name | +65771 | Scilla peruviana L., 1753 | | authority | +65771 | Scilla peruviana | | scientific name | +66062 | Dollman's snub-nosed monkey | | common name | +66062 | Pygathrix avunculus | | synonym | +66062 | Rhinopithecus avunculus (Dollman, 1912) | | authority | +66062 | Rhinopithecus avunculus Dollman, 1912 | | authority | +66062 | Rhinopithecus avunculus | | scientific name | +66062 | Tonkin snub-nosed monkey | | genbank common name | +66063 | hooded leaf monkey | | common name | +66063 | Nilgiri langur | | genbank common name | +66063 | Presbytis johnii | | synonym | +66063 | Semnopithecus johnii | | synonym | +66063 | Trachypithecus johnii (J. Fischer, 1829) | | authority | +66063 | Trachypithecus johnii | | scientific name | +66169 | Cephalotaxus fortunei Hook., 1850 | | authority | +66169 | Cephalotaxus fortunei | | scientific name | +66169 | Cephalotaxus fortunii | | synonym | +66169 | Chinese plum yew | | genbank common name | +66169 | Fortune's plum yew | | common name | +66627 | Bulnesia arborea (Jacq.) Engl., 1890 | | authority | +66627 | Bulnesia arborea | | synonym | +66627 | Gonopterodendron arboreum (Jacq.) Godoy-Burki, 2018 | | authority | +66627 | Gonopterodendron arboreum | | scientific name | +66627 | Maracaibo lignum-vitae | | genbank common name | +66627 | verawood | | common name | +66627 | Zygophyllum arboreum Jacq., 1760 | | authority | +66627 | Zygophyllum arboreum | | synonym | +68429 | Philautus | | scientific name | +68448 | Polypedates | | scientific name | +68448 | whipping frogs | | genbank common name | +68449 | Hong Kong whipping frog | | genbank common name | +68449 | hour-glass-marked treefrog | | common name | +68449 | Polypedates megacephalus Hallowell, 1861 | | authority | +68449 | Polypedates megacephalus | | scientific name | +68449 | Rhacophorus megacephalus | | synonym | +68449 | spot-legged treefrog | | common name | +68464 | Gila topminnow | | genbank common name | +68464 | Heterandria occidentalis Baird & Girard, 1853 | | authority | +68464 | Heterandria occidentalis | | synonym | +68464 | Poeciliopsis occidentalis (Baird & Girard, 1853) | | authority | +68464 | Poeciliopsis occidentalis occidentalis | | equivalent name | +68464 | Poeciliopsis occidentalis | | scientific name | +68464 | Sonoran topminnow | | common name | +68476 | Acrocephalus agricola (Jerdon, 1845) | | authority | +68476 | Acrocephalus agricola | | scientific name | +68476 | paddy-field warbler | | common name | +68476 | paddyfield warbler | | genbank common name | +68476 | Sylvia agricola Jerdon, 1845 | | authority | +68476 | Sylvia agricola | | synonym | +68512 | Chlorophthalmus | | scientific name | +68721 | Atelocynus | | scientific name | +68722 | Atelocynus microtis | | scientific name | +68722 | Atelocynus microtis (Sclater, 1883) | | authority | +68722 | Canis microtis Sclater, 1883 | | authority | +68722 | Canis microtis | | synonym | +68722 | short-eared dog | | common name | +68722 | small-eared dog | | genbank common name | +68722 | small eared zorro | | common name | +68732 | Canis zerda | | synonym | +68732 | Canis zerda Zimmermann, 1780 | | authority | +68732 | fennec | | common name | +68732 | fennec fox | | genbank common name | +68732 | Fennecus zerda | | synonym | +68732 | Vulpes zerda | | scientific name | +68736 | culpeo fox | | common name | +68736 | Culpeo | | genbank common name | +68736 | Lycalopex culpaeus (Molina, 1782) | | authority | +68736 | Lycalopex culpaeus | | scientific name | +68736 | Pseudalopex culpaeus | | synonym | +68737 | Argentine chilla fox | | common name | +68737 | Dusicyon griseus | | synonym | +68737 | gray zorro | | common name | +68737 | grey zorro | | common name | +68737 | Lycalopex griseus (Gray, 1837) | | authority | +68737 | Lycalopex griseus | | scientific name | +68737 | Pseudalopex griseus | | synonym | +68737 | South American gray fox | | genbank common name | +69077 | Indochinese forest rat | | genbank common name | +69077 | Rattus andamanensis (Blyth, 1860) | | authority | +69077 | Rattus andamanensis | | scientific name | +69077 | Rattus remotus (Robinson & Kloss, 1914) | | authority | +69077 | Rattus remotus | | synonym | +69077 | Rattus sikkimensis Hinton, 1919 | | authority | +69077 | Rattus sikkimensis | | synonym | +69077 | Sikkim rat | | common name | +69080 | Maxomys | | scientific name | +69080 | Maxomys Sody, 1936 | | authority | +69081 | Indomalayan maxomys | | genbank common name | +69081 | Maxomys surifer | | scientific name | +69081 | Mus surifer Miller, 1900 | | authority | +69081 | Mus surifer | | synonym | +69081 | Rattus surifer | | synonym | +69081 | red spiny rat | | common name | +69129 | Atherinomorus | | scientific name | +69129 | Pranesus | | synonym | +69133 | Craterocephalus | | scientific name | +69133 | Quirichthys | | synonym | +69229 | blackbarred limia | | genbank common name | +69229 | humpbacked limia | | common name | +69229 | humpedbacked limia | | common name | +69229 | Limia nigrofasciata Regan, 1913 | | authority | +69229 | Limia nigrofasciata | | scientific name | +69229 | Poecilia nigrofasciata (Regan, 1913) | | authority | +69229 | Poecilia nigrofasciata | | synonym | +69293 | Gasterosteus aculeatus Linnaeus, 1758 | | authority | +69293 | Gasterosteus aculeatus | | scientific name | +69293 | three spined stickleback | | common name | +69293 | three-spined stickleback | three-spined stickleback | genbank common name | +69489 | Bedriaga's frog | | common name | +69489 | Levant pool frog | | common name | +69489 | Levant water frog | | genbank common name | +69489 | Pelophylax bedriagae (Camerano, 1882) | | authority | +69489 | Pelophylax bedriagae | | scientific name | +69489 | Rana bedriagae | | synonym | +69489 | Rana esculenta var. bedriagae Camerano, 1882 | | authority | +69489 | Rana esculenta var. bedriagae | | synonym | +69489 | Rana (Pelophylax) bedriagae | | synonym | +69509 | Saxicola | | scientific name | +69624 | Daculus | | scientific name | +69644 | Polistomimetes | | synonym | +69644 | Tetradacus | | scientific name | +69811 | Cyprinus idus Linnaeus, 1758 | | authority | +69811 | Cyprinus idus | | synonym | +69811 | ide | | genbank common name | +69811 | Idus idus | | synonym | +69811 | Leuciscus idus (Linnaeus, 1758) | | authority | +69811 | Leuciscus idus | | scientific name | +69811 | Leuciscus leuciscus idus | | synonym | +69811 | orfe | | common name | +69811 | silver orfe | | common name | +70019 | Hylarana saharica | | synonym | +70019 | Moroccan green frog | | common name | +70019 | North African green frog | | common name | +70019 | North African water frog | | common name | +70019 | Pelophylax saharicus (Boulenger, 1913) | | authority | +70019 | Pelophylax saharicus | | scientific name | +70019 | Rana esculenta var. saharica Boulenger, 1913 | | authority | +70019 | Rana esculenta var. saharica Boulenger in Hartert, 1913 | | authority | +70019 | Rana esculenta var. saharica | | synonym | +70019 | Rana ridibunda saharica | | synonym | +70019 | Rana saharica Boulenger, 1913 | | authority | +70019 | Rana saharica | | synonym | +70019 | Sahara frog | | genbank common name | +70079 | Stenogobius | | scientific name | +70083 | Awaous | | scientific name | +70548 | fine-scaled yellowfin | | common name | +70548 | Plagiognathops microlepis (Bleeker, 1871) | | authority | +70548 | Plagiognathops microlepis | | scientific name | +70548 | smallscale yellowfin | | genbank common name | +70548 | Xenocypris microlepis Bleeker, 1871 | | authority | +70548 | Xenocypris microlepis | | synonym | +70825 | Black-headed Uacari | | genbank common name | +70825 | black uakari | | common name | +70825 | Cacajao melanocephalus | | scientific name | +70825 | Cacajao ouakary | | synonym | +70825 | Simia melanocephala Humboldt, 1812 | | authority | +70825 | Simia melanocephala | | synonym | +71112 | Lontra Gray, 1843 | | authority | +71112 | Lontra | | scientific name | +71159 | Lampanyctus | | scientific name | +71165 | Gonatodes | | scientific name | +71773 | Algansea bicolor Girard, 1856 | | authority | +71773 | Algansea bicolor | | synonym | +71773 | Gila bicolor | | synonym | +71773 | Siphateles bicolor (Girard, 1856) | | authority | +71773 | Siphateles bicolor | | scientific name | +71773 | tui chub | | genbank common name | +72005 | Cuora | | scientific name | +72011 | Acanthopagrus schlegelii (Bleeker, 1854) | | authority | +72011 | Acanthopagrus schlegelii | | scientific name | +72011 | Acanthopagrus schlegeli | | synonym | +72011 | black porgy | | genbank common name | +72011 | black sea bream | | common name | +72011 | Chrysophrys schlegelii Bleeker, 1854 | | authority | +72011 | Chrysophrys schlegelii | | synonym | +72011 | Mylio macrocephalus | | synonym | +72011 | Sparus macrocephalus | | synonym | +72171 | Ziziphus Mill., 1754 | | authority | +72171 | Ziziphus | | scientific name | +72171 | Zizyphus | | synonym | +72247 | Behr's sulphur butterfly | | common name | +72247 | Colias behrii Edwards, 1866 | | authority | +72247 | Colias behrii | | scientific name | +72247 | Colias behri | | synonym | +72247 | sierra green sulfur butterfly | | common name | +72247 | sierra green sulfur | | genbank common name | +72248 | clouded yellow butterfly | | common name | +72248 | clouded yellow | | genbank common name | +72248 | Colias crocea | | synonym | +72248 | Colias croceus (Fourcroy, 1785) | | authority | +72248 | Colias croceus (Geoffroy, 1785) | | authority | +72248 | Colias croceus | | scientific name | +72248 | Papilio croceus | | synonym | +72255 | Anthocharis ausonides Lucas, 1852 | | authority | +72255 | Anthocharis ausonides | | synonym | +72255 | creamy marblewing | | genbank common name | +72255 | Euchloe ausonides (Lucas, 1852) | | authority | +72255 | Euchloe ausonides | | scientific name | +72255 | Euchloe (Euchloe) ausonides | | synonym | +72255 | large marblewing | | common name | +72881 | Psalidoprocne | | scientific name | +72882 | black sawwing | | common name | +72882 | black saw-wing | | genbank common name | +72882 | Hirundo holomelas Sundevall, 1850 | | authority | +72882 | Hirundo holomelas | | synonym | +72882 | Psalidoprocne holomelas | | scientific name | +72882 | Psalidoprocne homomelas | | synonym | +72882 | Psalidoprocne pristoptera holomelas | | synonym | +73326 | Aegithalos | | scientific name | +73327 | Aegithalos caudatus (Linnaeus, 1758) | | authority | +73327 | Aegithalos caudatus | | scientific name | +73327 | Long-tailed Tit | | common name | +73327 | Northern long-tailed tit | | genbank common name | +73327 | Parus caudatus Linnaeus, 1758 | | authority | +73327 | Parus caudatus | | synonym | +73493 | Balkan frog | Balkan frog | genbank common name | +73493 | Greek marsh frog | Greek marsh frog | common name | +73493 | Hylarana kurtmuelleri | | synonym | +73493 | Pelophylax kurtmuelleri | | scientific name | +73493 | Pelophylax ridibundus kurtmuelleri | | synonym | +73493 | Rana kurtmuelleri | | synonym | +73493 | Rana ridibunda kurtmulleri Gayda, 1940 | | authority | +73493 | Rana ridibunda kurtmulleri | | synonym | +73633 | Calpodes | | scientific name | +73633 | Saliana | | synonym | +73634 | Brazilian skipper butterfly | | genbank common name | +73634 | Calpodes ethlius | | scientific name | +73634 | large canna leafroller | | common name | +73634 | Papilio ethlius Stoll, 1782 | | authority | +73634 | Papilio ethlius | | synonym | +74132 | Symphysodon | Symphysodon | scientific name | +74133 | blue discus | | genbank common name | +74133 | green discus | | common name | +74133 | Symphysodon aequifasciata Pellegrin, 1904 | | authority | +74133 | Symphysodon aequifasciata | | scientific name | +74133 | Symphysodon aequifasciatus | | synonym | +74364 | Elaphe carinata | | scientific name | +74364 | King ratsnake | | common name | +74364 | Phyllophis carinata Guenther, 1864 | | authority | +74364 | Phyllophis carinata Gunther, 1864 | | authority | +74364 | Phyllophis carinata | | synonym | +74364 | Taiwan stink snake | | genbank common name | +74933 | Sacalia | | scientific name | +74940 | Chinook salmon | | genbank common name | +74940 | king salmon | | common name | +74940 | Oncorhynchus tschawytscha | | synonym | +74940 | Oncorhynchus tshawytscha | | scientific name | +74940 | Oncorhynchus tshawytscha (Walbaum, 1792) | | authority | +74940 | Salmo tshawytscha | | synonym | +74940 | Salmo tshawytscha Walbaum, 1792 | | authority | +75023 | Holacanthus | | scientific name | +75031 | Platax | | scientific name | +75032 | Chaetodon orbicularis Forsskal, 1775 | | authority | +75032 | Chaetodon orbicularis Forsskal | | authority | +75032 | Chaetodon orbicularis | | synonym | +75032 | orbicular batfish | | genbank common name | +75032 | orbiculate batfish | | common name | +75032 | Platax orbicularis (Fabricius, 1775) | | authority | +75032 | Platax orbicularis | | scientific name | +75035 | Prionurus | | scientific name | +75041 | Siganus | | scientific name | +75042 | Amphacanthus guttatus var. oramin Bloch & Schneider, 1801 | | authority | +75042 | Amphacanthus guttatus var. oramin | | synonym | +75042 | pearl-spotted spinefoot | | common name | +75042 | pearly spinefoot | | common name | +75042 | Siganus canaliculatus (Park, 1797) | | authority | +75042 | Siganus canaliculatus | | scientific name | +75042 | Siganus oramin (Bloch & Schneider, 1801) | | authority | +75042 | Siganus oramin | | synonym | +75042 | white-spotted rabbitfish | | genbank common name | +75042 | white-spotted spinefoot | | common name | +75045 | Zebrasoma | | scientific name | +75046 | Acanthurus scopas Cuvier, 1829 | | authority | +75046 | Acanthurus scopas | | synonym | +75046 | bluelined sailfin tang | | common name | +75046 | blue-lined tang | | common name | +75046 | brown sailfin tang | | common name | +75046 | brown sailfish surgeonfish | | common name | +75046 | brown sailing tang | | common name | +75046 | brown tang | | common name | +75046 | brushtail tang | | common name | +75046 | two-tone surgeonfish | | common name | +75046 | twotone tang | | genbank common name | +75046 | yellow sailfin tang | yellow sailfin tang | common name | +75046 | Zebrasoma scopas (Cuvier, 1829) | | authority | +75046 | Zebrasoma scopas | | scientific name | +75285 | Arius | | scientific name | +75329 | Cobitis anguillicaudata Cantor, 1842 | | authority | +75329 | Cobitis anguillicaudata | | synonym | +75329 | dojo loach | | common name | +75329 | golden dojo loach | | common name | +75329 | Japanese weatherfish | | common name | +75329 | Misgurnus anguillicaudatus (Cantor, 1842) | | authority | +75329 | Misgurnus anguillicaudatus | | scientific name | +75329 | oriental weatherfish | | genbank common name | +75329 | oriental weatherloach | | common name | +75329 | weather loach | | common name | +75331 | Abbottina | | scientific name | +75332 | Abbottina rivularis (Basilewsky, 1855) | | authority | +75332 | Abbottina rivularis | | scientific name | +75332 | Amur false gudgeon | | common name | +75332 | Chinese false gudgeon | Chinese false gudgeon | genbank common name | +75332 | Gobio rivularis Basilewsky, 1855 | | authority | +75332 | Gobio rivularis | | synonym | +75332 | Pseudogobio rivularis | | synonym | +75333 | Acanthorhodeus | | synonym | +75333 | Acheilognathus | | scientific name | +75333 | Paracheilognathus | | synonym | +75347 | Gymnocypris | | scientific name | +75348 | Gymnocypris przewalskii (Kessler, 1876) | | authority | +75348 | Gymnocypris przewalskii | | scientific name | +75348 | Lake Qinghai scale-less carp | | genbank common name | +75348 | scale-less carp | | common name | +75348 | Schizopygopsis przewalskii Kessler, 1876 | | authority | +75348 | Schizopygopsis przewalskii | | synonym | +75357 | Parabramis | | scientific name | +75358 | Abramis pekinensis Basilewsky, 1855 | | authority | +75358 | Abramis pekinensis | | synonym | +75358 | freshwater bream | | common name | +75358 | Parabramis pekinensis (Basilewsky, 1855) | | authority | +75358 | Parabramis pekinensis | | scientific name | +75358 | white Amur bream | | genbank common name | +75359 | Raiamas | | scientific name | +75361 | Racoma | | synonym | +75361 | Schizothorax | | scientific name | +75562 | Chrysophrys auratus (Forster, 1801) | | authority | +75562 | Chrysophrys auratus | | synonym | +75562 | cockney snapper | | common name | +75562 | eastern snapper | | common name | +75562 | golden snapper | golden snapper | common name | +75562 | Labrus auratus Forster, 1801 | | authority | +75562 | Labrus auratus | | synonym | +75562 | old man red snapper | | common name | +75562 | old man snapper | | common name | +75562 | Pagrosomus auratus | | synonym | +75562 | Pagrus auratus (Foster, 1801) | | authority | +75562 | Pagrus auratus | | scientific name | +75562 | queen red bream | | common name | +75562 | silver seabream | silver seabream | common name | +75562 | squirefish | | genbank common name | +75562 | western bream | | common name | +75832 | American widgeon | | common name | +75832 | American wigeon | | genbank common name | +75832 | Anas americana Gmelin, 1789 | | authority | +75832 | Anas americana | | synonym | +75832 | Mareca americana Gmelin, 1789 | | authority | +75832 | Mareca americana | | scientific name | +75836 | American green-winged teal | | common name | +75836 | Anas carolinensis Gmelin, 1789 | | authority | +75836 | Anas carolinensis | | scientific name | +75836 | Anas circia carolinensis | | synonym | +75836 | Anas crecca carolinensis | | synonym | +75836 | green-winged teal | | genbank common name | +75836 | Nettion carolinense | | synonym | +75838 | Anas clypeata (Linnaeus, 1758) | | synonym | +75838 | Northern shoveler | | genbank common name | +75838 | shoveler | | common name | +75838 | Spatula clypeata (Linnaeus, 1758) | | authority | +75838 | Spatula clypeata | | scientific name | +75839 | Anas crecca Linnaeus, 1758 | | authority | +75839 | Anas crecca | | scientific name | +75839 | Common teal | | genbank common name | +75839 | Eurasian teal | | common name | +75839 | European teal | | common name | +75839 | Nettion crecca | | synonym | +75842 | Anas discors (Linnaeus, 1766) | | synonym | +75842 | Anas discors | | synonym | +75842 | bluewinged teal | | common name | +75842 | blue-winged teal | | genbank common name | +75842 | Spatula discors (Linnaeus, 1766) | | authority | +75842 | Spatula discors | | scientific name | +75864 | Anas poecilorhynca zonorhyncha | | synonym | +75864 | Anas zonorhyncha | | scientific name | +75864 | Anas zonorhyncha Swinhoe, 1866 | | authority | +75864 | Chinese spot-billed duck | | common name | +75864 | Eastern spot-billed duck | | genbank common name | +75988 | Agalychnis dacnicolor (Cope, 1864) | | authority | +75988 | Agalychnis dacnicolor | | scientific name | +75988 | Mexican giant tree frog | | genbank common name | +75988 | Mexican leaf frog | | common name | +75988 | Pachymedusa dacnicolor (Cope, 1864) | | authority | +75988 | Pachymedusa dacnicolor | | synonym | +75988 | Phyllomedusa (Agalychnis) dacnicolor | | synonym | +75988 | Phyllomedusa dacnicolor Cope, 1864 | | authority | +75988 | Phyllomedusa dacnicolor | | synonym | +75989 | Agalychnis | | scientific name | +75989 | leaf frogs | leaf frogs | genbank common name | +75990 | Agalychnis annae | | scientific name | +75990 | blue-sided leaf frog | | genbank common name | +75990 | orange-eyed tree frog | | common name | +75990 | Phyllomedusa annae Duellman, 1963 | | authority | +75990 | Phyllomedusa annae | | synonym | +76212 | duskywings | | genbank common name | +76212 | duskywing skippers | | common name | +76212 | Erynnis Schrank, 1801 Duskywings | | authority | +76212 | Erynnis | | scientific name | +76214 | diadems | | common name | +76214 | eggflies | | genbank common name | +76214 | Hypolimnas | | scientific name | +76215 | common eggfly | | genbank common name | +76215 | great eggfly | | common name | +76215 | Hypolimnas bolina (Linnaeus, 1758) | | authority | +76215 | Hypolimnas bolina | | scientific name | +76215 | Papilio bolina Linnaeus, 1758 | | authority | +76215 | Papilio bolina | | synonym | +76219 | large tortoiseshell | large tortoiseshell | common name | +76219 | Nymphalis xanthomelas | | scientific name | +76219 | Papilio xanthomelas Esper, 1781 | | authority | +76219 | Papilio xanthomelas | | synonym | +76219 | yellow-legged tortoiseshell | | genbank common name | +76227 | Salatura | | scientific name | +76234 | Euploea | | scientific name | +76235 | Euploea mulciber Cramer, 1777 | | authority | +76235 | Euploea mulciber | | scientific name | +76235 | Papilio mulciber Cramer, 1777 | | authority | +76235 | Papilio mulciber | | synonym | +76235 | striped blue crow butterfly | | common name | +76235 | striped blue crow | | genbank common name | +76238 | Libythea | | scientific name | +76239 | European beak | | common name | +76239 | Libythea celtis (Laicharting, 1782) | | authority | +76239 | Libythea celtis | | scientific name | +76239 | nettle-tree butterfly | | genbank common name | +76239 | Papilio celtis Laicharting, 1782 | | authority | +76239 | Papilio celtis | | synonym | +76337 | Thalassoma | | scientific name | +76338 | bluehead | | genbank common name | +76338 | bluehead wrasse | | common name | +76338 | Labrus bifasciatus Bloch, 1791 | | authority | +76338 | Labrus bifasciatus | | synonym | +76338 | Thalassoma bifasciatum (Bloch, 1791) | | authority | +76338 | Thalassoma bifasciatum | | scientific name | +76339 | Sciaenops | | scientific name | +76340 | channel bass | | common name | +76340 | Perca ocellata Linnaeus, 1766 | | authority | +76340 | Perca ocellata | | synonym | +76340 | red drum | | genbank common name | +76340 | redfish | redfish | common name | +76340 | Sciaenops ocellatus (Linnaeus, 1766) | | authority | +76340 | Sciaenops ocellatus | | scientific name | +76340 | spottail bass | | common name | +76717 | Lontra canadensis (Schreber, 1777) | | authority | +76717 | Lontra canadensis | | scientific name | +76717 | Lutra canadensis | | synonym | +76717 | Northern American river otter | | genbank common name | +76717 | river otter | | common name | +77027 | Nuphar luteum subsp. polysepala | | synonym | +77027 | Nuphar luteum subsp. polysepalum | | synonym | +77027 | Nuphar polysepala Engelm., 1866 | | authority | +77027 | Nuphar polysepala | | scientific name | +77027 | Nuphar polysepalum | | synonym | +77027 | spatterdock | | common name | +77027 | yellow pond-lily | | common name | +77027 | yellow pond lily | | genbank common name | +77236 | Myonycteris | | scientific name | +77913 | Galeus | | scientific name | +78194 | Mogurnda | | scientific name | +78195 | Eleotris adspersa Castelnau, 1878 | | authority | +78195 | Eleotris adspersa | | synonym | +78195 | Mogurnda adspersa (Castelnau, 1878) | | authority | +78195 | Mogurnda adspersa | | scientific name | +78195 | purple-spotted gudgeon | | genbank common name | +78195 | southern purple spotted gudgeon | | common name | +78394 | broadgilled hagfish | | genbank common name | +78394 | Eptatretus cirrhatus (Forster, 1801) | | authority | +78394 | Eptatretus cirrhatus | | scientific name | +78394 | New Zealand hagfish | | common name | +78394 | Petromyzon cirrhatus Forster, 1801 | | authority | +78394 | Petromyzon cirrhatus | | synonym | +78615 | Colias hyale (Linnaeus, 1758) | | authority | +78615 | Colias hyale | | scientific name | +78615 | pale clouded yellow butterfly | | common name | +78615 | pale clouded yellow | | genbank common name | +78615 | Papilio hyale | | synonym | +78617 | Colias myrmidone (Esper, 1781) | | authority | +78617 | Colias myrmidone | | scientific name | +78617 | Danube clouded yellow butterfly | | common name | +78617 | Danube clouded yellow | | genbank common name | +78617 | Papilio myrmidone | | synonym | +78620 | Arctic sulfur butterfly | | common name | +78620 | Colias palaeno (Linnaeus, 1761) | | authority | +78620 | Colias palaeno | | scientific name | +78620 | moorland clouded yellow butterfly | | common name | +78620 | moorland clouded yellow | | genbank common name | +78620 | Palaeno sulphur butterfly | | common name | +78620 | Palaeno sulphur | | common name | +78620 | Papilio palaeno Linnaeus, 1761 | | authority | +78620 | Papilio palaeno | | synonym | +78872 | Pseudobagrus | | scientific name | +78876 | Coreobagrus ichikawai | | synonym | +78876 | nekogigi | | common name | +78876 | neko-gigi | | genbank common name | +78876 | Pseudobagrus ichikawai (Okada & Kubota, 1957) | | authority | +78876 | Pseudobagrus ichikawai | | scientific name | +78897 | black-arched tussock moth | | genbank common name | +78897 | Lymantria monacha (Linnaeus, 1758) | | authority | +78897 | Lymantria monacha | | scientific name | +78897 | nun moth | | common name | +78897 | Phalaena monacha Linnaeus, 1758 | | authority | +78897 | Phalaena monacha | | synonym | +79015 | Asiatic grass frog | | common name | +79015 | Chinese brown frog | | genbank common name | +79015 | Far Eastern wood frog | | common name | +79015 | Inkiapo frog | | common name | +79015 | Rana chensinensis David, 1875 | | authority | +79015 | Rana chensinensis | | scientific name | +79015 | Rana temporaria chensinensis | | synonym | +79504 | Crioceris | | scientific name | +79626 | Aptenodytes chrysocome Forster, 1781 | | authority | +79626 | Aptenodytes chrysocome | | synonym | +79626 | Eudyptes chrysocome (J.R.Forster, 1781) | | authority | +79626 | Eudyptes chrysocome | | scientific name | +79626 | Eudyptes crestatus | | synonym | +79626 | rock-hopper penguin | | common name | +79626 | Rockhopper penguin | | genbank common name | +79684 | Hypudaeus ochrogaster | | synonym | +79684 | Hypudaeus ochrogaster Wagner, 1842 | | authority | +79684 | Microtus ochrogaster | | scientific name | +79684 | prairie vole | | genbank common name | +79684 | prairie voles | | common name | +79887 | Coryphopterus | | scientific name | +80345 | brown tegula | | common name | +80345 | brown top snail | | common name | +80345 | brown turban snail | | genbank common name | +80345 | Chlorostoma brunnea (Philippi, 1848) | | authority | +80345 | Chlorostoma brunnea | | synonym | +80345 | Tegula brunnea (Philippi, 1849) | | authority | +80345 | Tegula brunnea | | scientific name | +80345 | Trochus brunneus Philippi, 1849 | | authority | +80345 | Trochus brunneus | | synonym | +80443 | Acanthodactylus | | scientific name | +80771 | Paratilapia | | scientific name | +80772 | Paratilapia polleni Bleeker, 1868 | | authority | +80772 | Paratilapia polleni | | scientific name | +80772 | Paratilapia typus (Bleeker, 1878) | | authority | +80772 | Paratilapia typus | | synonym | +80772 | Pollen's cichlid | | genbank common name | +80772 | Pollen's tilapia | | common name | +80789 | Acheilognathus typus (Bleeker, 1863) | | authority | +80789 | Acheilognathus typus | | scientific name | +80789 | money bitterling | | common name | +80789 | Pseudoperilampus typus Bleeker, 1863 | | authority | +80789 | Pseudoperilampus typus | | synonym | +80789 | zenitanago | | genbank common name | +80835 | Lupa | | synonym | +80835 | Neptunus | | synonym | +80835 | Portunus | | scientific name | +80836 | blue swimmer crab | | common name | +80836 | Cancer cedonulli | | synonym | +80836 | Cancer pelagicus | | synonym | +80836 | Portunus denticulatus | | synonym | +80836 | Portunus pelagicus (Linnaeus, 1758) | | authority | +80836 | Portunus pelagicus | | scientific name | +80836 | sand crab | | genbank common name | +80839 | Asian paddle crab | | common name | +80839 | Charybdis (Charybdis) japonica | | synonym | +80839 | Charybdis japonica (Milne-Edwards, 1861) | | authority | +80839 | Charybdis japonica | | scientific name | +80839 | Goniosoma japonicum | | synonym | +80839 | Japanese shore swimming crab | | common name | +80839 | shore swimming crab | | genbank common name | +80949 | Chaetodon aruanus Linnaeus, 1758 | | authority | +80949 | Chaetodon aruanus | | synonym | +80949 | Dascyllus aruanus (Linnaeus, 1758) | | authority | +80949 | Dascyllus aruanus | | scientific name | +80949 | whitetail dascyllus | | common name | +80949 | white-tailed damselfish | | genbank common name | +80951 | Dascyllus reticulatus (Richardson, 1846) | | authority | +80951 | Dascyllus reticulatus | | scientific name | +80951 | Heliases reticulatus Richardson, 1846 | | authority | +80951 | Heliases reticulatus | | synonym | +80951 | reticulate dascyllus | | common name | +80951 | reticulated damselfish | | genbank common name | +80965 | Acanthochromis | | scientific name | +80966 | Acanthochromis polyacanthus (Bleeker, 1855) | | authority | +80966 | Acanthochromis polyacanthus | | scientific name | +80966 | Acanthochromis polyacathus | | synonym | +80966 | Dascyllus polyacanthus Bleeker, 1855 | | authority | +80966 | Dascyllus polyacanthus | | synonym | +80966 | spiny chromis | | genbank common name | +80966 | spiny damselfish | | common name | +80967 | Amblyglyphidodon | | scientific name | +80969 | Amphiprion | | scientific name | +80974 | Chromis | | scientific name | +80992 | Stegastes | | scientific name | +81369 | Lampris | | scientific name | +81370 | Jerusalem haddock | | common name | +81370 | Lampris guttatus | | scientific name | +81370 | North Atlantic opah | | genbank common name | +81370 | opah | | common name | +81370 | Zeus guttatus Brunnich, 1788 | | authority | +81370 | Zeus guttatus | | synonym | +81391 | Synodus | | scientific name | +81635 | Micromesistius | | scientific name | +81636 | blue whiting | | genbank common name | +81636 | Boreogadus poutassou | | synonym | +81636 | Couch's whiting | | common name | +81636 | Gadus poutassou | | synonym | +81636 | Merlangus poutassou Risso, 1827 | | authority | +81636 | Merlangus poutassou | | synonym | +81636 | Micromesistius poutassou (Risso, 1827) | | authority | +81636 | Micromesistius poutassou | | scientific name | +81636 | poutassou | | common name | +82038 | Prospero Salisb., 1866 | | authority | +82038 | Prospero | | scientific name | +82464 | Clethrionomys regulus | | synonym | +82464 | Craseomys regulus | | synonym | +82464 | Craseomys regulus Thomas, 1907 | | authority | +82464 | Eothenomys regulus | | synonym | +82464 | Eothenomys regulus (Thomas, 1907) | | authority | +82464 | Korean red-backed vole | | genbank common name | +82464 | Myodes regulus | | scientific name | +82464 | Myodes regulus (Thomas, 1907) | | authority | +82464 | royal vole | | common name | +82466 | Anderson's red-backed vole | | genbank common name | +82466 | Eothenomys andersoni | | synonym | +82466 | Japanese red-backed vole | | common name | +82466 | Myodes andersoni | | scientific name | +82466 | Myodes andersoni (Thomas, 1905) | | authority | +82466 | Phaulomys andersoni | | synonym | +82594 | Amphidasis | | synonym | +82594 | Biston Leach, 1815 | | authority | +82594 | Biston | | scientific name | +82594 | Culcula | | synonym | +82594 | Dasyphara | | synonym | +82594 | Eubyja | | synonym | +82594 | Pachys | | synonym | +82595 | Biston betularia | | scientific name | +82595 | Biston betularium | | synonym | +82595 | Biston betularius (Linnaeus, 1758) | | authority | +82595 | Biston betularius | | synonym | +82595 | pepper-and-salt moth | | genbank common name | +82595 | peppered moth | | common name | +83875 | Caranx trachurus japonicus | | synonym | +83875 | Caranx trachurus japonicus Temminck & Schlegel, 1844 | | authority | +83875 | Japanese horse mackerel | | common name | +83875 | Japanese jack mackerel | | genbank common name | +83875 | Trachurus japonicus | | scientific name | +83875 | Trachurus japonicus (Temminck & Schlegel, 1844) | | authority | +83911 | Psoroptes | | scientific name | +83912 | Psoroptes cervinus | | synonym | +83912 | Psoroptes cuniculi (Delafond, 1859) | | authority | +83912 | Psoroptes cuniculi | | synonym | +83912 | Psoroptes equi | | synonym | +83912 | Psoroptes equi var. cervinus | | synonym | +83912 | Psoroptes equi var. cuniculi | | synonym | +83912 | Psoroptes equi var. equi | | synonym | +83912 | Psoroptes equi var. natalensis | | synonym | +83912 | Psoroptes equi var. ovis | | synonym | +83912 | Psoroptes natalensis | | synonym | +83912 | Psoroptes ovis (Hering, 1838) | | authority | +83912 | Psoroptes ovis | | scientific name | +83912 | Psoroptes ovis var. cuniculi | | synonym | +83912 | rabbit ear mite | | common name | +83912 | scabies mite | | common name | +83912 | sheep scab mite | | genbank common name | +83970 | Hemisus | | scientific name | +83971 | Engystoma marmoratum Peters, 1854 | | authority | +83971 | Engystoma marmoratum | | synonym | +83971 | Hemisus marmoratum | | synonym | +83971 | Hemisus marmoratus | | scientific name | +83971 | Hemisus marmoratus sudanensis | | synonym | +83971 | Hemisus sudanensis | | synonym | +83971 | Lake Zwai shovelnose frog | | common name | +83971 | marbled snout-burrower | | common name | +83971 | mottled burrowing frog | | common name | +83971 | mottled shovel-nosed frog | | genbank common name | +83971 | pig-nosed frog | pig-nosed frog | common name | +83971 | shovel-nosed burrowing frog | | common name | +83975 | Arthroleptis | | scientific name | +83975 | Schoutedenella | | synonym | +83975 | squeaking frogs | | genbank common name | +84644 | Catla | | synonym | +84644 | Labeo | | scientific name | +84644 | Morulius | | synonym | +84645 | Cyprinus rohita Hamilton, 1822 | | authority | +84645 | Cyprinus rohita | | synonym | +84645 | Jayanti rohu | | common name | +84645 | Labeo rohita (Hamilton, 1822) | | authority | +84645 | Labeo rohita | | scientific name | +84645 | rohu | rohu | genbank common name | +84804 | Icterus | | scientific name | +85104 | Burhinus | | scientific name | +85565 | Erimystax | | scientific name | +85589 | Dendrobates granuliferus | | synonym | +85589 | Dendrobates granuliferus Taylor, 1958 | | authority | +85589 | granular poison-arrow frog | | common name | +85589 | granular poison-dart frog | | common name | +85589 | granular poison frog | | genbank common name | +85589 | Oophaga granulifera | | scientific name | +85589 | Oophaga granulifera (Taylor, 1958) | | authority | +85589 | Ranitomeya granuliferus | | synonym | +86068 | Baikal whitefish | | genbank common name | +86068 | Coregonus baicalensis baicalensis Dybovskii | | authority | +86068 | Coregonus baicalensis baicalensis | | synonym | +86068 | Coregonus baicalensis Dybowski, 1874 | | authority | +86068 | Coregonus baicalensis | | scientific name | +86068 | Coregonus lavaretus baicalensis | | synonym | +86068 | European whitefish | | common name | +86196 | Acanthogobius | | scientific name | +86206 | Ptereleotris | | scientific name | +86207 | blacktail goby | | genbank common name | +86207 | Eleotris heteropterus Bleeker, 1855 | | authority | +86207 | Eleotris heteropterus | | synonym | +86207 | pale gudgeon | | common name | +86207 | Ptereleotris heteroptera (Bleeker, 1855) | | authority | +86207 | Ptereleotris heteroptera | | scientific name | +86207 | spot-tail dartfish | | common name | +86207 | spot-tail hovergoby | | common name | +86207 | tail-spot dart-goby | | common name | +86345 | Bankor toad | | genbank common name | +86345 | Bufo bankorensis Barbour, 1908 | | authority | +86345 | Bufo bankorensis | | scientific name | +86345 | Bufo bufo bankorensis | | synonym | +86345 | Bufo japonicus bankorensis | | synonym | +86345 | Central Formosa toad | | common name | +86362 | Himantura | | scientific name | +86365 | Manta | | synonym | +86365 | Mobula | | scientific name | +86366 | bentfin devil ray | | common name | +86366 | Dicerobatis thurstoni Lloyd, 1908 | | authority | +86366 | Dicerobatis thurstoni | | synonym | +86366 | lesser devil ray | lesser devil ray | common name | +86366 | Mobula thurstoni (Lloyd, 1908) | | authority | +86366 | Mobula thurstoni | | scientific name | +86366 | smoothtail devil ray | | genbank common name | +86372 | Potamotrygon | | scientific name | +86373 | ocellate stingray | | genbank common name | +86373 | Potamotrygon motoro (Mueller & Henle, 1841) | | authority | +86373 | Potamotrygon motoro | | scientific name | +86373 | South American freshwater stingray | | common name | +86373 | Taeniura motoro Mueller & Henle, 1841 | | authority | +86373 | Taeniura motoro Muller & Henle, 1841 | | authority | +86373 | Taeniura motoro | | synonym | +86376 | Taeniura | | scientific name | +86542 | Briareum | | scientific name | +86543 | Alcyonium asbestinum Pallas, 1766 | | authority | +86543 | Alcyonium asbestinum | | synonym | +86543 | Briareum asbestinum (Pallas, 1766) | | authority | +86543 | Briareum asbestinum | | scientific name | +86543 | Briareum polyanthes | | synonym | +86543 | corky sea finger | | common name | +86543 | deadman's fingers | | genbank common name | +86606 | black sea whip | | genbank common name | +86606 | black wire coral | | common name | +86606 | Cirrhipathes lutkeni | | synonym | +86606 | Stichopathes luetkeni Brook, 1889 | | authority | +86606 | Stichopathes luetkeni | | scientific name | +86606 | Stichopathes lutkeni (Brook, 1889) | | authority | +86606 | Stichopathes lutkeni | | synonym | +86674 | Urobatis | | scientific name | +86917 | Mylocheilus | | scientific name | +86918 | Clarkina caurina | | synonym | +86918 | Cyprinus caurinus Richardson, 1836 | | authority | +86918 | Cyprinus caurinus | | synonym | +86918 | Mylocheilus caurinus (Richardson, 1836) | | authority | +86918 | Mylocheilus caurinus | | scientific name | +86918 | northwest dace | | common name | +86918 | peamouth chub | | genbank common name | +86918 | peamouth | | common name | +86918 | redmouth sucker | | common name | +86921 | Erimystax x-punctatus (Hubbs & Crowe, 1956) | | authority | +86921 | Erimystax x-punctatus (Hubbs & Crowe. 1956) | | authority | +86921 | Erimystax x-punctatus | | scientific name | +86921 | gravel chub | | genbank common name | +86921 | Hybopsis x-punctata Hubbs & Crowe, 1956 | | authority | +86921 | Hybopsis x-punctata | | synonym | +86921 | spotted chub | | common name | +86941 | Exoglossum | | scientific name | +86942 | eastern tonguetied minnow | | genbank common name | +86942 | Exoglossum laurae (Hubbs, 1931) | | authority | +86942 | Exoglossum laurae | | scientific name | +86942 | Parexoglossum laurae Hubbs, 1931 | | authority | +86942 | Parexoglossum laurae | | synonym | +86942 | tonguetied minnow | | common name | +86974 | Agrionemys | | synonym | +86974 | Testudo | | scientific name | +87137 | Pastinachus | | scientific name | +87138 | cowtail ray | | common name | +87138 | cowtail stingray | | genbank common name | +87138 | Pastinachus sephen (Fabricius, 1775) | | authority | +87138 | Pastinachus sephen | | scientific name | +87138 | Raja sephen Fabricius, 1775 | | authority | +87138 | Raja sephen Forsskal, 1775 | | authority | +87138 | Raja sephen | | synonym | +87138 | Trygon sephen | | synonym | +88030 | Ptychadena | | scientific name | +88031 | broad-banded ridged frog | | common name | +88031 | Masarene grassland frog | | common name | +88031 | Masarene ridged frog | | genbank common name | +88031 | Mascarene grass frog | | common name | +88031 | Mascarene rocket frog | | common name | +88031 | Ptychadena mascareniensis (Dumeril & Bibron, 1841) | | authority | +88031 | Ptychadena mascareniensis | | scientific name | +88031 | Rana mascareniensis Dumeril & Bibron, 1840 | | authority | +88031 | Rana mascareniensis Dumeril & Bibron, 1841 | | authority | +88031 | Rana mascareniensis | | synonym | +88115 | Delichon | | scientific name | +88116 | Delichon urbica | | synonym | +88116 | Delichon urbicum (Linnaeus, 1758) | | authority | +88116 | Delichon urbicum | | scientific name | +88116 | Hirundo urbica Linnaeus, 1758 | | authority | +88116 | Hirundo urbica | | synonym | +88116 | Mehlschwalbe | | common name | +88116 | Northern house-martin | | genbank common name | +88119 | Psaltriparus | | scientific name | +88120 | Buschmeise | | common name | +88120 | Bushtit | | genbank common name | +88120 | Parus minimus | | synonym | +88120 | Parus minimus Townsend, 1837 | | authority | +88120 | Psaltriparus minimus | | scientific name | +88120 | Psaltriparus minimus (Townsend, JK, 1837) | | authority | +88199 | Mugilogobius | | scientific name | +88445 | dharma pond frog | dharma pond frog | genbank common name | +88445 | Hylarana porosa | | synonym | +88445 | Kanagawa frog | | common name | +88445 | Pelophylax porosus (Cope, 1868) | | authority | +88445 | Pelophylax porosus | | scientific name | +88445 | Rana porosa | | synonym | +88445 | Tomopterna porosa Cope, 1868 | | authority | +88445 | Tomopterna porosa | | synonym | +88448 | Fukien gold-striped pond frog | | genbank common name | +88448 | Futsing Hsien frog | | common name | +88448 | Pelophylax fukienensis | | scientific name | +88448 | Pelophylax plancyi fukienensis | | synonym | +88448 | Rana fukienensis Pope, 1929 | | authority | +88448 | Rana fukienensis | | synonym | +88448 | Rana plancyi fukienensis | | synonym | +89462 | Bos bubalis Linnaeus, 1758 | | authority | +89462 | Bos bubalis | | synonym | +89462 | Bubalus arnee bubalis | | synonym | +89462 | Bubalus bubalis | | scientific name | +89462 | domestic water buffalo | | common name | +89462 | river buffalo | | common name | +89462 | water buffalo | | genbank common name | +89467 | Saltuarius | | scientific name | +89468 | Gymnodactylus cornutus Ogilby, 1892 | | authority | +89468 | Gymnodactylus cornutus | | synonym | +89468 | leaf-tailed gecko | | common name | +89468 | Northern leaf-tail gecko | | genbank common name | +89468 | Phyllurus cornutus | | synonym | +89468 | Saltuarius cornutus | | scientific name | +89566 | Lovettia | | scientific name | +89900 | bark scorpions | | genbank common name | +89900 | Lychas | | scientific name | +89900 | tropical thick-tailed scorpions | | common name | +90407 | Icmadophila | | scientific name | +90407 | Icmadophila Trevis., 1853 | | authority | +90408 | fairy's barf | | common name | +90408 | Icmadophila ericetorum (L.) Zahlbr., 1895 | | authority | +90408 | Icmadophila ericetorum | | scientific name | +90408 | Lichen ericetorum L., 1753 | | authority | +90408 | Lichen ericetorum | | synonym | +90408 | peppermint drop lichen | | genbank common name | +91611 | Dascyllus marginatus (Ruppell, 1829) | | authority | +91611 | Dascyllus marginatus | | scientific name | +91611 | marginate dascyllus | | genbank common name | +91611 | Pomacentrus marginatus Ruppell, 1829 | | authority | +91611 | Pomacentrus marginatus | | synonym | +91611 | Red Sea dascyllus | | common name | +91720 | Heterotis | Heterotis | scientific name | +91720 | Heterotis Rueppell 1828 | | authority | +91721 | African arowana | | common name | +91721 | African bonytongue | | genbank common name | +91721 | Clupisudis niloticus | | synonym | +91721 | Heterotis niloticus (Cuvier, 1829) | | authority | +91721 | Heterotis niloticus | | scientific name | +91721 | Sudis nilotica Cuvier, 1829 | | authority | +91721 | Sudis nilotica | | synonym | +91721 | Sudis niloticus Cuvier, 1829 | | authority | +91721 | Sudis niloticus | | synonym | +91737 | Aricia | Aricia | scientific name | +91737 | Pseudoaricia | | synonym | +91738 | Aricia artaxerxes (Fabricius, 1793) | | authority | +91738 | Aricia artaxerxes | | scientific name | +91738 | Hesperia artaxerxes Fabricius, 1793 | | authority | +91738 | Hesperia artaxerxes | | synonym | +91738 | northern brown argus | | genbank common name | +91738 | Scotch argus | Scotch argus | common name | +91742 | Cephalopholis | | scientific name | +91744 | Choerodon | | scientific name | +91745 | Choerodon oligacanthus (Bleeker, 1851) | | authority | +91745 | Choerodon oligacanthus | | scientific name | +91745 | Choerodon oligocanthus (Bleeker, 1851). | | common name | +91745 | Crenilabrus oligacanthus Bleeker, 1851 | | authority | +91745 | Crenilabrus oligacanthus | | synonym | +91745 | white-patch tuskfish | | genbank common name | +92439 | Chaetodon guttatus | | synonym | +92439 | golden rabbitfish | | common name | +92439 | goldlined spinefoot | | genbank common name | +92439 | orange-spotted spinefoot | | common name | +92439 | Siganus guttatus (Bloch, 1787) | | authority | +92439 | Siganus guttatus | | scientific name | +92724 | blue poison-arrow frog | | common name | +92724 | blue poison frog | | common name | +92724 | Calamita tinctorius | | synonym | +92724 | Dendrobates azureus (Hoogmoed, 1969) | | authority | +92724 | Dendrobates azureus | | synonym | +92724 | Dendrobates tinctorius (Cuvier, 1797) | | authority | +92724 | Dendrobates tinctorius | | scientific name | +92724 | dyeing poison-arrow frog | | common name | +92724 | dyeing poison frog | | genbank common name | +92724 | giant poison frog | | common name | +92724 | Hylaplesia tinctoria | | synonym | +92724 | Hyla tinctoria | | synonym | +92724 | Rana tinctoria Cuvier, 1797 | | authority | +92724 | Rana tinctoria | | synonym | +92727 | Epipedobates | | scientific name | +92727 | phantasmal poison frogs | | genbank common name | +92727 | Phobobates | | synonym | +92731 | Ameerega bilinguis (Jungfer, 1989) | | authority | +92731 | Ameerega bilinguis | | scientific name | +92731 | Ecuadorean poison frog | | common name | +92731 | Ecuador poison frog | | genbank common name | +92731 | Epipedobates bilinguis Jungfer, 1989 | | authority | +92731 | Epipedobates bilinguis | | synonym | +92733 | Allobates femoralis (Boulenger, 1884) | | authority | +92733 | Allobates femoralis | | scientific name | +92733 | brilliant-thighed poison-arrow frog | | common name | +92733 | brilliant-thighed poison frog | | genbank common name | +92733 | Dendrobates femoralis | | synonym | +92733 | Epipedobates femoralis | | synonym | +92733 | Phyllobates femoralis | | synonym | +92733 | Prostherapis femoralis Boulenger, 1884 | | authority | +92733 | Prostherapis femoralis | | synonym | +92734 | Ameerega picta (Bibron, 1838) | | authority | +92734 | Ameerega picta | | scientific name | +92734 | Dendrobates pictus | | synonym | +92734 | Epipedobates pictus | | synonym | +92734 | Hylaplesia picta | | synonym | +92734 | Hylaplesia picta Tschudi, 1838 | | authority | +92734 | Phyllobates pictus | | synonym | +92734 | spot-legged poison-arrow frog | | common name | +92734 | spot-legged poison frog | | genbank common name | +92737 | Ameerega trivittata | | scientific name | +92737 | Ameerega trivittata (Spix, 1824) | | authority | +92737 | Dendrobates trivittatus | | synonym | +92737 | Epipedobates trivitattus | | synonym | +92737 | Epipedobates trivittatus (Spix, 1824) | | authority | +92737 | Epipedobates trivittatus | | synonym | +92737 | Hyla trivittata Spix, 1824 | | authority | +92737 | Hyla trivittata | | synonym | +92737 | Phobobates trivittatus | | synonym | +92737 | three-striped arrow-poison frog | | common name | +92737 | three-striped poison frog | | genbank common name | +93201 | Cicindela | Cicindela | scientific name | +93201 | Cicindela (Cicindela) | | synonym | +93385 | bok-choy | | common name | +93385 | Brassica campestris subsp. chinensis (L.) Makino, 1912 | | synonym | +93385 | Brassica campestris subsp. chinensis var. communis | | synonym | +93385 | Brassica campestris subsp. chinensis var. utilis | | equivalent name | +93385 | Brassica chinensis L., 1755 | | authority | +93385 | Brassica chinensis | | synonym | +93385 | Brassica chinensis var. communis M.Tsen & S.H.Lee | | authority | +93385 | Brassica chinensis var. communis | | synonym | +93385 | Brassica oleracea var. chinensis (L.) Prain, 1898 | | authority | +93385 | Brassica oleracea var. chinensis | | synonym | +93385 | Brassica rapa (Chinensis Group) | | synonym | +93385 | Brassica rapa Pak Choi Group | | synonym | +93385 | Brassica rapa subsp. chinensis (L.) Hanelt, 1986 | | authority | +93385 | Brassica rapa subsp. chinensis | | scientific name | +93385 | Brassica rapa subsp. chinensis var. communis | | synonym | +93385 | Brassica rapa var. amplexicaulis | | synonym | +93385 | Brassica rapa var. amplexicaulis Y.Tanaka & Ono | | authority | +93385 | Brassica rapa var. chinensis (L.) Kitam., 1950 | | authority | +93385 | Brassica rapa var. chinensis | | synonym | +93385 | Brassica rapa var. communis | | synonym | +93385 | Brassica rapa var. utilis M.Tsen & S.H.Lee | | synonym | +93385 | Brassica rapa var. utilis | | synonym | +93715 | mountain parnassian | | common name | +93715 | Parnassius phoebus smintheus | | synonym | +93715 | Parnassius smintheus Doubleday, 1847 | | authority | +93715 | Parnassius smintheus | | scientific name | +93715 | Rocky Mountain parnassian | | genbank common name | +93715 | Smintheus' parnassian | | common name | +94189 | Genetta | | scientific name | +94231 | Epinephelus | | scientific name | +94231 | Promicrops | | synonym | +94232 | Bola coioides Hamilton, 1822 | | authority | +94232 | Bola coioides | | synonym | +94232 | Epinephelus coioides (Hamilton, 1822) | | authority | +94232 | Epinephelus coioides | | scientific name | +94232 | Epinephelus suillus | | synonym | +94232 | Epinephelus suillus (Valenciennes, 1828) | | authority | +94232 | estuary cod | | common name | +94232 | estuary rock cod | | common name | +94232 | orange-spotted grouper | | genbank common name | +94309 | Harpadon | | scientific name | +94413 | Acanthodactylus scutellatus | | scientific name | +94413 | fringe-toed lizard | | common name | +94413 | Lacerta scutellata Audouin, 1827 | | authority | +94413 | Lacerta scutellata | | synonym | +94413 | Nidua fringe-fingered lizard | | genbank common name | +94434 | Oryzorictes | | scientific name | +94436 | Parascalops | | scientific name | +94437 | Brewer's mole | | common name | +94437 | hairy-tailed mole | | genbank common name | +94437 | Parascalops breweri | | scientific name | +94437 | Scalops breweri Bachman, 1841 | | authority | +94437 | Scalops breweri | | synonym | +94834 | Gavialis | | scientific name | +94835 | Gavialis gangeticus | | scientific name | +94835 | Gharial | | genbank common name | +94835 | Lacerta gangetica Gmelin, 1789 | | authority | +94835 | Lacerta gangetica | | synonym | +94835 | true gharial | | common name | +94873 | Lampropeltis | | scientific name | +94925 | Holocentrus | | scientific name | +94988 | Lethenteron | | scientific name | +94992 | Parasilurus | | synonym | +94992 | Silurus | | scientific name | +94993 | Danube catfish | | common name | +94993 | European catfish | | genbank common name | +94993 | Siluris glanis | | synonym | +94993 | Silurus glanis Linnaeus, 1758 | | authority | +94993 | Silurus glanis | | scientific name | +94993 | Wels catfish | | common name | +95142 | big-eyed treefrogs | | genbank common name | +95142 | Nyctimystes | | scientific name | +95143 | Australian lace-lid | | common name | +95143 | Day's big-eyed treefrog | | common name | +95143 | Hyla dayi Guenther, 1897 | | authority | +95143 | Hyla dayi | | synonym | +95143 | lace-eyed tree frog | | genbank common name | +95143 | Litoria dayi | | synonym | +95143 | Nyctimystes dayi (Guenther, 1897) | | authority | +95143 | Nyctimystes dayi | | scientific name | +95180 | Abagrotis | | scientific name | +95181 | Abagrotis alternata | | scientific name | +95181 | greater red dart moth | | genbank common name | +95181 | mottled gray cutworm | | common name | +95181 | Noctua alternata Grote, 1864 | | authority | +95181 | Noctua alternata | | synonym | +95468 | Fannia | | scientific name | +95601 | Eriocheir | | scientific name | +95602 | Chinese hairy crab | | common name | +95602 | Chinese mitten crab | | genbank common name | +95602 | Eriocheir chinensis | | synonym | +95602 | Eriocheir japonica sinensis | | synonym | +95602 | Eriocheir sinensis Milne Edwards, 1853 | | authority | +95602 | Eriocheir sinensis | | scientific name | +95654 | Melozone | | scientific name | +95971 | Aphidoletes | | scientific name | +95972 | Aphidoletes aphidimyza | | scientific name | +95972 | aphidophagous gall midge | | common name | +95972 | Cecidomyia aphidimyza Rondani, 1847 | | authority | +95972 | Cecidomyia aphidimyza | | synonym | +95972 | predatory gall midge | | genbank common name | +95972 | raptorial gall midge | | common name | +96430 | African five-lined skink | | genbank common name | +96430 | Euprepis quinquetaeniata | | synonym | +96430 | Mabuya quinquetaeniata | | synonym | +96430 | rainbow mabuya | | common name | +96430 | Scincus quinquetaeniatus Lichtenstein, 1823 | | authority | +96430 | Scincus quinquetaeniatus | | synonym | +96430 | Trachylepis quinquetaeniata (Lichtenstein, 1823) | | authority | +96430 | Trachylepis quinquetaeniata | | scientific name | +96740 | Hemitheconyx | | scientific name | +96741 | African fat-tailed gecko | | genbank common name | +96741 | African fat tail gecko | | common name | +96741 | Hemitheconyx caudicinctus | | scientific name | +96741 | Stenodactylus caudi-cinctus Dumeril, 1851 | | authority | +96741 | Stenodactylus caudi-cinctus | | synonym | +96885 | Sardinella | | scientific name | +96931 | Pyganodon | | scientific name | +96932 | Anodonta grandis | | synonym | +96932 | giant floater | | common name | +96932 | giant floater mussel | | genbank common name | +96932 | Pyganodon grandis (Say, 1829) | | authority | +96932 | Pyganodon grandis | | scientific name | +97051 | Cinara | | scientific name | +97956 | Discoglossus galganoi Capula, Nascetti, Lanza, Bullini, and Crespo, 1985 | | authority | +97956 | Discoglossus galganoi | | scientific name | +97956 | Discoglossus hispanicus Lataste, 1879 | | authority | +97956 | Discoglossus hispanicus | | synonym | +97956 | Iberian painted frog | | genbank common name | +97956 | Portugal painted frog | | common name | +97956 | West Iberian painted frog | | common name | +98139 | Oriolus | | scientific name | +98381 | Notolabrus | | scientific name | +98398 | Gyrinocheilus | | scientific name | +98647 | Epalzeorhynchos | | scientific name | +98648 | Epalzeorhynchos bicolor | | scientific name | +98648 | Epalzeorhynchos bicolor (Smith, 1931) | | authority | +98648 | Labeo bicolor Smith, 1931 | | authority | +98648 | Labeo bicolor | | synonym | +98648 | red-tailed black sharkminnow | | common name | +98648 | redtail sharkminnow | | genbank common name | +98805 | Bactrocera dorsalis complex | | scientific name | +98805 | dorsalis species complex | | synonym | +98805 | Oriental fruit fly complex | | synonym | +98921 | Fugu pardalis | | synonym | +98921 | higanfugu | | common name | +98921 | panther puffer | | genbank common name | +98921 | Takifugu pardalis | | scientific name | +98921 | Takifugu pardalis (Temminck & Schlegel, 1850) | | authority | +98921 | Tetraodon pardalis | | synonym | +98921 | Tetraodon pardalis Temminck & Schlegel, 1850 | | authority | +98922 | Daubenton's bat | | genbank common name | +98922 | Myotis daubentonii (Kuhl, 1817) | | authority | +98922 | Myotis daubentonii | | scientific name | +98922 | Myotis daubentoni | | synonym | +98922 | Vespertilio daubentonii Kuhl, 1817 | | authority | +98922 | Vespertilio daubentonii | | synonym | +98922 | Wasserfledermaus | | common name | +99490 | African forest elephant | | genbank common name | +99490 | elephant | elephant | in-part | +99490 | Elephas cyclotis Matschie, 1900 | | authority | +99490 | Elephas cyclotis | | synonym | +99490 | Loxodonta africana cyclotis | | synonym | +99490 | Loxodonta cyclotis (Matschie, 1900) | | authority | +99490 | Loxodonta cyclotis | | scientific name | +99490 | West African elephant | | common name | +99855 | Citellus pygmaeus Pallas, 1778 | | authority | +99855 | Citellus pygmaeus | | synonym | +99855 | little ground squirrel | | genbank common name | +99855 | little souslik | | common name | +99855 | Mus pygmaeus Pallas, 1778 | | authority | +99855 | Mus pygmaeus | | synonym | +99855 | Spermophilus pygmaeus (Pallas, 1778) | | authority | +99855 | Spermophilus pygmaeus | | scientific name | +100124 | Pseudobarbus | | scientific name | +100124 | redfins | | genbank common name | +100823 | Coluber natrix Linnaeus, 1758 | | authority | +100823 | Coluber natrix | | synonym | +100823 | European grass snake | | genbank common name | +100823 | Natrix natrix (Linnaeus, 1758) | | authority | +100823 | Natrix natrix | | scientific name | +100823 | Ringelnatter | | common name | +100823 | Tropidonotus natrix | | synonym | +100937 | baboon | baboon | common name | +100937 | Guinea baboon | | genbank common name | +100937 | Papio cynocephalus papio | | synonym | +100937 | Papio hamadryas papio | | synonym | +100937 | Papio papio (Desmarest, 1820) | | authority | +100937 | Papio papio | | scientific name | +100937 | Papio papio sensu Groves | | equivalent name | +101364 | Carassius auratus gibelio (Bloch, 1782) | | authority | +101364 | Carassius auratus gibelio | | synonym | +101364 | Carassius gibelio (Bloch, 1782) | | authority | +101364 | Carassius gibelio gibelio | | synonym | +101364 | Carassius gibelio | | scientific name | +101364 | Carassius gibelio subsp. gibelio | | synonym | +101364 | Cyprinus gibelio Bloch, 1782 | | authority | +101364 | Cyprinus gibelio | | synonym | +101364 | gibel carp | | common name | +101364 | Prussian carp | | common name | +101364 | silver crucian carp | | genbank common name | +101699 | Agrionemys horsfieldii | | synonym | +101699 | Horsfield's tortoise | | genbank common name | +101699 | Russian tortoise | | common name | +101699 | Testudo horsfieldii Gray, 1844 | | authority | +101699 | Testudo horsfieldii | | scientific name | +101699 | Testudo horsfieldi | | synonym | +101840 | Black Sea chub | | common name | +101840 | Dneiper carp | | common name | +101840 | Dneiper chub | | genbank common name | +101840 | Don chub | | common name | +101840 | Leuciscus borysthenicus | | synonym | +101840 | Petroleuciscus borysthenicus (Kessler, 1859) | | authority | +101840 | Petroleuciscus borysthenicus | | scientific name | +101840 | Squalius borysthenicus Kessler, 1859 | | authority | +101840 | Squalius borysthenicus | | synonym | +101898 | Vimba | | scientific name | +101899 | Abramis melanops Heckel, 1837 | | authority | +101899 | Abramis melanops | | synonym | +101899 | Macedonian vimba | | genbank common name | +101899 | malamida | | common name | +101899 | Vimba melanops (Heckel, 1837) | | authority | +101899 | Vimba melanops | | scientific name | +101899 | Vimba vimba melanops | | synonym | +102107 | Armeniaca mume Siebold | | authority | +102107 | Armeniaca mume | | synonym | +102107 | Japanese apricot | | genbank common name | +102107 | Prunus armeniaca var. bungo | | includes | +102107 | Prunus mume | | scientific name | +102107 | Prunus mume (Siebold) Siebold & Zucc., 1836 | | authority | +102107 | ume | | common name | +102210 | Benincasa Savi, 1818 | | authority | +102210 | Benincasa | | scientific name | +102211 | ash gourd | | common name | +102211 | Benincasa cerifera Savi | | authority | +102211 | Benincasa cerifera | | synonym | +102211 | Benincasa hispida | | scientific name | +102211 | Benincasa hispida (Thunb.) Cogn., 1881 | | authority | +102211 | Benincasa pruriens (Parkinson) W.J.de Wilde & Duyfjes | | authority | +102211 | Benincasa pruriens | | synonym | +102211 | Cucurbita hispida | | synonym | +102211 | Cucurbita hispida Thunb., 1783 | | authority | +102211 | Lagenaria siceraria var. hispida | | synonym | +102211 | Lagenaria siceraria var. hispida (Thunb.) H.Hara, 1948 | | authority | +102211 | wax gourd | | genbank common name | +102211 | winter melon | | common name | +102245 | Afrocaecilia | | synonym | +102245 | Boulengerula | | scientific name | +102246 | Afrocaecilia taitana | | synonym | +102246 | Boulengerula taitana Loveridge, 1935 | | authority | +102246 | Boulengerula taitana | | scientific name | +102246 | Boulengerula taitanus | | synonym | +102246 | Taita African caecilian | | common name | +102246 | Taita Mountains caecilian | | genbank common name | +103373 | Hoplobatrachus tigerinus (Daudin, 1802) | | authority | +103373 | Hoplobatrachus tigerinus | | scientific name | +103373 | Indus valley bullfrog | | genbank common name | +103373 | Rana tigerina Daudin, 1802 | | authority | +103373 | Rana tigerina | | synonym | +103373 | Rana tigrina | | synonym | +103373 | tiger frog | | common name | +103431 | Bufo cryptotympanicus Liu & Hu, 1962 | | authority | +103431 | Bufo cryptotympanicus | | scientific name | +103431 | earless toad | | common name | +103431 | hidden-eared toad | | genbank common name | +103431 | Torrentophryne cryptotympanica | | synonym | +103433 | bony-headed toad | | genbank common name | +103433 | Bufo galeatus Guenther, 1864 | | authority | +103433 | Bufo galeatus Gunther, 1864 | | authority | +103433 | Bufo galeatus | | synonym | +103433 | Gamboja toad | | common name | +103433 | Ingerophrynus galeatus (Guenther, 1864) | | authority | +103433 | Ingerophrynus galeatus | | scientific name | +103433 | mountain toad | mountain toad | common name | +103434 | Bufo himalayanus (Gunther, 1864) | | authority | +103434 | Bufo himalayanus | | synonym | +103434 | Bufo melanostictus var. himalayanus Gunther, 1864 | | authority | +103434 | Bufo melanostictus var. himalayanus | | synonym | +103434 | Duttaphrynus cyphosus | | synonym | +103434 | Duttaphrynus himalayanus (Guenther, 1864) | | authority | +103434 | Duttaphrynus himalayanus | | scientific name | +103434 | Gunther's high altitude toad | | common name | +103434 | Himalayan broad-skulled toad | | common name | +103434 | Himalayan toad | | genbank common name | +103819 | Mycteroperca | | scientific name | +103830 | Aletia | | synonym | +103830 | Mythimna | | scientific name | +103830 | Pseudaletia | | synonym | +103889 | Hyles Hubner, 1819 | | authority | +103889 | Hyles | | scientific name | +104499 | Chlosyne | | scientific name | +104514 | Melitaea | | scientific name | +104688 | Bactrocera (Daculus) oleae | | synonym | +104688 | Bactrocera (Dacus) oleae | | synonym | +104688 | Bactrocera oleae (Rossi, 1790) | | authority | +104688 | Bactrocera oleae | | scientific name | +104688 | Dacus oleae | | synonym | +104688 | Musca oleae Rossi, 1790 | | authority | +104688 | Musca oleae | | synonym | +104688 | olive fly | | common name | +104688 | olive fruit fly | | genbank common name | +104690 | Bactrocera minax (Enderlein, 1920) | | authority | +104690 | Bactrocera minax | | scientific name | +104690 | Bactrocera (Tetradacus) minax | | synonym | +104690 | Chinese citrus fly | | genbank common name | +104690 | Dacus minax | | synonym | +104690 | Oriental citrus fly | Oriental citrus fly | common name | +104690 | Polistomimetes minax | | synonym | +104691 | Bactrocera cheni | | synonym | +104691 | Bactrocera (Tetradacus) tsuneonis | | synonym | +104691 | Bactrocera tsuneonis (Miyake, 1919) | | authority | +104691 | Bactrocera tsuneonis | | scientific name | +104691 | Dacus cheni Chao, 1987 | | authority | +104691 | Dacus cheni | | synonym | +104691 | Dacus tsuneonis Miyake, 1919 | | authority | +104691 | Dacus tsuneonis | | synonym | +104691 | Japanese orange fly | | genbank common name | +104691 | Japanese orange fruit fly | | common name | +104691 | Oriental citrus fly | Oriental citrus fly | common name | +104895 | desert tree frog | | genbank common name | +104895 | Hyla rubella Gray, 1842 | | authority | +104895 | Hyla rubella | | synonym | +104895 | Litoria rubella | | scientific name | +104895 | red tree frog | | common name | +104896 | Australian brown treefrog | | common name | +104896 | Hyla ewingii Dumeril & Bibron, 1841 | | authority | +104896 | Hyla ewingii | | synonym | +104896 | Litoria ewingii | | scientific name | +104896 | Litoria ewingi | | synonym | +104896 | whistling tree frog | whistling tree frog | genbank common name | +104954 | Glauertia mjobergii | | synonym | +104954 | Mjoberg's toadlet | | genbank common name | +104954 | Pseudophryne mjobergii Andersson, 1913 | | authority | +104954 | Pseudophryne mjobergii Andersson, 1916 | | authority | +104954 | Pseudophryne mjobergii | | synonym | +104954 | Uperoleia mjobergii (Andersson, 1913) | | authority | +104954 | Uperoleia mjobergii | | scientific name | +104954 | Uperoleia mjobergi | | synonym | +104954 | West Kimberley toadlet | | common name | +105012 | Aphyosemion elberti (Ahl, 1924) | | authority | +105012 | Aphyosemion elberti | | scientific name | +105012 | Aphyosemion kekemense | | synonym | +105012 | Panchax elberti | | synonym | +105012 | red barred killi | | common name | +105012 | red barred killifish | | genbank common name | +105427 | Dactylethra muelleri Peters, 1844 | | authority | +105427 | Dactylethra muelleri | | synonym | +105427 | Muller's clawed frog | | genbank common name | +105427 | tropical platanna | | common name | +105427 | Xenopus muelleri | | scientific name | +105513 | Baltimore oriole | | genbank common name | +105513 | Coracias galbula Linnaeus, 1758 | | authority | +105513 | Coracias galbula | | synonym | +105513 | Icterus galbula (Linnaeus, 1758) | | authority | +105513 | Icterus galbula | | scientific name | +105513 | Northern oriole | | common name | +105721 | Cyclodina | | synonym | +105721 | Oligosoma Girard, 1857 | | authority | +105721 | Oligosoma | | scientific name | +106173 | Cynoglossus | | scientific name | +106331 | CalHV-3 | | acronym | +106331 | CalHV3 | | acronym | +106331 | callitrichine gammaherpesvirus 3 | | scientific name | +106331 | Callitrichine herpesvirus 3 | | equivalent name | +106331 | Marmoset lymphocryptovirus | | genbank common name | +106727 | Chelonoidis becki (Rothschild, 1901) | | authority | +106727 | Chelonoidis becki | | scientific name | +106727 | Geochelone elephantopus becki | | synonym | +106727 | Geochelone nigra becki | | synonym | +106727 | Testudo becki Rothschild, 1901 | | authority | +106727 | Testudo becki | | synonym | +106727 | Volcan Wolf giant tortoise | | common name | +106727 | Wolf Volcano giant tortoise | | genbank common name | +107025 | Mergellus | | scientific name | +107026 | Mergellus albellus | | scientific name | +107026 | Mergus albellus Linnaeus, 1758 | | authority | +107026 | Mergus albellus | | synonym | +107026 | Smew | | genbank common name | +107026 | Zwergsaeger | | common name | +107765 | Synagrops | | scientific name | +107965 | Dendrotriton | | scientific name | +109178 | Beijing gold-striped pond frog | | common name | +109178 | gold-spotted pond frog | | genbank common name | +109178 | Hylarana plancyi | | synonym | +109178 | Pelophylax plancyi (Lataste, 1880) | | authority | +109178 | Pelophylax plancyi | | scientific name | +109178 | Rana plancyi Lataste, 1880 | | authority | +109178 | Rana plancyi | | synonym | +109271 | arawana | | common name | +109271 | Ischnosoma bicirrhosum Cuvier, 1829 | | authority | +109271 | Ischnosoma bicirrhosum | | synonym | +109271 | Osteoglossum bicirrhosum | | scientific name | +109271 | silver arawana | | genbank common name | +109296 | giant muntjac | | genbank common name | +109296 | large-antlered muntjac | | common name | +109296 | Megamuntiacus vuquangensis Do Tuoc, Vu Van Dung, Dawson, Arctander & Mackinnon, 1994 | | authority | +109296 | Megamuntiacus vuquangensis | | synonym | +109296 | Muntiacus vuquangensis | | scientific name | +109296 | Muntiacus vuquangensis (Tuoc, Dung, Dawson, Arctander & Mackinnon, 1994) | | authority | +109673 | Falcipennis | | scientific name | +109674 | Canachites canadensis (Linnaeus, 1758) | | authority | +109674 | Canachites canadensis | | synonym | +109674 | Dendragapus canadensis | | synonym | +109674 | Falcipennis canadensis | | scientific name | +109674 | siberian grouse | | genbank common name | +109674 | spruce grouse | | common name | +109674 | Tetrao canadensis Linnaeus, 1758 | | authority | +109674 | Tetrao canadensis | | synonym | +109716 | Apolemichthys | | scientific name | +109718 | Centropyge | | scientific name | +109718 | Sumireyakko | | synonym | +109940 | Amolops Cope, 1865 | | authority | +109940 | Amolops | | scientific name | +109940 | cascade frogs | | genbank common name | +109960 | Amolops (Huia) nasicus | | synonym | +109960 | Amolops nasicus | | synonym | +109960 | Huia nasica (Boulenger, 1903) | | authority | +109960 | Huia nasica | | synonym | +109960 | long-snout torrent frog | | genbank common name | +109960 | Odorrana nasica (Boulenger, 1903) | | authority | +109960 | Odorrana nasica | | scientific name | +109960 | Rana nasica Boulenger, 1903 | | authority | +109960 | Rana nasica | | synonym | +109960 | Tonkin huia frog | | common name | +109960 | Vietnamese frog | | common name | +109961 | Limnonectes | | scientific name | +109961 | Taylorana | | synonym | +109962 | Asian giant stream frog | | common name | +109962 | Blyth's wart frog | | common name | +109962 | giant mountain frog | | genbank common name | +109962 | Limnonectes blythii (Boulenger, 1920) | | authority | +109962 | Limnonectes blythii | | scientific name | +109962 | Malayan giant frog | | common name | +109962 | Rana blythi | | synonym | +109962 | Rana macrodon var. blythii Boulenger, 1920 | | authority | +109962 | Rana macrodon var. blythii | | synonym | +109965 | Chinese edible frog | | common name | +109965 | Chinese spiny frog | | genbank common name | +109965 | giant spiny frog | | common name | +109965 | Nanorana spinosa | | synonym | +109965 | Paa spinosa (David, 1875) | | authority | +109965 | Paa spinosa | | synonym | +109965 | Quasipaa spinosa (David, 1875) | | authority | +109965 | Quasipaa spinosa | | scientific name | +109965 | Rana spinosa David, 1875 | | authority | +109965 | Rana spinosa | | synonym | +110071 | Hoplobatrachus | | scientific name | +110072 | Chinese bullfrog | | common name | +110072 | Chinese tiger frog | | common name | +110072 | common lowland frog | | common name | +110072 | Hoplobatrachus chinensis (Osbeck, 1765) | | authority | +110072 | Hoplobatrachus chinensis | | synonym | +110072 | Hoplobatrachus rugulosus | | scientific name | +110072 | Hoplobatrachus rugulosus (Wiegmann, 1834) | | authority | +110072 | I-san field frog | | common name | +110072 | Rana chinensis Osbeck, 1765 | | authority | +110072 | Rana chinensis | | synonym | +110072 | Rana rugulosa | | synonym | +110072 | Rana rugulosa Wiegmann, 1834 | | authority | +110072 | Rana tigrina rugulosa | | synonym | +110072 | rugose frog | | genbank common name | +110072 | Taiwanese frog | Taiwanese frog | common name | +110076 | Amolops chapaensis (Bourret, 1937) | | authority | +110076 | Amolops chapaensis | | synonym | +110076 | Chapa torrent frog | | genbank common name | +110076 | Huia chapaensis | | synonym | +110076 | Odorrana chapaensis (Bourret, 1937) | | authority | +110076 | Odorrana chapaensis | | scientific name | +110076 | Rhacophorus buergeri chapaensis Bourret, 1937 | | authority | +110076 | Rhacophorus buergeri chapaensis | | synonym | +110076 | Vietnam sucker frog | | common name | +110077 | common greenback | | common name | +110077 | golden-lined frog | | common name | +110077 | green-backed frog | | common name | +110077 | green lotus frog | | common name | +110077 | green paddy frog | | genbank common name | +110077 | Hyla erythraea Schlegel, 1837 | | authority | +110077 | Hyla erythraea | | synonym | +110077 | Hylarana erythraea (Schlegel, 1837) | | authority | +110077 | Hylarana erythraea | | scientific name | +110077 | Limnodytes erythraeus | | synonym | +110077 | Polypedates erythraea | | synonym | +110077 | Rana erythraea (Schlegel, 1837) | | authority | +110077 | Rana erythraea | | synonym | +110077 | red-eared frog | | common name | +110094 | Annam wart frog | | common name | +110094 | Limnonectes dabanus | | scientific name | +110094 | Limnonectes dabanus (Smith, 1922) | | authority | +110094 | Limnonectes toumanoffi (Bourret, 1941) | | authority | +110094 | Limnonectes toumanoffi | | synonym | +110094 | Rana macrognathus dabana Smith, 1922 | | authority | +110094 | Rana macrognathus dabana | | synonym | +110094 | Rana toumanoffi | | synonym | +110094 | Toumanoff's wart frog | | genbank common name | +110102 | Gynadropaa yunnanensis | | synonym | +110102 | Nanorana bourreti | | synonym | +110102 | Nanorana liui | | synonym | +110102 | Nanorana yunnanensis | | scientific name | +110102 | Ninglang paa frog | | common name | +110102 | Paa bourreti (Dubois, 1987) | | authority | +110102 | Paa bourreti | | synonym | +110102 | Paa liui (Dubois, 1987) | | authority | +110102 | Paa liui | | synonym | +110102 | Paa yunnanensis (Anderson, 1879) | | authority | +110102 | Paa yunnanensis | | synonym | +110102 | Rana bourreti | | synonym | +110102 | Rana yunnanensis Anderson, 1879 | | authority | +110102 | Rana yunnanensis | | synonym | +110102 | vocal sacless spiny frog | | common name | +110102 | Yunan spiny frog | | genbank common name | +110107 | big-headed mountain frog | | common name | +110107 | Kuhl's creek frog | | common name | +110107 | Kuhl's wart frog | | genbank common name | +110107 | Limnonectes kuhlii | | scientific name | +110107 | Limnonectes kuhlii (Tschudi, 1838) | | authority | +110107 | Rana kuhlii | | synonym | +110107 | Rana kuhlii Tschudi, 1838 | | authority | +110111 | Humerana lateralis | | scientific name | +110111 | Hylarana lateralis (Boulenger, 1887) | | authority | +110111 | Hylarana lateralis | | synonym | +110111 | Kokarit frog | | genbank common name | +110111 | Pelophylax lateralis | | synonym | +110111 | Rana lateralis Boulenger, 1887 | | authority | +110111 | Rana lateralis | | synonym | +110111 | yellow frog | | common name | +110116 | Huia schmackeri (Boettger, 1892) | | authority | +110116 | Huia schmackeri | | synonym | +110116 | Kaochahien frog | | common name | +110116 | Odorrana (Odorrana) schmackeri | | synonym | +110116 | Odorrana schmackeri (Boettger, 1892) | | authority | +110116 | Odorrana schmackeri | | scientific name | +110116 | piebald odorous frog | | genbank common name | +110116 | Rana schmackeri Boettger, 1892 | | authority | +110116 | Rana schmackeri | | synonym | +110116 | Schmacker's frog | | common name | +110118 | Hylarana taipehensis | | scientific name | +110118 | Hylarana taipehensis (Van Denburgh, 1909) | | authority | +110118 | Rana taipehensis | | synonym | +110118 | Rana taipehensis Van Denburgh, 1909 | | authority | +110118 | striped slender frog | | common name | +110118 | Taipeh frog | | common name | +110118 | Taipei frog | | genbank common name | +110118 | Taiwanese frog | Taiwanese frog | common name | +110118 | two-striped grass frog | | common name | +110118 | white-striped frog | | common name | +110212 | Caucasus viper | | genbank common name | +110212 | Coluber raddei | | synonym | +110212 | Daboia raddei | | synonym | +110212 | Iranian mountain viper | | common name | +110212 | Montivipera albicornuta | | synonym | +110212 | Montivipera raddei (Boettger, 1890) | | authority | +110212 | Montivipera raddei | | scientific name | +110212 | Vipera albicornuta Nilson & Andren 1985 | | authority | +110212 | Vipera albicornuta | | synonym | +110212 | Vipera raddei albicornuta | | synonym | +110212 | Vipera raddei Boettger, 1890 | | authority | +110212 | Vipera raddei | | synonym | +110620 | Ardea alba Linnaeus, 1758 | | authority | +110620 | Ardea alba | | scientific name | +110620 | Camerodius albus | | synonym | +110620 | Casmerodius albus | | synonym | +110620 | Egretta alba (Linnaeus, 1758) | | authority | +110620 | Egretta alba | | synonym | +110620 | Egretta albus | | synonym | +110620 | great egret | | genbank common name | +110620 | great white egret | | common name | +110684 | Ixobrychus | | scientific name | +110684 | least bitterns | | genbank common name | +110792 | Meandrusa | | scientific name | +110793 | Meandrusa payeni (Boisduval, 1836) | | authority | +110793 | Meandrusa payeni | | scientific name | +110793 | outlet sword swallowtail | | common name | +110793 | Papilio payeni Boisduval, 1836 | | authority | +110793 | Papilio payeni | | synonym | +110793 | sickle swallowtail | | common name | +110793 | yellow gorgon | | genbank common name | +110926 | Anas columbianus Ord, 1815 | | authority | +110926 | Anas columbianus | | synonym | +110926 | Cygnus columbianus (Ord, 1815) | | authority | +110926 | Cygnus columbianus | | scientific name | +110926 | Olor columbianus | | synonym | +110926 | tundra swan | | genbank common name | +110926 | whistling swan | | common name | +111065 | Bocage's rocket frog | | common name | +111065 | Colostethus bocagei | | synonym | +111065 | Hyloxalus bocagei Jimenez de la Espada, 1871 | | authority | +111065 | Hyloxalus bocagei | | scientific name | +111065 | spotted rocket frog | spotted rocket frog | genbank common name | +111124 | Andinobates fulguritus | | scientific name | +111124 | Dendrobates fulguritus Silverstone, 1975 | | authority | +111124 | Dendrobates fulguritus | | synonym | +111124 | Minyobates fulguritus | | synonym | +111124 | Ranitomeya fulgurita (Silverstone, 1975) | | authority | +111124 | Ranitomeya fulgurita | | synonym | +111124 | yellow-bellied poison-arrow frog | | common name | +111124 | yellow-bellied poison frog | | common name | +111124 | yellowbelly poison frog | | genbank common name | +111128 | Ameerega parvula (Boulenger, 1882) | | authority | +111128 | Ameerega parvula | | scientific name | +111128 | Dendrobates parvulus Boulenger, 1882 | | authority | +111128 | Dendrobates parvulus | | synonym | +111128 | Epipedobates parvulus | | synonym | +111128 | Phyllobates parvulus | | synonym | +111128 | ruby poison-arrow frog | | common name | +111128 | ruby poison frog | | genbank common name | +111130 | Cystignathus mystacinus Burmeister, 1861 | | authority | +111130 | Cystignathus mystacinus | | synonym | +111130 | Leptodactylus labialis | | synonym | +111130 | Leptodactylus mystacinus (Burmeister, 1861) | | authority | +111130 | Leptodactylus mystacinus | | scientific name | +111130 | Mexican white-lipped frog | | common name | +111130 | moustached frog | | genbank common name | +111183 | Euprepes striatus var. spilogaster Peters, 1882 | | authority | +111183 | Euprepes striatus var. spilogaster | | synonym | +111183 | Kalahari tree skink | | genbank common name | +111183 | Mabuya spilogaster | | synonym | +111183 | spiny mabuya | | common name | +111183 | Trachylepis spilogaster (Peters, 1882) | | authority | +111183 | Trachylepis spilogaster | | scientific name | +111367 | crab-eating frog | | genbank common name | +111367 | Fejervarya cancrivora (Gravenhorst, 1829) | | authority | +111367 | Fejervarya cancrivora | | scientific name | +111367 | Java wart frog | | common name | +111367 | Limnonectes cancrivorus | | synonym | +111367 | marsh frog | marsh frog | common name | +111367 | Rana cancrivora Gravenhorst, 1829 | | authority | +111367 | Rana cancrivora | | synonym | +111367 | rice field frog | | common name | +111783 | Reinhardtius | | scientific name | +111784 | Greenland flounder | | genbank common name | +111784 | Greenland halibut | | common name | +111784 | Pleuronectes hippoglossoides | | synonym | +111784 | Pleuronectes hippoglossoides Walbaum, 1792 | | authority | +111784 | Reinhardtius hippoglossoides | | scientific name | +111784 | Reinhardtius hippoglossoides (Walbaum, 1792) | | authority | +111811 | Caprimulgus europaeus Linnaeus, 1758 | | authority | +111811 | Caprimulgus europaeus | | scientific name | +111811 | common nightjar | | synonym | +111811 | Eurasian nightjar | | genbank common name | +111811 | nightjar | | synonym | +111811 | Ziegenmelker | | common name | +111880 | Aglais | | scientific name | +111880 | Inachis | | synonym | +111881 | Aglais urticae (Linnaeus, 1758) | | authority | +111881 | Aglais urticae | | synonym | +111881 | mountain tortoiseshell | | common name | +111881 | Nymphalis urticae | | scientific name | +111881 | Papilio urticae | | synonym | +111881 | small tortoiseshell | | genbank common name | +111893 | Coenonympha | | scientific name | +111897 | argus butterflies | | common name | +111897 | arguses | | genbank common name | +111897 | Boeberia Prout, 1901 | | authority | +111897 | Boeberia | | synonym | +111897 | Boerebia | | synonym | +111897 | Erebia | | scientific name | +111898 | Erebia aethiopella (Hoffmannsegg, 1806) | | authority | +111898 | Erebia aethiopella | | scientific name | +111898 | Erebia aethiopellus (Hoffmannsegg, 1806) | | authority | +111898 | false mnestra ringlet butterfly | | common name | +111898 | false mnestra ringlet | | genbank common name | +111898 | Papilio aethiopellus Hoffmannsegg, 1806 | | authority | +111898 | Papilio aethiopellus | | synonym | +111900 | common brassy ringlet butterfly | | common name | +111900 | common brassy ringlet | | genbank common name | +111900 | Erebia cassioides (Reiner & Hochenwarth, 1792) | | authority | +111900 | Erebia cassioides | | scientific name | +111900 | Papilio cassioides | | synonym | +111902 | Erebia euryale (Esper, 1805) | | authority | +111902 | Erebia euryale | | scientific name | +111902 | large ringlet butterfly | | genbank common name | +111902 | large ringlet | | common name | +111902 | Papilio euryale Esper, 1805 | | authority | +111902 | Papilio euryale | | synonym | +111904 | Erebia meolans (Prunner, 1798) | | authority | +111904 | Erebia meolans | | scientific name | +111904 | Papilio meolans de Prunner, 1798 | | authority | +111904 | Papilio meolans | | synonym | +111904 | piedmont ringlet butterfly | | common name | +111904 | piedmont ringlet | | genbank common name | +111905 | Erebia montana (de Prunner, 1798) | | authority | +111905 | Erebia montana | | scientific name | +111905 | marbled ringlet butterfly | | common name | +111905 | marbled ringlet | | genbank common name | +111905 | Papilio montanus de Prunner, 1798 | | authority | +111905 | Papilio montanus | | synonym | +111906 | blind ringlet butterfly | | common name | +111906 | blind ringlet | | genbank common name | +111906 | Erebia pharte (Hubner, 1803-1804) | | authority | +111906 | Erebia pharte | | scientific name | +111906 | Papilio pharte Hubner, 1803 | | authority | +111906 | Papilio pharte | | synonym | +111907 | arctic alpine butterfly | | common name | +111907 | arctic alpine | | genbank common name | +111907 | Erebia rossii Curtis, 1835 | | authority | +111907 | Erebia rossii | | scientific name | +111907 | Erebia rossi | | synonym | +111907 | Hipparchia rossii Curtis, 1835 | | authority | +111907 | Hipparchia rossii | | synonym | +111915 | Lasiommata | | scientific name | +111916 | large wall brown butterfly | | common name | +111916 | large wall brown | | genbank common name | +111916 | Lasiommata maera (Linnaeus, 1758) | | authority | +111916 | Lasiommata maera | | scientific name | +111916 | Papilio maera Linnaeus, 1758 | | authority | +111916 | Papilio maera | | synonym | +111917 | Lasiommata megera (Linnaeus, 1767) | | authority | +111917 | Lasiommata megera | | scientific name | +111917 | Papilio megera Linnaeus, 1767 | | authority | +111917 | Papilio megera | | synonym | +111917 | wall brown butterfly | | common name | +111917 | wall brown | | genbank common name | +111918 | Lasiommata petropolitana (Fabricius, 1787) | | authority | +111918 | Lasiommata petropolitana | | scientific name | +111918 | northern wall brown butterfly | | common name | +111918 | northern wall brown | | genbank common name | +111918 | Papilio petropolitana Fabricius, 1787 | | authority | +111918 | Papilio petropolitana | | synonym | +111922 | marbled whites | | genbank common name | +111922 | Melanargia | | scientific name | +111923 | marbled white butterfly | | common name | +111923 | marbled white | | genbank common name | +111923 | Melanargia galathea (Linnaeus, 1758) | | authority | +111923 | Melanargia galathea | | scientific name | +111923 | Papilio galathea Linnaeus, 1758 | | authority | +111923 | Papilio galathea | | synonym | +111924 | Balkan marbled white butterfly | | common name | +111924 | Balkan marbled white | | genbank common name | +111924 | Melanargia lachesis (Hubner, 1790) | | authority | +111924 | Melanargia lachesis | | scientific name | +111924 | Papilio lachesis Hubner, 1790 | | authority | +111924 | Papilio lachesis | | synonym | +111925 | Esper's marbled white butterfly | | common name | +111925 | Esper's marbled white | | genbank common name | +111925 | Melanargia russiae (Esper, 1783) | | authority | +111925 | Melanargia russiae | | scientific name | +111925 | Papilio russiae Esper, 1783 | | authority | +111925 | Papilio russiae | | synonym | +111932 | Pararge | | scientific name | +111933 | Madeiran speckled wood butterfly | | genbank common name | +111933 | Madeiran speckled wood | | common name | +111933 | Papilio xiphia Fabricius, 1775 | | authority | +111933 | Papilio xiphia | | synonym | +111933 | Pararge xiphia | | scientific name | +111980 | Dumetella | | scientific name | +111981 | Dumatella carolinensis | | synonym | +111981 | Dumetella carolinensis (Linnaeus, 1766) | | authority | +111981 | Dumetella carolinensis | | scientific name | +111981 | Galeoscoptes carolinensis | | synonym | +111981 | gray catbird | | common name | +111981 | grey catbird | | genbank common name | +111981 | Muscicapa carolinensis Linnaeus, 1766 | | authority | +111981 | Muscicapa carolinensis | | synonym | +112179 | Pseudoperilampus suigensis Mori, 1935 | | authority | +112179 | Pseudoperilampus suigensis | | synonym | +112179 | Rhodeus suigensis (Mori, 1935) | | authority | +112179 | Rhodeus suigensis | | scientific name | +112179 | spring bitterling | | genbank common name | +112179 | suigen zenitanago | | common name | +112509 | domesticated barley | | genbank common name | +112509 | Hordeum sativum Jess. | | authority | +112509 | Hordeum sativum | | synonym | +112509 | Hordeum vulgare subsp. vulgare | | scientific name | +112509 | Hordeum vulgare subsp. vulgare Spenn. | | authority | +112509 | Hordeum vulgare var. nudum Spenn. | | authority | +112509 | Hordeum vulgare var. nudum | | synonym | +112509 | Hordeum vulgare var. vulgare | | synonym | +112509 | two-rowed barley | | common name | +113289 | Anthanassa | | scientific name | +113305 | Anthanassa texana (Edwards, 1863) | | authority | +113305 | Anthanassa texana | | scientific name | +113305 | Melitaea texana | | synonym | +113305 | Texan crescentspot butterfly | | genbank common name | +113305 | Texan crescentspot | | common name | +113307 | Apatura leilia Edwards, 1874 | | authority | +113307 | Apatura leilia | | synonym | +113307 | Asterocampa leilia (Edwards, 1874) | | authority | +113307 | Asterocampa leilia | | scientific name | +113307 | desert hackberry butterfly | | genbank common name | +113307 | desert hackberry | | common name | +113307 | Empress Leilia | | common name | +113315 | Araschnia lacinia Geyer, 1837 | | authority | +113315 | Araschnia lacinia | | synonym | +113315 | bordered patch butterfly | | genbank common name | +113315 | bordered patch | | common name | +113315 | Chlosyne lacinia (Geyer, 1837) | | authority | +113315 | Chlosyne lacinia | | scientific name | +113345 | desert fritillary | desert fritillary | common name | +113345 | lesser spotted fritillary | | genbank common name | +113345 | Melitaea trivia (Schiffermuller, 1775) | | authority | +113345 | Melitaea trivia | | scientific name | +113345 | Papilio trivia Denis & Schiffermuller, 1775 | | authority | +113345 | Papilio trivia | | synonym | +113379 | Kaloula | | scientific name | +113380 | boreal digging frog | | common name | +113380 | Cacopoides borealis Barbour, 1908 | | authority | +113380 | Cacopoides borealis | | synonym | +113380 | Kaloula borealis | | scientific name | +113380 | Manchurian digging frog | | common name | +113380 | Manchurian narrowmouth toad | | genbank common name | +113381 | Onychodactylus | | scientific name | +113382 | Fischer's clawed salamander | | genbank common name | +113382 | Geomolge fischeri Boulenger, 1886 | | authority | +113382 | Geomolge fischeri | | synonym | +113382 | Gorichire salamander | | common name | +113382 | long-tailed salamander | long-tailed salamander | common name | +113382 | Onychodactylus fischeri (Boulenger, 1886) | | authority | +113382 | Onychodactylus fischeri | | scientific name | +113383 | Huanren brown frog | | genbank common name | +113383 | Huanren frog | | common name | +113383 | Korean stream brown frog | | common name | +113383 | Rana huanrenensis | | synonym | +113383 | Rana huanrensis Fei, Ye & Huang, 1990 | | authority | +113383 | Rana huanrensis | | scientific name | +113391 | Gensan salamander | | genbank common name | +113391 | Hynobius leechii Boulenger, 1887 | | authority | +113391 | Hynobius leechii Form-A | | synonym | +113391 | Hynobius leechii | | scientific name | +113391 | Manchurian salamander | Manchurian salamander | common name | +113540 | Asian arowana | | common name | +113540 | Asian bonytongue | | genbank common name | +113540 | golden arowana | | common name | +113540 | golden dragon fish | | common name | +113540 | Osteoglossum formosum Mueller & Schlegel, 1844 | | authority | +113540 | Osteoglossum formosum Muller & Schlegel, 1840 | | authority | +113540 | Osteoglossum formosum | | synonym | +113540 | Scleropages formosus (Mueller & Schlegel, 1844) | | authority | +113540 | Scleropages formosus | | scientific name | +113543 | Arapaima | | scientific name | +113544 | arapaima | | genbank common name | +113544 | Arapaima gigas (Schinz, 1822) | | authority | +113544 | Arapaima gigas | | scientific name | +113544 | paiche | | common name | +113544 | pirarucu | | common name | +113544 | Sudis gigas Schinz, 1822 | | authority | +113544 | Sudis gigas | | synonym | +114085 | Corvus yncas Boddaert, 1783 | | authority | +114085 | Corvus yncas | | synonym | +114085 | Cyanocorax yncas (Boddaert, 1783) | | authority | +114085 | Cyanocorax yncas | | scientific name | +114085 | green jay | | genbank common name | +114085 | Inca jay | | common name | +114108 | Hoplosternum | | scientific name | +114109 | atipa | | genbank common name | +114109 | brown hoplo | | common name | +114109 | Callichthys littoralis Hancock, 1828 | | authority | +114109 | Callichthys littoralis | | synonym | +114109 | hassar | | common name | +114109 | Hoplosternum littorale (Hancock, 1828) | | authority | +114109 | Hoplosternum littorale | | scientific name | +114277 | spotted fever group | | scientific name | +116049 | black-and-gold salamander | | common name | +116049 | Bolitoglossa (Bolitoglossa) mexicana | | synonym | +116049 | Bolitoglossa mexicana Dumeril, Bibron & Dumeril, 1854 | | authority | +116049 | Bolitoglossa mexicana | | scientific name | +116049 | galliwasp | | common name | +116049 | Geotriton mexicana | | synonym | +116049 | Mexican mushroom-tongued salamander | | common name | +116049 | Mexican mushroomtongue salamander | | genbank common name | +116049 | Oedipus mexicanus | | synonym | +116049 | Pseudotriton mexicanus | | synonym | +116049 | Salamandra mexicana | | synonym | +116049 | Spelerpes mexicana | | synonym | +116049 | Spelerpes mexicanum | | synonym | +116049 | Spelerpes mexicanus | | synonym | +116057 | blue-thighed treefrog | | genbank common name | +116057 | Chirodryas raniformis Keferstein, 1867 | | authority | +116057 | Chirodryas raniformis | | synonym | +116057 | Ranoidea raniformis (Keferstein, 1867) | | authority | +116057 | Ranoidea raniformis | | scientific name | +116057 | southern bell frog | | common name | +116150 | Papilio aegeria Linnaeus, 1758 | | authority | +116150 | Papilio aegeria | | synonym | +116150 | Pararge aegeria (Linnaeus, 1758) | | authority | +116150 | Pararge aegeria | | scientific name | +116150 | speckled wood butterfly | | genbank common name | +116150 | speckled wood | | common name | +117858 | Dipturus | | scientific name | +117858 | Dipturus (Zearaja) | | synonym | +117858 | Raja (Zearaja) | | synonym | +117858 | Zearaja | | synonym | +117858 | Zearaja Whitley, 1939 | | authority | +117864 | Okamejei | | scientific name | +117870 | Bathyraja | | scientific name | +117883 | Trygonorrhina | | scientific name | +117934 | Moxostoma | | scientific name | +117934 | Scartomyzon | | synonym | +118137 | Niwaella | | scientific name | +118138 | Ajime dojo | | common name | +118138 | Ajime loach | | genbank common name | +118138 | Cobitis delicata Niwa, 1937 | | authority | +118138 | Cobitis delicata | | synonym | +118138 | Niwaella delicata (Niwa, 1937) | | authority | +118138 | Niwaella delicata | | scientific name | +118144 | Moringua | | scientific name | +118156 | Ophisurus | | scientific name | +118169 | Nemichthys | | scientific name | +118230 | Archey's frog | | common name | +118230 | Coromandel frog | | genbank common name | +118230 | Coromandel New Zealand frog | | common name | +118230 | Leioaspetos archeyi | | synonym | +118230 | Leiopelma archeyi | | scientific name | +118230 | Leiopelma archeyi Turbott, 1942 | | authority | +118234 | Sitana | | scientific name | +118235 | Bahirs fan-throated lizard | | common name | +118235 | Pondichry fan throated lizard | | genbank common name | +118235 | Sarada ponticeriana | | synonym | +118235 | Sitana bahiri Amarasinghe et al. 2015 | | authority | +118235 | Sitana bahiri | | synonym | +118235 | Sitana ponticeriana Cuvier, 1829 | | authority | +118235 | Sitana ponticeriana | | scientific name | +118643 | Ateles belzebuth chamek (Humboldt, 1812) | | authority | +118643 | Ateles belzebuth chamek | | synonym | +118643 | Ateles chamek (Humboldt, 1812) | | synonym | +118643 | Ateles chamek | | scientific name | +118643 | Ateles paniscus chamek | | synonym | +118643 | black spider monkey | | genbank common name | +118643 | Chamek spider monkey | | common name | +118643 | Simia chamek Humboldt, 1812 | | authority | +118643 | Simia chamek | | synonym | +118688 | Cyclura lewisi Grant, 1940 | | authority | +118688 | Cyclura lewisi | | scientific name | +118688 | Cyclura macleayi lewisi Grant 1940 | | authority | +118688 | Cyclura macleayi lewisi | | synonym | +118688 | Cyclura nubila lewisi | | synonym | +118688 | Grand Cayman blue iguana | | genbank common name | +118688 | Grand Cayman iguana | | common name | +119041 | Fugu xanthopterus | | synonym | +119041 | shimafugu | | common name | +119041 | Takifugu xanthopterus | | scientific name | +119041 | Takifugu xanthopterus (Temminck & Schlegel, 1850) | | authority | +119041 | Tetraodon xanthopterus | | synonym | +119041 | yellowfin puffer | | genbank common name | +119253 | Dryocampa | | scientific name | +119254 | Anisota rubicunda | | synonym | +119254 | Bombyx rubicunda Fabricius, 1793 | | authority | +119254 | Bombyx rubicunda | | synonym | +119254 | Dryocampa rubicunda | | scientific name | +119254 | green-striped mapleworm | | common name | +119254 | rosy maple moth | | genbank common name | +119281 | Pachysphinx Rothschild & Jordan, 1903 | | authority | +119281 | Pachysphinx | | scientific name | +119282 | big poplar sphinx | | genbank common name | +119282 | modest sphinx | | common name | +119282 | Pachysphinx modesta | | scientific name | +119282 | Smerinthus modesta Harris, 1839 | | authority | +119282 | Smerinthus modesta | | synonym | +119410 | Gallirex | | scientific name | +119430 | Hippospongia | | scientific name | +119431 | Hippospongia communis (Lamarck, 1814) | | authority | +119431 | Hippospongia communis | | scientific name | +119431 | honeycomb | | common name | +119431 | horse sponge | | genbank common name | +119431 | Spongia communis Lamarck, 1814 | | authority | +119431 | Spongia communis | | synonym | +119487 | Siniperca | | scientific name | +119488 | Chautsi bass | | common name | +119488 | Chinese bass | | common name | +119488 | Chinese perch | | common name | +119488 | mandarin fish | | genbank common name | +119488 | Perca chuatsi Basilewsky, 1855 | | authority | +119488 | Perca chuatsi | | synonym | +119488 | Siniperca chuatsi (Basilewsky, 1855) | | authority | +119488 | Siniperca chuatsi | | scientific name | +119608 | East Siberian gull | | common name | +119608 | Larus argentatus vegae | | synonym | +119608 | Larus vegae Palmen, 1887 | | authority | +119608 | Larus vegae | | scientific name | +119608 | Vega gull | | genbank common name | +119609 | caspian gull | | genbank common name | +119609 | eastern Caspian gull | | common name | +119609 | Larus argentatus cachinnans | | synonym | +119609 | Larus cachinnans cachinnans | | synonym | +119609 | Larus cachinnans Pallas, 1811 | | authority | +119609 | Larus cachinnans | | scientific name | +119683 | Argyrops | | scientific name | +119705 | Chrysoblephus | | scientific name | +119711 | Chrysophrys tumifrons | | synonym | +119711 | Chrysophrys tumifrons Temminck & Schlegel, 1843 | | authority | +119711 | crimson seabream | | common name | +119711 | Dentex tumifrons | | synonym | +119711 | Dentex tumifrons (Temminck & Schlegel, 1843) | | authority | +119711 | Evynnis japonica | | synonym | +119711 | Evynnis japonica Tanaka, 1931 | | authority | +119711 | Evynnis tumifrons | | scientific name | +119711 | Evynnis tumifrons (Temminck & Schlegel, 1843) | | authority | +119711 | Taius tumifrons | | synonym | +119711 | yellowback seabream | | genbank common name | +119714 | Evynnis | | scientific name | +119724 | Nemipterus | | scientific name | +119737 | Pomadasys | | scientific name | +119745 | Scolopsis | | scientific name | +119768 | Stephopaedes | | scientific name | +119769 | Boulenger's earless toad | | common name | +119769 | Bufo anotis Boulenger, 1907 | | authority | +119769 | Bufo anotis | | synonym | +119769 | Chirinda forest toad | | genbank common name | +119769 | Chirinda toad | | common name | +119769 | Mashonaland toad | | common name | +119769 | Mertensophryne anotis (Boulenger, 1907) | | authority | +119769 | Mertensophryne anotis | | scientific name | +119769 | Mertensophryne (Stephopaedes) anotis | | synonym | +120218 | Gila bicolor obesa | | synonym | +120218 | Lahontan Creek tui chub | | genbank common name | +120218 | Lahontan tui chub | | common name | +120218 | Siphateles bicolor obesa (Girard, 1856) | | authority | +120218 | Siphateles bicolor obesa | | scientific name | +120218 | Siphateles bicolor obesus | | synonym | +120495 | Babina adenopleura | | scientific name | +120495 | East China music frog | | common name | +120495 | Fuchacho frog | | common name | +120495 | Hylarana adenopleura | | synonym | +120495 | Hylarana (Nidirana) adenopleura | | synonym | +120495 | Nidirana adenopleura | | synonym | +120495 | olive frog | | genbank common name | +120495 | Rana adenopleura Boulenger, 1909 | | authority | +120495 | Rana adenopleura | | synonym | +120497 | Altirana | | synonym | +120497 | Chaparana | | synonym | +120497 | Nanorana | | scientific name | +120502 | Hejiang spiny frog | | common name | +120502 | Nanorana boulengeri | | synonym | +120502 | Paa boulengeri (Guenter, 1889) | | authority | +120502 | Paa boulengeri | | synonym | +120502 | Quasipaa boulengeri (Guenter, 1889) | | authority | +120502 | Quasipaa boulengeri | | scientific name | +120502 | Quasipaa robertingerii | | synonym | +120502 | Rana boulengeri Gunther, 1889 | | authority | +120502 | Rana boulengeri | Rana boulengeri | synonym | +120502 | spiny-bellied frog | | genbank common name | +121155 | Odorrana | | scientific name | +121155 | Rana (Odorrana) | | synonym | +121156 | green odorous frog | | genbank common name | +121156 | Huia margaretae | | synonym | +121156 | Margareta's frog | | common name | +121156 | Margaret frog | | common name | +121156 | Odorrana margaretae (Liu, 1950) | | authority | +121156 | Odorrana margaretae | | scientific name | +121156 | Rana margaretae Liu, 1950 | | authority | +121156 | Rana margaretae | | synonym | +121158 | Hejiang frog | | common name | +121158 | Hejiang odorous frog | | genbank common name | +121158 | Odorrana hejiangensis | | scientific name | +121158 | Rana hejiangensis Deng and Yu, 1992 | | authority | +121158 | Rana hejiangensis Deng & Yu, 1992 | | authority | +121158 | Rana hejiangensis | | synonym | +121160 | green cascade frog | | genbank common name | +121160 | green mountain frog | | common name | +121160 | large odorous frog | large odorous frog | common name | +121160 | Odorrana livida | | scientific name | +121160 | Polypedates lividus Blyth, 1856 | | authority | +121160 | Polypedates lividus | | synonym | +121160 | Rana livida (Blyth, 1856) | | authority | +121160 | Rana livida | | synonym | +121164 | Pelophylax | | scientific name | +121165 | Hubei frog | | common name | +121165 | Hubei gold-striped pond frog | | genbank common name | +121165 | Hylarana hubeiensis | | synonym | +121165 | Pelophylax hubeiensis | | scientific name | +121165 | Rana hubeiensis Fei & Ye, 1982 | | authority | +121165 | Rana hubeiensis | | synonym | +121168 | Glandirana tientaiensis (Chang, 1933) | | authority | +121168 | Glandirana tientaiensis | | scientific name | +121168 | Rana tientaiensis Boring & Chang, 1933 | | authority | +121168 | Rana tientaiensis Chang, 1933 | | authority | +121168 | Rana tientaiensis | | synonym | +121168 | Rugosa tiantaiensis | | synonym | +121168 | Rugosa tientaiensis (Chang, 1933) | | authority | +121168 | Rugosa tientaiensis | | synonym | +121168 | Tiantai frog | | common name | +121168 | Tientai frog | | common name | +121168 | Tientai rough-skinned frog | | genbank common name | +121175 | Pseudoamolops | | synonym | +121175 | Rana Dubois 1992 | | authority | +121175 | Rana | Rana | scientific name | +121178 | Pantherana | | scientific name | +121227 | Phthirus | | synonym | +121227 | Phtirus | | synonym | +121227 | Pthirus Leach, 1815 | | authority | +121227 | Pthirus | | scientific name | +121228 | crab louse | | genbank common name | +121228 | genital louse | | common name | +121228 | Pediculus pubis Linnaeus, 1758 | | authority | +121228 | Pediculus pubis | | synonym | +121228 | Phthirus pubis | | synonym | +121228 | Phtirus pubis | | synonym | +121228 | Pthirus pubis (Linnaeus, 1758) | | authority | +121228 | Pthirus pubis | | scientific name | +121228 | public louse | | common name | +121236 | Aquarana | | scientific name | +121281 | Gymnothorax | | scientific name | +121327 | Erythrolamprus | | scientific name | +121327 | Erythrolamprus Wagler, 1830 | | authority | +121327 | Liophis | | synonym | +121327 | Umbrivaga | | synonym | +121350 | blind ground snake | | genbank common name | +121350 | Coluber typhlus Linnaeus, 1758 | | authority | +121350 | Coluber typhlus | | synonym | +121350 | Erythrolamprus typhlus | | scientific name | +121350 | Liophis typhlus | | synonym | +121350 | velvet swampsnake | | common name | +121400 | Gallirex johnstoni | | scientific name | +121400 | Gallirex johnstoni (Sharpe, 1901) | | authority | +121400 | Gallirex johnstoni Sharpe, 1901 | | authority | +121400 | Johnston's turaco | | common name | +121400 | Ruwenzori turaco | | genbank common name | +121400 | Ruwenzorornis johnstoni | | synonym | +121400 | Tauraco johnstoni | | synonym | +121835 | Cacopsylla Ossiannilsson, 1970 | | authority | +121835 | Cacopsylla | | scientific name | +121839 | Cacopsylla pyri (Linnaeus, 1758) | | authority | +121839 | Cacopsylla pyri | | scientific name | +121839 | European pear sucker | | common name | +121839 | pear psylla | | common name | +121839 | pear psyllid | pear psyllid | genbank common name | +121839 | Psylla pyri | | synonym | +121869 | common tree frog | | common name | +121869 | European tree frog | | genbank common name | +121869 | Hyla arborea | | scientific name | +121869 | Rana arborea Linnaeus, 1758 | | authority | +121869 | Rana arborea | | synonym | +122765 | Presbytis cristata | | synonym | +122765 | silvered leaf monkey | | common name | +122765 | Silvery lutung | | genbank common name | +122765 | Simia cristata Raffles, 1821 | | authority | +122765 | Simia cristata | | synonym | +122765 | Trachypithecus cristatus (Raffles, 1821) | | authority | +122765 | Trachypithecus cristatus | | scientific name | +123222 | Cypselurus | | scientific name | +123242 | Triphoturus | | scientific name | +123243 | highseas lampfish | | genbank common name | +123243 | Myctophum nigrescens Brauer, 1904 | | authority | +123243 | Myctophum nigrescens | | synonym | +123243 | Triphoturus nigrescens (Brauer, 1904) | | authority | +123243 | Triphoturus nigrescens | | scientific name | +123243 | vagabond lanternfish | | common name | +123332 | Diogenichthys | | scientific name | +123333 | Atlantic lanternfish | | common name | +123333 | Diogenichthys atlanticum | | synonym | +123333 | Diogenichthys atlanticus | | scientific name | +123333 | Diogenichthys atlanticus (Taning, 1928) | | authority | +123333 | Diogenichthys sp. CBM:ZF:14796 | | synonym | +123333 | longfin lanternfish | | genbank common name | +123333 | Myctophum laternatum atlanticum | | synonym | +123333 | Myctophum laternatum atlanticum Taning, 1928 | | authority | +123654 | Muscisaxicola | | scientific name | +123659 | Muscisaxicola alpina grisea | | synonym | +123659 | Muscisaxicola griseus | | scientific name | +123659 | Muscisaxicola griseus Taczanowski, 1884 | | authority | +123659 | plain-capped ground-tyrant | | common name | +123659 | Taczanowski's ground-tyrant | | genbank common name | +123717 | Hypoatherina | | scientific name | +124104 | Carlia coensis | | synonym | +124104 | Coen rainbow-skink | | common name | +124104 | Coen rainbow skink | | genbank common name | +124104 | Leiolopisma coense Mitchell, 1953 | | authority | +124104 | Leiolopisma coense | | synonym | +124104 | Liburnascincus coensis | | scientific name | +125062 | Mitu | | scientific name | +125072 | Pipile | | scientific name | +125246 | Bufo angusticeps Smith, 1848 | | authority | +125246 | Bufo angusticeps | | synonym | +125246 | Cape sand toad | | common name | +125246 | common Cape toad | | common name | +125246 | narrow-headed toad | | common name | +125246 | sand toad | | genbank common name | +125246 | Vandijkophrynus angusticeps | | scientific name | +125246 | Vandijkophrynus angusticeps (Smith, 1848) | | authority | +125247 | Bufo dombensis Bocage, 1895 | | authority | +125247 | Bufo dombensis dombensis | | synonym | +125247 | Bufo dombensis | | synonym | +125247 | Dombe pygmy toad | | genbank common name | +125247 | Dombe toad | | common name | +125247 | Poyntonophrynus dombensis (Bocage, 1895) | | authority | +125247 | Poyntonophrynus dombensis | | scientific name | +125252 | Amietophrynus lemairii | | synonym | +125252 | Bufo lemairei | | synonym | +125252 | Bufo lemairii Boulenger, 1901 | | authority | +125252 | Bufo lemairii | | synonym | +125252 | Lemaire's toad | | common name | +125252 | Pweto toad | | common name | +125252 | Sclerophrys lemairii (Boulenger, 1901) | | authority | +125252 | Sclerophrys lemairii | | scientific name | +125252 | yellow swamp toad | | genbank common name | +125253 | Bufo lindneri Mertens, 1955 | | authority | +125253 | Bufo lindneri | | synonym | +125253 | Dar-es-Salaam toad | | genbank common name | +125253 | Lindner's dwarf toad | | common name | +125253 | Mertensophryne lindneri (Mertens, 1955) | | authority | +125253 | Mertensophryne lindneri | | scientific name | +125854 | Bufo gariepensis inyangae Poynton, 1963 | | authority | +125854 | Bufo gariepensis inyangae | | synonym | +125854 | Bufo inyangae Poynton, 1963 | | authority | +125854 | Bufo inyangae | | synonym | +125854 | Inyangani toad | | common name | +125854 | Inyanga toad | | genbank common name | +125854 | Vandijkophrynus inyangae (Poynton, 1963) | | authority | +125854 | Vandijkophrynus inyangae | | scientific name | +125862 | Copsychus | | scientific name | +126328 | Coris | Coris | scientific name | +126328 | Coris Lacepede, 1801 | | authority | +126587 | Nyctixalus | | scientific name | +126670 | Chlorurus | | scientific name | +126965 | Theloderma | | scientific name | +126966 | Kwangsi warty treefrog | | common name | +126966 | Rhacophorus corticalis Boulenger, 1903 | | authority | +126966 | Rhacophorus corticalis | | synonym | +126966 | Rhacophorus leprosus kwangsiensis Liu & Hu, 1962 | | authority | +126966 | Rhacophorus leprosus kwangsiensis | | synonym | +126966 | Theloderma corticale (Boulenger, 1903) | | authority | +126966 | Theloderma corticale | | scientific name | +126966 | Theloderma kwangsiense (Liu & Hu, 1962) | | authority | +126966 | Theloderma kwangsiense | | synonym | +126966 | Theloderma kwangsiensis | | synonym | +126966 | Theloderma leporosa kwangsiensis | | synonym | +126966 | Tonkin bug-eyed frog | | genbank common name | +127010 | Fejervarya | | scientific name | +127010 | Zakerana | | synonym | +127020 | Chalcorana chalconota (Schlegel, 1837) | | authority | +127020 | Chalcorana chalconota | | synonym | +127020 | copper-cheeked frog | | genbank common name | +127020 | Hydrophylax chalconotus | | synonym | +127020 | Hyla chalconotus Schlegel, 1837 | | authority | +127020 | Hyla chalconotus | | synonym | +127020 | Hylarana chalconota | | scientific name | +127020 | Rana chalconota (Schlegel, 1837) | | authority | +127020 | Rana chalconota | | synonym | +127020 | Schlegel's frog | | common name | +127020 | Schlegel's Java frog | | common name | +127021 | black-striped frog | | genbank common name | +127021 | Hylarana menglaensis Fei, Ye & Xie, 2008 | | authority | +127021 | Hylarana menglaensis | | synonym | +127021 | Hylarana nigrovittata (Blyth, 1856) | | authority | +127021 | Hylarana nigrovittata | | scientific name | +127021 | Lymnodytes nigrovittatus Blyth, 1856 | | authority | +127021 | Lymnodytes nigrovittatus | | synonym | +127021 | Mengla frog | | common name | +127021 | Rana nigrovittata (Blyth, 1856) | | authority | +127021 | Rana nigrovittata | | synonym | +127021 | Sylvirana menglaensis | | synonym | +127021 | Sylvirana nigrovittata (Blyth, 1856) | | authority | +127021 | Sylvirana nigrovittata | | synonym | +127028 | Sphaerotheca | Sphaerotheca | scientific name | +127079 | band sand frog | | common name | +127079 | clumsy-looking burrowing frog | | common name | +127079 | Indian burrowing frog | | genbank common name | +127079 | Pyxicephalus breviceps | | synonym | +127079 | Rana breviceps Schneider, 1799 | | authority | +127079 | Rana breviceps | | synonym | +127079 | short-headed burrowing frog | | common name | +127079 | Sphaerotheca breviceps (Schneider, 1799) | | authority | +127079 | Sphaerotheca breviceps | | scientific name | +127079 | Sphaerotheca pluvialis (Schneider, 1799) | | authority | +127079 | Sphaerotheca pluvialis | | synonym | +127079 | Tomopterna breviceps | | synonym | +127175 | Burmese whipping frog | | genbank common name | +127175 | Polypedates mutus | | scientific name | +127175 | Polypedates mutus (Smith, 1940) | | authority | +127175 | Rhacophorus mutus Smith, 1940 | | authority | +127175 | Rhacophorus mutus | | synonym | +127175 | vocal sacless treefrog | | common name | +127313 | Boloria Moore, 1900 | | authority | +127313 | Boloria | | scientific name | +127345 | Kallima | | scientific name | +127629 | Hildebrandtia | Hildebrandtia | scientific name | +127641 | Hildebrandtia ornata (Peters, 1878) | | authority | +127641 | Hildebrandtia ornata | | scientific name | +127641 | ornate burrowing frog | | common name | +127641 | ornate frog | ornate frog | genbank common name | +127641 | Pyxicephalus ornatus Peters, 1878 | | authority | +127641 | Pyxicephalus ornatus | | synonym | +127641 | Rana ornata | | synonym | +127645 | eastern groove-crowned bullfrog | | common name | +127645 | Ethiopia Peters frog | | common name | +127645 | Euphlyctis occipitalis | | synonym | +127645 | groove-crowned bullfrog | | genbank common name | +127645 | Hoplobatrachus occipitalis (Gunther, 1858) | | authority | +127645 | Hoplobatrachus occipitalis | | scientific name | +127645 | Limnonectes (Hoplobatrachus) occipitalis | | synonym | +127645 | Limnonectes occipitalis | | synonym | +127645 | Rana occipitalis Gunther, 1858 | | authority | +127645 | Rana occipitalis | | synonym | +127654 | plain grass frog | | common name | +127654 | Ptychadena anchietae (Bocage, 1868) | | authority | +127654 | Ptychadena anchietae | | scientific name | +127654 | Rana anchietae Bocage, 1868 | | authority | +127654 | Rana anchietae | | synonym | +127654 | savanna ridged frog | | genbank common name | +127971 | Pangio | | scientific name | +127972 | Acanthophthalmus kuhli | | synonym | +127972 | Cobitis kuhlii | | synonym | +127972 | Cobitis kuhlii Valenciennes, 1846 | | authority | +127972 | Cobitis kuhli | | synonym | +127972 | coolie loach | | genbank common name | +127972 | Pangio kuhlii | | scientific name | +127972 | Pangio kuhlii (Valenciennes, 1846) | | authority | +127972 | striped loach | | common name | +128105 | Cayenne spiny rat | | common name | +128105 | Echimys cayennensis | | synonym | +128105 | Echimys guyannensis | | synonym | +128105 | Guyenne spiny-rat | | genbank common name | +128105 | Proechimys cayennensis (Desmarest, 1817) | | authority | +128105 | Proechimys cayennensis | | synonym | +128105 | Proechimys guyannensis (Geoffroy, 1803) | | authority | +128105 | Proechimys guyannensis | | scientific name | +128105 | Proechimys warreni | | synonym | +129005 | Hoplobatrachus crassus (Jerdon, 1854) | | authority | +129005 | Hoplobatrachus crassus | | scientific name | +129005 | Jerdons bull frog | | common name | +129005 | Jerdons bullfrog | | genbank common name | +129005 | Limnonectes crassus | | synonym | +129005 | Rana crassa Jerdon, 1853 | | authority | +129005 | Rana crassa | | synonym | +129005 | Rana tigrina crassa | | synonym | +129005 | South Indian bullfrog | | common name | +129007 | Indirana | | scientific name | +129008 | Indian painted frog | | common name | +129008 | Kaloula pulchra taprobanica | | synonym | +129008 | Kaloula sp. Ksp.-Bd | | includes | +129008 | Kaloula taprobanica Parker, 1934 | | authority | +129008 | Kaloula taprobanica | | scientific name | +129008 | Sri Lankan bullfrog | | genbank common name | +129008 | Sri Lankan painted frog | | common name | +129015 | Micrixalus | | scientific name | +129016 | brown tropical frog | | common name | +129016 | dusky torrent frog | | genbank common name | +129016 | Ixalus fuscus Boulenger, 1882 | | authority | +129016 | Ixalus fuscus | | synonym | +129016 | Micrixalus fuscus (Boulenger, 1882) | | authority | +129016 | Micrixalus fuscus | | scientific name | +129016 | Staurois fuscus | | synonym | +129017 | Microhyla | | scientific name | +129020 | Nannobatrachus | | synonym | +129020 | night frogs | | genbank common name | +129020 | Nyctibatrachus | | scientific name | +129025 | Karnataka bubble-nest frog | | genbank common name | +129025 | Kirtixalus charius | | synonym | +129025 | Philautus charius Rao, 1937 | | authority | +129025 | Philautus charius | | synonym | +129025 | Pseudophilautus charius | | synonym | +129025 | Raorchestes charius | | scientific name | +129025 | Seshachar's bush frog | | common name | +129028 | Clinotarsus | | scientific name | +129028 | Nasirana | | synonym | +129029 | bicolored frog | | genbank common name | +129029 | Clinotarsus curtipes | | scientific name | +129029 | Malabar frog | | common name | +129029 | Rana curtipes Jerdon, 1853 | | authority | +129029 | Rana curtipes Jerdon, 1854 | | authority | +129029 | Rana curtipes | | synonym | +129072 | Tylosurus | | scientific name | +129077 | Belona crocodila Peron & Lesueur, 1821 | | authority | +129077 | Belona crocodila | | synonym | +129077 | giant needlefish | | common name | +129077 | hound needlefish | hound needlefish | genbank common name | +129077 | Strongylura gigantea | | synonym | +129077 | Strongylura gigantea (Temminck & Schlegel, 1846) | | authority | +129077 | Tylosurus crocodilus (Peron & Lesueur, 1821) | | authority | +129077 | Tylosurus crocodilus | | scientific name | +129107 | Xenentodon | | scientific name | +129108 | Asian needlefish | | common name | +129108 | Esox cancila Hamilton, 1822 | | authority | +129108 | Esox cancila | | synonym | +129108 | freshwater garfish | | genbank common name | +129108 | silver needlefish | | common name | +129108 | Xenentodon cancila (Hamilton, 1822) | | authority | +129108 | Xenentodon cancila | | scientific name | +129216 | Luschan's salamander | | common name | +129216 | Lycian salamander | | genbank common name | +129216 | Lyciasalamandra luschani | | scientific name | +129216 | Lyciasalamandra luschani (Steindachner, 1891) | | authority | +129216 | Mertensiella luschani | | synonym | +129216 | Molge luschani Steindachner, 1891 | | authority | +129216 | Molge luschani | | synonym | +129216 | Salamandra luschani | | synonym | +129237 | Bolitoglossa engelhardti (Schmidt, 1936) | | authority | +129237 | Bolitoglossa engelhardti | | scientific name | +129237 | Bolitoglossa (Magnadigita) engelhardti | | synonym | +129237 | Engelhardt's mushroomtongue salamander | | genbank common name | +129237 | Engelhardt's salamander | | common name | +129237 | Magnadigita engelhardti | | synonym | +129237 | Oedipus engelhardti Schmidt, 1936 | | authority | +129237 | Oedipus engelhardti | | synonym | +129241 | Bolitoglossa (Magnadigita) morio | | synonym | +129241 | Bolitoglossa morio (Cope, 1869) | | authority | +129241 | Bolitoglossa morio | | scientific name | +129241 | Cope's mushroomtongue salamander | | genbank common name | +129241 | Cope's salamander | | common name | +129241 | Geotriton morio | | synonym | +129241 | Magnadigita morio | | synonym | +129241 | Oedipus morio Cope, 1869 | | authority | +129241 | Oedipus morio | | synonym | +129241 | Spelerpes morio | | synonym | +129398 | Appias | | scientific name | +129398 | Glutophrissa | | synonym | +129398 | Phrissura | | synonym | +129398 | puffin and albatross butterflies | | common name | +129398 | puffins and albatrosses | | genbank common name | +129398 | Udaiana | | synonym | +129788 | Japanese littleneck | | common name | +129788 | Manila clam | | genbank common name | +129788 | Ruditapes philippinarum (Adams & Reeve, 1850) | | authority | +129788 | Ruditapes philippinarum | | scientific name | +129788 | Ruditapes (Venerupis) philippinarum | | synonym | +129788 | Tapes japonica | | synonym | +129788 | Tapes philippinarum | | synonym | +129788 | Venerupis japonica | | synonym | +129788 | Venerupis philippinarum | | synonym | +129788 | Venerupis (Ruditapes) philippinarum | | synonym | +129788 | Venus philippinarum Adams & Reeve, 1850 | | authority | +129788 | Venus philippinarum | | synonym | +129884 | crocodile newts | | genbank common name | +129884 | Triturus (Tylototriton) | | synonym | +129884 | Tylototriton asperrimus group | | synonym | +129884 | Tylototriton | | scientific name | +129884 | Tylototriton verrucosus group | | synonym | +129884 | Yaotriton | | in-part | +129885 | Pleurodeles taliangensis | | synonym | +129885 | Pleurodeles (Tylototriton) taliangensis | | synonym | +129885 | Pusakang crocodile newt | | common name | +129885 | Taliang knobby newt | | genbank common name | +129885 | Tylototriton taliangensis Liu, 1950 | | authority | +129885 | Tylototriton taliangensis | | scientific name | +129885 | Tylototriton (Tylototriton) verrucosus | | synonym | +130717 | Archiaphyosemion | | scientific name | +130720 | Enneapterygius | | scientific name | +130720 | Rosenblatella | | synonym | +130738 | Pachydactylus | | scientific name | +130786 | Kottigehar bubble-nest frog | | common name | +130786 | Kottigehar bush frog | | common name | +130786 | Kottigehar torrent frog | | genbank common name | +130786 | Micrixalus kottigeharensis (Rao, 1937) | | authority | +130786 | Micrixalus kottigeharensis | | scientific name | +130786 | Philautus kottigeharensis Rao, 1937 | | authority | +130786 | Philautus kottigeharensis | | synonym | +130825 | black-lipped pika | | genbank common name | +130825 | Lagomys curzoniae Hodgson, 1858 | | authority | +130825 | Lagomys curzoniae | | synonym | +130825 | Ochotona curzonae | | synonym | +130825 | Ochotona curzoniae | | scientific name | +130825 | plateau pika | | common name | +131645 | Galerucella nymphaeae (Linnaeus, 1758) | | authority | +131645 | Galerucella nymphaeae | | scientific name | +131645 | Pyrrhalta nymphaeae | | synonym | +131645 | waterlily leaf beetle | | common name | +131645 | water lily leaf beetle | water lily leaf beetle | genbank common name | +132459 | Dolichos montanus Lour., 1790 | | authority | +132459 | Dolichos montanus | | synonym | +132459 | Pueraria lobata var. montana (Lour.) Maesen, 1985 | | authority | +132459 | Pueraria lobata var. montana | | synonym | +132459 | Pueraria montana (Lour.) Merr., 1935 | | authority | +132459 | Pueraria montana | | scientific name | +132459 | Pueraria tonkinensis Gagnep., 1916 | | authority | +132459 | Pueraria tonkinensis | | synonym | +132587 | Anas fabalis Latham, 1787 | | authority | +132587 | Anas fabalis | | synonym | +132587 | Anser albifrons fabalis | | synonym | +132587 | Anser fabalis (Latham, 1787) | | authority | +132587 | Anser fabalis | | scientific name | +132587 | Bean goose | | common name | +132587 | Saatgans | | common name | +132587 | Taiga bean goose | | genbank common name | +132696 | Argynnis epithore Edwards, 1864 | | authority | +132696 | Argynnis epithore | | synonym | +132696 | Boloria epithore | | scientific name | +132696 | Brenthis epithore | | synonym | +132696 | Clossiana epithore | | synonym | +132696 | Pacific fritillary | | common name | +132696 | western meadow fritillary | | genbank common name | +132697 | Coenonympha tullia (Muller, 1764) | | authority | +132697 | Coenonympha tullia | | scientific name | +132697 | common ringlet | | genbank common name | +132697 | large heath | | common name | +132697 | Papilio tullia Muller, 1764 | | authority | +132697 | Papilio tullia | | synonym | +132699 | Euphilotes | | scientific name | +132706 | Papilio phoebus Fabricius, 1793 | | authority | +132706 | Papilio phoebus | | synonym | +132706 | Parnassius phoebus (Fabricius, 1793) | | authority | +132706 | Parnassius phoebus | | scientific name | +132706 | Phoebus parnassian | | common name | +132706 | small apollo | | genbank common name | +132707 | Proserpinus Hubner, 1819 | | authority | +132707 | Proserpinus | | scientific name | +132708 | Clark's day sphinx | | genbank common name | +132708 | Clark's sphinx | | common name | +132708 | Proserpinus clarkiae (Boisduval, 1852) | | authority | +132708 | Proserpinus clarkiae | | scientific name | +132708 | Pterogon clarkiae Boisduval, 1852 | | authority | +132708 | Pterogon clarkiae | | synonym | +132709 | Zerynthia | | scientific name | +132710 | Papilio rumina Linnaeus, 1758 | | authority | +132710 | Papilio rumina | | synonym | +132710 | southern festoon | | genbank common name | +132710 | Spanish festoon | | common name | +132710 | Zerynthia rumina (Linnaeus, 1758) | | authority | +132710 | Zerynthia rumina | | scientific name | +133894 | Farfantepenaeus | | synonym | +133894 | Fenneropenaeus | | synonym | +133894 | Litopenaeus | | synonym | +133894 | Marsupenaeus | | synonym | +133894 | Melicertus | | synonym | +133894 | Penaeus | | scientific name | +134396 | Sesamia | | scientific name | +134470 | Stramonita | | scientific name | +134471 | Buccinum haemastoma Linnaeus, 1767 | | authority | +134471 | Buccinum haemastoma | | synonym | +134471 | Florida rocksnail | | genbank common name | +134471 | oyster drill | | common name | +134471 | Stramonita haemastoma (Linnaeus, 1767) | | authority | +134471 | Stramonita haemastoma | | scientific name | +134471 | Thais haemastoma | | synonym | +134471 | Thais (Stramonita) haemastoma | | synonym | +134629 | Plectropomus | | scientific name | +134700 | arum frog | | common name | +134700 | arum lily frog | | genbank common name | +134700 | Eucnemis horstokii | | synonym | +134700 | Hyla horstockii Schlegel, 1837 | | authority | +134700 | Hyla horstockii | | synonym | +134700 | Hyperolius horstockii (Schlegel, 1837) | | authority | +134700 | Hyperolius horstockii | | scientific name | +134700 | Rappia horstockii | | synonym | +134700 | yellow-striped reed frog | yellow-striped reed frog | common name | +134759 | Gyrinophilus | | scientific name | +134759 | spring salamanders | | genbank common name | +134760 | Amblystoma porphyriticum | | synonym | +134760 | Geotriton porphyritica | | synonym | +134760 | Gyrinophilus danielsi polystictus | | synonym | +134760 | Gyrinophilus porphyriticus (Green, 1827) | | authority | +134760 | Gyrinophilus porphyriticus | | scientific name | +134760 | Pseudotriton porphyriticus | | synonym | +134760 | Salamandra porphyritica Green, 1827 | | authority | +134760 | Salamandra porphyritica | | synonym | +134760 | Spelerpes porphyriticus | | synonym | +134760 | spring salamander | | genbank common name | +134760 | Triton porphyriticus | | synonym | +134762 | Bolitoglossa rubra | | synonym | +134762 | Geotriton rubra | | synonym | +134762 | Molge rubra | | synonym | +134762 | Mycetoglossus ruber | | synonym | +134762 | Pseudotriton ruber | | scientific name | +134762 | Pseudotriton ruber (Sonnini de Manoncourt & Latreille, 1801) | | authority | +134762 | red salamander | red salamander | genbank common name | +134762 | Salamandra rubra | | synonym | +134762 | Spelerpes rubra | | synonym | +134762 | Triton rubra | | synonym | +134910 | Apodemus microps | | synonym | +134910 | Apodemus uralensis (Pallas, 1811) | | authority | +134910 | Apodemus uralensis | | scientific name | +134910 | Herb field mouse | | common name | +134910 | Mus uralensis Pallas, 1811 | | authority | +134910 | Mus uralensis | | synonym | +134910 | pygmy field mouse | | genbank common name | +134910 | Sylvaemus uralensis | | synonym | +134910 | Ural field mouse | | common name | +134919 | Pungitius | | scientific name | +135775 | Sillaginodes | | scientific name | +135776 | Australian whiting | | common name | +135776 | Isosillago punctata | | synonym | +135776 | King George whiting | | common name | +135776 | Sillaginodes punctatus (Cuvier, 1829) | | authority | +135776 | Sillaginodes punctatus | | scientific name | +135776 | Sillago punctata Cuvier, 1829 | | authority | +135776 | Sillago punctata | | synonym | +135776 | South Australian whiting | | common name | +135776 | spotted sillago | | common name | +135776 | spotted whiting | | genbank common name | +137062 | Barbodes | | scientific name | +138069 | Lysandra | | scientific name | +138070 | Adonis blue butterfly | | common name | +138070 | Adonis blue | | genbank common name | +138070 | Lysandra belargus | | synonym | +138070 | Lysandra bellargus (Rottemburg, 1775) | | authority | +138070 | Lysandra bellargus | | scientific name | +138070 | Papilio bellargus Rottemburg, 1775 | | authority | +138070 | Papilio bellargus | | synonym | +138070 | Polyommatus bellargus | | synonym | +138083 | Bufo macrocristatus | | synonym | +138083 | Bufo valliceps macrocristatus Firschein & Smith, 1957 | | authority | +138083 | Bufo valliceps macrocristatus | | synonym | +138083 | Cranopsis macrocristata | | synonym | +138083 | huge-crested toad | | genbank common name | +138083 | Incilius macrocristatus (Firschein & Smith, 1957) | | authority | +138083 | Incilius macrocristatus | | scientific name | +138083 | large-crested toad | large-crested toad | common name | +138083 | Ollotis macrocristata | | synonym | +138084 | Bufo campbelli Mendelson, 1994 | | authority | +138084 | Bufo campbelli | | synonym | +138084 | Campbell's forest toad | | common name | +138084 | Campbell's rainforest toad | | genbank common name | +138084 | Cranopsis campbelli | | synonym | +138084 | Incilius campbelli (Mendelson, 1994) | | authority | +138084 | Incilius campbelli | | scientific name | +138084 | Ollotis campbelli | | synonym | +138085 | Bufo nebulifer Girard, 1854 | | authority | +138085 | Bufo nebulifer | | synonym | +138085 | Gulf Coast toad | | genbank common name | +138085 | Incilius nebulifer (Girard, 1854) | | authority | +138085 | Incilius nebulifer | | scientific name | +138085 | nebulous toad | | common name | +139271 | diploxylon pines | | common name | +139271 | hard pines | | common name | +139271 | Pinus subgen. Pinus | | scientific name | +139973 | Archips Hubner, 1822 | | authority | +139973 | Archips | | scientific name | +140017 | Coluber triangulum Lacepede, 1789 | | authority | +140017 | Coluber triangulum | | synonym | +140017 | Lampropeltis sp. 2024d | | synonym | +140017 | Lampropeltis triangulum (LaCepede, 1789) | | authority | +140017 | Lampropeltis triangulum | | scientific name | +140017 | Lampropeltis triangulum temporalis | | includes | +140017 | milksnake | | common name | +140017 | milk snake | | genbank common name | +140444 | Lophura edwardsi hatinensis | | synonym | +140444 | Lophura edwardsi hatinensis Vo Quy, 1975 | | authority | +140444 | Lophura hatinhensis | | scientific name | +140444 | Lophura hatinhensis Vo Quy, 1975 | | authority | +140444 | Vietnamese pheasant | | genbank common name | +140444 | Vietnam fireback | | common name | +141838 | Probosciger | | scientific name | +141839 | goliath cockatoo | | common name | +141839 | palm cockatoo | | genbank common name | +141839 | Probosciger aterrimus (Gmelin, 1788) | | authority | +141839 | Probosciger aterrimus | | scientific name | +141839 | Probosciger atterimus | | synonym | +141839 | Psittacus aterrimus Gmelin, 1788 | | authority | +141839 | Psittacus aterrimus | | synonym | +141976 | eastern red-backed salamander | | common name | +141976 | northern red-backed salamander | | common name | +141976 | Plethodon cinereus (Green, 1818) | | authority | +141976 | Plethodon cinereus | | scientific name | +141976 | red-backed salamander | | genbank common name | +141976 | Salamandra cinerea Green, 1818 | | authority | +141976 | Salamandra cinerea | | synonym | +142466 | Aphelocoma californica | | scientific name | +142466 | Aphelocoma californica (Vigors, 1839) | | authority | +142466 | Aphelocoma coerulescens californica | | synonym | +142466 | California scrub jay | | common name | +142466 | Garrulus californicus | | synonym | +142466 | Garrulus californicus Vigors, 1839 | | authority | +142466 | Western scrub-jay | | genbank common name | +142475 | Poecile Kaup 1829 | | authority | +142475 | Poecile | | scientific name | +143020 | Blastophagus piniperda | | synonym | +143020 | common pine shoot beetle | | genbank common name | +143020 | larger pine shoot beetle | | common name | +143020 | Tomicus piniperda (Linnaeus, 1758) | | authority | +143020 | Tomicus piniperda | | scientific name | +143028 | Anableps | | scientific name | +143039 | Semaprochilodus | | scientific name | +143313 | Agassiz's thread-sail fish | | common name | +143313 | Chlorophthalmus agassizi Bonaparte, 1840 | | authority | +143313 | Chlorophthalmus agassizii | | synonym | +143313 | Chlorophthalmus agassizi | | scientific name | +143313 | shortnose greeneye | | genbank common name | +143329 | Crenimugil | | scientific name | +143330 | black-axil mullet | | common name | +143330 | Crenimugil crenilabis (Fabricius, 1775) | | authority | +143330 | Crenimugil crenilabis | | scientific name | +143330 | fringelip mullet | | genbank common name | +143330 | Mugil crenilabis Forsskal, 1775 | | authority | +143330 | Mugil crenilabis | | synonym | +143330 | warty-lipped mullet | | common name | +143350 | Chrysophrys major | | synonym | +143350 | Chrysophrys major Temminck & Schlegel, 1843 | | authority | +143350 | Pagrosomus major | | synonym | +143350 | Pagrus major | | scientific name | +143350 | Pagrus major (Temminck & Schlegel, 1843) | | authority | +143350 | red seabream | | genbank common name | +143350 | red tail | | common name | +143350 | Sparus major | | synonym | +143399 | Schistura | | scientific name | +143402 | Leptobotia | | scientific name | +143403 | Botia elongata Bleeker, 1870 | | authority | +143403 | Botia elongata | | synonym | +143403 | elongate loach | | common name | +143403 | imperial flower loach | | common name | +143403 | Leptobotia elongata (Bleeker, 1870) | | authority | +143403 | Leptobotia elongata | | scientific name | +143403 | queen loach | | common name | +143403 | royal clown loach | | genbank common name | +143421 | Hylambates rufus var. modesta | | synonym | +143421 | Hylambates rufus var. modesta Werner, 1898 | | authority | +143421 | Leptopelis modestus | | scientific name | +143421 | Leptopelis modestus (Werner, 1898) | | authority | +143421 | modest forest treefrog | | genbank common name | +143421 | plain tree frog | | common name | +143422 | Hylambates (Leptopelis) natalensis | | synonym | +143422 | Hylambates natalensis | | synonym | +143422 | Leptopelis natalensis | | scientific name | +143422 | Leptopelis natalensis (Smith, 1849) | | authority | +143422 | Natal forest treefrog | | common name | +143422 | Natal tree frog | | common name | +143422 | Polypedates natalensis Smith, 1849 | | authority | +143422 | Polypedates natalensis | | synonym | +143422 | raucous tree frog | | genbank common name | +143439 | common Indian tree-frog | | common name | +143439 | Hyla maculata Gray, 1830 | | authority | +143439 | Hyla maculata | Hyla maculata | synonym | +143439 | Indian tree frog | | common name | +143439 | Polypedates maculatus (Gray, 1833) | | authority | +143439 | Polypedates maculatus | | scientific name | +143439 | Rhacophorus maculatus | | synonym | +143439 | spotted tree frog | | common name | +143439 | spotted whipping frog | | genbank common name | +143442 | Kaffirland grassland frog | | common name | +143442 | Ptychadena oxyrhynchus | | scientific name | +143442 | Rana oxyrhynchus Smith, 1849 | | authority | +143442 | Rana oxyrhynchus | | synonym | +143442 | sharp-nosed frog | | genbank common name | +143442 | sharp-nosed grass frog | | common name | +143442 | sharp-nosed ridged frog | | common name | +143442 | sharp-nosed rocket frog | | common name | +143442 | sharp-snouted ridged frog | | common name | +143461 | Phrynobatrachus | | scientific name | +143461 | Phrynodon | | synonym | +143461 | puddle frogs | | genbank common name | +143502 | African foam-nest treefrog | | genbank common name | +143502 | Chirixalus rufescens | | synonym | +143502 | Chiromantis rufescens (Guenther, 1869) | | authority | +143502 | Chiromantis rufescens | | scientific name | +143502 | Polypedates rufescens Guenther, 1869 | | authority | +143502 | Polypedates rufescens Gunther, 1869 | | authority | +143502 | Polypedates rufescens | | synonym | +143502 | western foam-nest tree frog | | common name | +143526 | ant frog | | common name | +143526 | black-throated frog | | common name | +143526 | Diplopelma ornatum | | synonym | +143526 | Engystoma ornatum Dumeril and Bibron, 1841 | | authority | +143526 | Engystoma ornatum Dumeril & Bibron, 1841 | | authority | +143526 | Engystoma ornatum | | synonym | +143526 | Microhyla ornata (Dumeril and Bibron, 1841) | | authority | +143526 | Microhyla ornata | | scientific name | +143526 | ornate narrow-mouthed frog | | common name | +143526 | ornate narrowmouth frog | | common name | +143526 | ornate rice frog | | genbank common name | +143529 | broad-tailed day gecko | | genbank common name | +143529 | gold dust day gecko | | common name | +143529 | Pachydactylus laticauda Boettger, 1880 | | authority | +143529 | Pachydactylus laticauda | | synonym | +143529 | Phelsuma laticauda (Boettger, 1880) | | authority | +143529 | Phelsuma laticauda | | scientific name | +143533 | black-spotted tree frog | black-spotted tree frog | genbank common name | +143533 | Collett's whipping frog | | common name | +143533 | Polypedates colletti (Boulenger, 1890) | | authority | +143533 | Polypedates colletti | | scientific name | +143533 | Rhacophorus colletti Boulenger, 1890 | | authority | +143533 | Rhacophorus colletti | | synonym | +143535 | Ethiopia grassland frog | | genbank common name | +143535 | grassland ridged frog | | common name | +143535 | Ptychadena porosissima | | scientific name | +143535 | Rana porosissima Steindachner, 1867 | | authority | +143535 | Rana porosissima | | synonym | +143535 | striped grass frog | | common name | +143535 | three-striped grass frog | | common name | +143539 | Correlophus ciliatus Guichenot, 1866 | | authority | +143539 | Correlophus ciliatus | | scientific name | +143539 | crested gecko | | genbank common name | +143539 | eyelash gecko | | common name | +143539 | Rhacodactylus ciliatus | | synonym | +143558 | Breviceps | | scientific name | +143558 | rain frogs | | genbank common name | +143558 | short-headed frogs | | common name | +143558 | short-heads | | common name | +143562 | Dermatonotus | | scientific name | +143563 | Dermatonotus muelleri (Boettger, 1885) | | authority | +143563 | Dermatonotus muelleri | | scientific name | +143563 | Dermatonotus mulleri | | synonym | +143563 | Engystoma muelleri Boettger, 1885 | | authority | +143563 | Engystoma muelleri | | synonym | +143563 | Engystoma mulleri Boettger, 1885 | | authority | +143563 | Engystoma mulleri | | synonym | +143563 | Gastrophryne muelleri | | synonym | +143563 | Hypopachus muelleri | | synonym | +143563 | Mueller's termite frog | | genbank common name | +143563 | Muller's termite frog | | common name | +143566 | Elachistocleis | | scientific name | +143568 | Heleophryne purcelli regis | | synonym | +143568 | Heleophryne regis Hewitt, 1910 | | authority | +143568 | Heleophryne regis | | scientific name | +143568 | royal ghost frog | | genbank common name | +143568 | southern ghost frog | | common name | +143592 | Dobson's burrowing frog | | common name | +143592 | Mangalore bullfrog | | genbank common name | +143592 | Rana dobsonii Boulenger, 1882 | | authority | +143592 | Rana dobsonii | | synonym | +143592 | Rana (Tomopterna) dobsonii | | synonym | +143592 | Sphaerotheca dobsonii (Boulenger, 1882) | | authority | +143592 | Sphaerotheca dobsonii | | scientific name | +143592 | Sphaerotheca dobsoni | | synonym | +143592 | Tomopterna dobsoni | | synonym | +143627 | Micryletta | | scientific name | +143647 | Strongylopus | | scientific name | +143648 | Rana fasciata Smith, 1849 | | authority | +143648 | Rana fasciata | | synonym | +143648 | striped stream frog | | genbank common name | +143648 | Strongylopus fasciatus | | scientific name | +143648 | Strongylopus fasciatus (Smith, 1849) | | authority | +143648 | Tanganyika striped grass frog | | common name | +143667 | Ramanella | | scientific name | +143895 | largescale tapirfish | | common name | +143895 | Notacanthus chemnitzii Bloch, 1788 | | authority | +143895 | Notacanthus chemnitzii | | scientific name | +143895 | Notacanthus chemnitzi | | synonym | +143895 | spiny eel | | genbank common name | +144708 | Bombus | Bombus | scientific name | +145400 | Anolis bimaculatus leachii | | synonym | +145400 | Anolis bimaculatus leachi | | synonym | +145400 | Anolis leachii Dumerial & Bibron 1837 | | authority | +145400 | Anolis leachii Dumeril & Bibron, 1837 | | authority | +145400 | Anolis leachii | | scientific name | +145400 | Anolis leachi | | synonym | +145400 | Leach's anole | | common name | +145400 | Panther Anole | | genbank common name | +145888 | Anartia | Anartia | scientific name | +145888 | Anartia Hubner, 1819 | | authority | +146139 | Selar | | scientific name | +146146 | big-eyed scad | | common name | +146146 | bigeye scad | | genbank common name | +146146 | Scomber crumenophthalmus Bloch, 1793 | | authority | +146146 | Scomber crumenophthalmus | | synonym | +146146 | Selar crumenophthalmus (Bloch, 1793) | | authority | +146146 | Selar crumenophthalmus | | scientific name | +146617 | Carbo capillatus | | synonym | +146617 | Carbo capillatus Temminck & Schlegel, 1849 | | authority | +146617 | Japanese cormorant | | genbank common name | +146617 | Phalacrocorax capillatus | | scientific name | +146617 | Phalacrocorax capillatus (Temminck & Schlegel, 1849) | | authority | +146617 | Phalacrocorax filamentosus | | synonym | +146617 | Temminck's cormorant | | common name | +146625 | bronze shag | | common name | +146625 | Eulococarbo chalconotus | | synonym | +146625 | Graculus chalconotus Gray, 1845 | | authority | +146625 | Graculus chalconotus | | synonym | +146625 | Leucocarbo chalconotus | | scientific name | +146625 | Otago shag | | genbank common name | +146625 | Phalacrocorax carunculatus chalconotus | | synonym | +146625 | Phalacrocorax chalconotus (Gray,GR, 1845) | | authority | +146625 | Phalacrocorax chalconotus | | synonym | +146625 | Stewart Island cormorant | | common name | +146711 | Marten's oriental frog | | common name | +146711 | Occidozyga martensii (Peters, 1867) | | authority | +146711 | Occidozyga martensii | | scientific name | +146711 | Occidozyga martensi | | synonym | +146711 | Phrynoglossus martensii Peters, 1867 | | authority | +146711 | Phrynoglossus martensii | | synonym | +146711 | round-tongued floating frog | | genbank common name | +146711 | whiet-lined flood frog | | common name | +146730 | Arabian five-fingered frog | | genbank common name | +146730 | Arabian skittering frog | | common name | +146730 | Euphlyctis ehrenbergii (Peters, 1863) | | authority | +146730 | Euphlyctis ehrenbergii | | scientific name | +146730 | Rana ehrenbergii | | synonym | +146731 | Gravenhorst's frog | | common name | +146731 | Gravenhorst's golden-backed frog | | genbank common name | +146731 | Hydrophylax gracilis (Gravenhorst, 1829) | | authority | +146731 | Hydrophylax gracilis | | scientific name | +146731 | Hylarana gracilis | | synonym | +146731 | Rana gracilis Gravenhorst, 1829 | | authority | +146731 | Rana gracilis | | synonym | +146731 | Sri Lanka wood frog | | common name | +147650 | Allochrocebus solatus (Harrison, 1988) | | authority | +147650 | Allochrocebus solatus | | scientific name | +147650 | Cercopithecus solatus M. J. S. Harrison, 1988 | | authority | +147650 | Cercopithecus solatus | | synonym | +147650 | sun-tailed guenon | | common name | +147650 | sun-tailed monkey | | genbank common name | +147909 | Eurycea spelaea | | scientific name | +147909 | Eurycea spelaea (Stejneger, 1892) | | authority | +147909 | Eurycea spelaeus | | synonym | +147909 | grotto salamander | | common name | +147909 | Ozark blind salamander | | genbank common name | +147909 | Typhlotriton spelaeus Stejneger, 1892 | | authority | +147909 | Typhlotriton spelaeus | | synonym | +147949 | Micropterus dolomieu Lacepede, 1802 | | authority | +147949 | Micropterus dolomieu | | scientific name | +147949 | Micropterus velox Hubbs & Bailey, 1940 | | authority | +147949 | Micropterus velox | | synonym | +147949 | smallmouth bass | | genbank common name | +147949 | smallmouth blackbass | | common name | +149981 | Lefua | | scientific name | +149983 | Corydoras rabauti La Monte, 1941 | | authority | +149983 | Corydoras rabauti | | synonym | +149983 | Osteogaster rabauti (LaMonte, 1941) | | authority | +149983 | Osteogaster rabauti | | scientific name | +149983 | rust corydoras | | genbank common name | +149983 | rusty cory | | common name | +149984 | Gonorynchus | | scientific name | +149986 | beaked salmon | beaked salmon | genbank common name | +149986 | Gonorynchus greyi (Richardson, 1845) | | authority | +149986 | Gonorynchus greyi | | scientific name | +149986 | ratfish | ratfish | common name | +149986 | Rhynchana greyi Richardson, 1845 | | authority | +149986 | Rhynchana greyi | | synonym | +149986 | Rynchana greyi Richardson, 1845 | | authority | +149986 | Rynchana greyi | | synonym | +149986 | sandfish | sandfish | common name | +149986 | shark whiting | | common name | +150241 | Arthroleptella | | scientific name | +150241 | bandit frogs | | common name | +150241 | chirping frogs | | common name | +150241 | moss frogs | | genbank common name | +150245 | Arthroleptella lightfooti (Boulenger, 1910) | | authority | +150245 | Arthroleptella lightfooti | | scientific name | +150245 | Arthroleptis lightfooti Boulenger, 1910 | | authority | +150245 | Arthroleptis lightfooti | | synonym | +150245 | brown bandit frog | | common name | +150245 | Cape chirping frog | | genbank common name | +150245 | chirping frog | | common name | +150245 | cricket frog | cricket frog | common name | +150245 | tiny chirping frog | | common name | +150257 | Amblyeleotris | | scientific name | +150287 | Boleophthalmus | | scientific name | +150290 | Brachygobius | | scientific name | +150297 | Glossogobius | | scientific name | +150305 | Istigobius | | scientific name | +150319 | Chinese zebra goby | | genbank common name | +150319 | Pogonoculius zebra Fowler, 1938 | | authority | +150319 | Pogonoculius zebra | | synonym | +150319 | Ptereleotris zebra (Fowler, 1938) | | authority | +150319 | Ptereleotris zebra | | scientific name | +150319 | zebra dartfish | | common name | +150319 | zebra dart-goby | | common name | +150319 | zebra hovergoby | | common name | +150323 | arrow goby | arrow goby | common name | +150323 | blackfin dartfish | | genbank common name | +150323 | Encaeura evides Jordan & Hubbs, 1925 | | authority | +150323 | Encaeura evides | | synonym | +150323 | Ptereleotris evides (Jordan & Hubbs, 1925) | | authority | +150323 | Ptereleotris evides | | scientific name | +150323 | sailfin hovergoby | | common name | +150323 | scissortail dartfish | | common name | +150323 | scissortail | scissortail | common name | +150323 | spottail gudgeon | | common name | +150324 | Redigobius | | scientific name | +150325 | bigmouth goby | | common name | +150325 | checkered dualspot goby | | common name | +150325 | Redigobius bikolanus (Herre, 1927) | | authority | +150325 | Redigobius bikolanus | | scientific name | +150325 | speckled goby | | genbank common name | +150325 | Vaimosa bikolana Herre, 1927 | | authority | +150325 | Vaimosa bikolana | | synonym | +150436 | painted rock lobster | | common name | +150436 | painted spiny lobster | | genbank common name | +150436 | Palinurus taeniatus | | synonym | +150436 | Palinurus versicolor | | synonym | +150436 | Panulirus taeniatus | | synonym | +150436 | Panulirus versicolor (Latreille, 1804) | | authority | +150436 | Panulirus versicolor | | scientific name | +150436 | South China Sea lobster | | common name | +150436 | spiny blue lobster | | common name | +150710 | Dendropsophus microcephalus (Cope, 1886) | | authority | +150710 | Dendropsophus microcephalus | | scientific name | +150710 | Hyla microcephala Cope, 1886 | | authority | +150710 | Hyla microcephala | | synonym | +150710 | yellow cricket treefrog | | common name | +150710 | yellow treefrog | | genbank common name | +151303 | Dendrolimus | | scientific name | +151304 | Dendrolimus pini (Linnaeus, 1758) | | authority | +151304 | Dendrolimus pini | | scientific name | +151304 | Phalaena pini Linnaeus, 1758 | | authority | +151304 | Phalaena pini | | synonym | +151304 | pine lappet | | genbank common name | +151304 | pine moth | pine moth | common name | +151541 | African queen | | genbank common name | +151541 | Anosia chrysippus | | synonym | +151541 | common tiger | common tiger | common name | +151541 | Danaus chrysippus (Linnaeus, 1758) | | authority | +151541 | Danaus chrysippus | | scientific name | +151541 | lesser wanderer | | common name | +151541 | Papilio chrysippus Linnaeus, 1758 | | authority | +151541 | Papilio chrysippus | | synonym | +151541 | plain tiger | | common name | +151542 | Danaus | Danaus | scientific name | +151543 | Anosia | | scientific name | +151724 | Fusigobius | | scientific name | +152347 | Lithobates yavapaiensis (Platz & Frost, 1984) | | authority | +152347 | Lithobates yavapaiensis | | scientific name | +152347 | lowland leopard frog | | genbank common name | +152347 | Pantherana yavapaiensis | | synonym | +152347 | Rana yavapaiensis Platz & Frost, 1984 | | authority | +152347 | Rana yavapaiensis | | synonym | +152347 | Yavapai leopard frog | | common name | +152539 | bicolor blenny | | genbank common name | +152539 | Ecsenius bicolor (Day, 1888) | | authority | +152539 | Ecsenius bicolor | | scientific name | +152539 | Escenius bicolor (Day, 1888) | | authority | +152539 | flame tail blenny | | common name | +152539 | Salarias bicolor Day, 1888 | | authority | +152539 | Salarias bicolor | | synonym | +153621 | black grouper | | genbank common name | +153621 | marbled rockfish | | common name | +153621 | Mycteroperca bonaci (Poey, 1860) | | authority | +153621 | Mycteroperca bonaci | | scientific name | +153621 | Serranus bonaci Poey, 1860 | | authority | +153621 | Serranus bonaci | | synonym | +154031 | Limia | | scientific name | +154334 | CeHV-17 | | acronym | +154334 | Cercopithecine herpesvirus 17 | | equivalent name | +154334 | Macacine gammaherpesvirus 5 | | scientific name | +154334 | Macacine herpesvirus 5 | | equivalent name | +154334 | rhesus macaque rhadinovirus | | equivalent name | +154334 | Rhesus rhadinovirus | | genbank common name | +154348 | Diplophysa costata Kessler, 1876 | | authority | +154348 | Diplophysa costata | | synonym | +154348 | eightbarbel loach | | genbank common name | +154348 | eight-whiskered stone loach | | common name | +154348 | Lefua costata (Kessler, 1876) | | authority | +154348 | Lefua costata | | scientific name | +154816 | Chinese algae-eater | | common name | +154816 | Gyrinocheilus aymonieri | | scientific name | +154816 | Gyrinocheilus aymonieri (Tirant, 1883) | | authority | +154816 | Indian algae-eater | | common name | +154816 | Psilorhynchus aymonieri | | synonym | +154816 | Psilorhynchus aymonieri Tirant, 1884 | | authority | +154816 | Siamese algae-eater | Siamese algae-eater | genbank common name | +154816 | Siamese headbreather | | common name | +154823 | black jumprock | | common name | +154823 | blacktip jumprock | | genbank common name | +154823 | Moxostoma cervinum (Cope, 1868) | | authority | +154823 | Moxostoma cervinum | | scientific name | +154823 | Scartomyzon cervinus (Cope, 1868) | | authority | +154823 | Scartomyzon cervinus | | synonym | +154823 | Teretulus cervinus Cope, 1868 | | authority | +154823 | Teretulus cervinus | | synonym | +155165 | Lycaeides argyrognomon | | synonym | +155165 | northern blue | | genbank common name | +155165 | Papilio argyrognomon Bergstrasser, 1779 | | authority | +155165 | Papilio argyrognomon | | synonym | +155165 | Plebejus argyrognomon (Bergstrasser, 1779) | | authority | +155165 | Plebejus argyrognomon | | scientific name | +155165 | Reverdin's blue | | common name | +155167 | Lycaeides melissa | | synonym | +155167 | Lycaena melissa Edwards, 1873 | | authority | +155167 | Lycaena melissa | | synonym | +155167 | Melissa blue | | common name | +155167 | orange-bordered blue | | genbank common name | +155167 | Plebejus melissa (Edwards, 1873) | | authority | +155167 | Plebejus melissa | | scientific name | +156159 | Colluricincla | | scientific name | +156196 | Abrothrix | | scientific name | +156196 | Abrothrix Waterhouse, 1837 | | authority | +156562 | Cyanistes Kaup 1829 | | authority | +156562 | Cyanistes | | scientific name | +156563 | Blaumeise | | common name | +156563 | blue tit | | genbank common name | +156563 | Cyanistes caeruleus Linnaeus, 1758 | | authority | +156563 | Cyanistes caeruleus | | scientific name | +156563 | Parus caeruleus Linnaeus, 1758 | | authority | +156563 | Parus caeruleus | | synonym | +156564 | Lophophanes Kaup 1829 | | authority | +156564 | Lophophanes | | scientific name | +156565 | crested tit | | genbank common name | +156565 | Haubenmeise | | common name | +156565 | Lophophanes cristatus (Linnaeus, 1758) | | authority | +156565 | Lophophanes cristatus | | scientific name | +156565 | Parus cristatus Linnaeus, 1758 | | authority | +156565 | Parus cristatus | | synonym | +156870 | Babina okinavana (Boettger, 1895) | | authority | +156870 | Babina okinavana | | synonym | +156870 | Babina psaltes | | synonym | +156870 | harpist brown frog | | common name | +156870 | Hylarana psaltes | | synonym | +156870 | Kampira Falls frog | | genbank common name | +156870 | Nidirana okinavana (Boettger, 1895) | | authority | +156870 | Nidirana okinavana | | scientific name | +156870 | Nidirana psaltes | | synonym | +156870 | Rana okinavana Boettger, 1895 | | authority | +156870 | Rana okinavana | | synonym | +156870 | Rana psaltes Kuramoto, 1985 | | authority | +156870 | Rana psaltes | | synonym | +156870 | Yaeyama harpist frog | | common name | +156873 | broad-folded frog | | genbank common name | +156873 | brown wood frog | | common name | +156873 | Hylarana latouchii (Boulenger, 1899) | | authority | +156873 | Hylarana latouchii | | scientific name | +156873 | Kuatun frog | | common name | +156873 | LaTouche's frog | | common name | +156873 | Rana latouchii Boulenger, 1899 | | authority | +156873 | Rana latouchii | | synonym | +156873 | Sylvirana latouchii (Boulenger, 1899) | | authority | +156873 | Sylvirana latouchii | | synonym | +156874 | Bufo peltocephalus | | synonym | +156874 | Bufo peltocephalus Tschudi, 1838 | | authority | +156874 | Cuban toad | Cuban toad | common name | +156874 | Peltophryne peltocephala | | scientific name | +156874 | Peltophryne peltocephala (Tschudi, 1838) | | authority | +156874 | Peltophryne peltocephalus | | synonym | +156874 | Peltophryne peltocephalus (Tschudi, 1838) | | authority | +156874 | Tschudi's Caribbean toad | | genbank common name | +156875 | Bufo guentheri Cochran, 1941 | | authority | +156875 | Bufo guentheri | | synonym | +156875 | Bufo guntheri Cochran, 1941 | | authority | +156875 | Bufo guntheri | | synonym | +156875 | Guenther's Caribbean toad | | genbank common name | +156875 | Gunther's Caribbean toad | | common name | +156875 | Peltophryne guentheri (Cochran, 1941) | | authority | +156875 | Peltophryne guentheri | | scientific name | +156876 | Bufo gundlachi Ruibal, 1959 | | authority | +156876 | Bufo gundlachi | | synonym | +156876 | Cuban high-crested toad | | genbank common name | +156876 | Gundlach's Caribbean toad | | common name | +156876 | Peltophryne gundlachi (Ruibal, 1959) | | authority | +156876 | Peltophryne gundlachi | | scientific name | +156877 | Bufo longinasus Stejneger, 1905 | | authority | +156877 | Bufo longinasus | | synonym | +156877 | Cuban long-nosed toad | | genbank common name | +156877 | Peltophryne longinasus | | scientific name | +156877 | Peltophryne longinasus (Stejneger, 1905) | | authority | +156877 | Stejneger's Caribbean toad | | common name | +156878 | Bufo taladai Schwartz, 1960 | | authority | +156878 | Bufo taladai | | synonym | +156878 | Cuban Caribbean toad | | common name | +156878 | Cuban spotted toad | | genbank common name | +156878 | Peltophryne taladai (Schwartz, 1960) | | authority | +156878 | Peltophryne taladai | | scientific name | +156879 | Bufo empusus (Cope, 1862) | | authority | +156879 | Bufo empusus | | includes | +156879 | Cope's Caribbean toad | | common name | +156879 | Cuban small-eared toad | | genbank common name | +156879 | Cuban toad | Cuban toad | common name | +156879 | Otaspis empusa | | synonym | +156879 | Peltophryne empua | | includes | +156879 | Peltophryne empusa (Cope, 1862) | | authority | +156879 | Peltophryne empusa | | scientific name | +156881 | Bufo stomaticus Luetken, 1864 | | authority | +156881 | Bufo stomaticus Lutken, 1864 | | authority | +156881 | Bufo stomaticus | | synonym | +156881 | Duttaphrynus stomaticus (Lutken, 1864) | | authority | +156881 | Duttaphrynus stomaticus | | scientific name | +156881 | Indus Valley toad | | genbank common name | +156881 | marbled toad | marbled toad | common name | +156896 | Acontias | | scientific name | +156896 | Microacontias | | synonym | +156991 | Liua | Liua | scientific name | +156991 | Liua Zhao & Hu, 1983 | | authority | +156992 | Hynobius shihi Liu, 1950 | | authority | +156992 | Hynobius shihi | | synonym | +156992 | Liua shihi (Liu, 1950) | | authority | +156992 | Liua shihi | | scientific name | +156992 | Ranodon shihi | | synonym | +156992 | Sichuan salamander | | common name | +156992 | Wushan salamander | | genbank common name | +157304 | Anoplophora Hope, 1839 | | authority | +157304 | Anoplophora | | scientific name | +157304 | Calloplophora | | synonym | +157791 | mung bean | mung bean | common name | +157791 | Vigna radiata R.Wilczek, 1954 | | authority | +157791 | Vigna radiata | | scientific name | +158052 | American black-billed Magpie | | common name | +158052 | Black-billed magpie | | genbank common name | +158052 | Corvus hudsonius Sabine, 1823 | | authority | +158052 | Corvus hudsonius | | synonym | +158052 | Pica hudsonia (Sabine, 1823) | | authority | +158052 | Pica hudsonia | | scientific name | +158052 | Pica nuttalli hudsonia | | synonym | +158052 | Pica pica hudsonia | | synonym | +158052 | Pica pica hudsonica | | synonym | +158688 | Karner blue butterfly | | genbank common name | +158688 | Karner blue | | common name | +158688 | Lycaeides melissa samuelis | | synonym | +158688 | Plebejus melissa samuelis (Nabokov, 1944) | | authority | +158688 | Plebejus melissa samuelis | | scientific name | +159457 | billed toad | | common name | +159457 | Rhamphophryne macrorhina | | synonym | +159457 | Rhamphophryne macrorhina Trueb, 1971 | | authority | +159457 | Rhinella macrorhina | | scientific name | +159457 | Rhinella macrorhina (Trueb, 1971) | | authority | +159457 | Santa Rita beaked toad | | genbank common name | +159457 | trumpeted toad | | common name | +160130 | Goniodes | | scientific name | +160721 | Epinephelus itajara (Lichtenstein, 1822) | | authority | +160721 | Epinephelus itajara | | scientific name | +160721 | itajara | | genbank common name | +160721 | jewfish | | common name | +160721 | Serranus itajara Lichtenstein, 1822 | | authority | +160721 | Serranus itajara | | synonym | +160725 | Epinephelus niphobles Gilbert & Starks, 1897 | | authority | +160725 | Epinephelus niphobles | | synonym | +160725 | Hyporthodus niphobles (Gilbert & Starks, 1897) | | authority | +160725 | Hyporthodus niphobles | | scientific name | +160725 | snowy grouper | snowy grouper | common name | +160725 | star-studded grouper | | genbank common name | +160734 | Holocentrus leopardus Lacepede, 1802 | | authority | +160734 | Holocentrus leopardus | | synonym | +160734 | leopard coralgrouper | | genbank common name | +160734 | leopard coral trout | | common name | +160734 | Plectropomus leopardus (Lacepede, 1802) | | authority | +160734 | Plectropomus leopardus | | scientific name | +160741 | Rypticus | | scientific name | +160742 | Anthias saponaceus Bloch & Schneider, 1801 | | authority | +160742 | Anthias saponaceus | | synonym | +160742 | greater soapfish | | genbank common name | +160742 | Rypticus saponaceus (Bloch & Schneider, 1801) | | authority | +160742 | Rypticus saponaceus | | scientific name | +160742 | three-spined soapfish | | common name | +160760 | Carduelis spinus (Linnaeus, 1758) | | authority | +160760 | Carduelis spinus | | synonym | +160760 | Eurasian siskin | | genbank common name | +160760 | European siskin | | common name | +160760 | Fringilla spinus Linnaeus, 1758 | | authority | +160760 | Fringilla spinus | | synonym | +160760 | Spinus spinus (Linnaeus, 1758) | | authority | +160760 | Spinus spinus | | scientific name | +160760 | Zeisig | | common name | +161274 | Bombina maxima | | scientific name | +161274 | Bombinator maximus Boulenger, 1905 | | authority | +161274 | Bombinator maximus | | synonym | +161274 | Chinese red belly toad | | common name | +161274 | large-webbed bell toad | | genbank common name | +161276 | Oreochromis hornorum | | synonym | +161276 | Oreochromis urolepis hornorum | | scientific name | +161276 | Oreochromis urolepis hornorum (Trewavas, 1966) | | authority | +161276 | Sarotherodon hornorum | | synonym | +161276 | Wami tilapia | | genbank common name | +161276 | Zanzibar tilapia | | common name | +161447 | Corythoichthys | | scientific name | +161459 | Hippichthys | | scientific name | +161623 | Passerculus | | scientific name | +161624 | Ammodramus sandwichensis | | synonym | +161624 | Emberiza sandwichensis Gmelin, 1789 | | authority | +161624 | Emberiza sandwichensis | | synonym | +161624 | Grasammer | | common name | +161624 | Passerculus sandwichensis | | scientific name | +161624 | Savannah sparrow | | genbank common name | +161679 | Limosa | | scientific name | +161680 | black-tailed godwit | | genbank common name | +161680 | Limosa limosa (Linnaeus, 1758) | | authority | +161680 | Limosa limosa | | scientific name | +161680 | Scolopax limosa Linnaeus, 1758 | | authority | +161680 | Scolopax limosa | | synonym | +161680 | Uferschnepfe | | common name | +161697 | eastern spadefoot toads | | genbank common name | +161697 | Leptobrachium | | scientific name | +161697 | moustache toads | | common name | +161697 | spiny toads | | common name | +161698 | Chapa pseudomoustache toad | | common name | +161698 | Chapa spadefoot toad | | genbank common name | +161698 | Leptobrachium chapaense (Bourret, 1937) | | authority | +161698 | Leptobrachium chapaense | | scientific name | +161698 | Leptobrachium hasselti chapaensis | | synonym | +161698 | Megophrys hasseltii chapaensis Bourret, 1937 | | authority | +161698 | Megophrys hasseltii chapaensis | | synonym | +161698 | white-eyed litter frog | | common name | +161701 | Xenophrys | | scientific name | +161704 | Boulenger's ornate narrow-mouthed frog | | common name | +161704 | Deli little pygmy frog | | common name | +161704 | Deli paddy frog | | common name | +161704 | false ornate narrow-mouthed frog | | genbank common name | +161704 | inornate froglet | | common name | +161704 | Microhyla inornata Boulenger, 1890 | | authority | +161704 | Microhyla inornata | | synonym | +161704 | Micryletta inornata (Boulenger, 1890) | | authority | +161704 | Micryletta inornata | | scientific name | +161706 | black-webbed treefrog | | common name | +161706 | green flying-frog | | common name | +161706 | Hyla reinwardtii Schlegel, 1840 | | authority | +161706 | Hyla reinwardtii | | synonym | +161706 | Polypedates reinwardtii | | synonym | +161706 | Racophorus reinwardtii Schlegel, 1826 | | authority | +161706 | Racophorus reinwardtii | | synonym | +161706 | Reinwardt's flying frog | | genbank common name | +161706 | Reinwardt's gliding frog | | common name | +161706 | Reinwardt's treefrog | | common name | +161706 | Rhacophorus reinwardtii (Schlegel, 1840) | | authority | +161706 | Rhacophorus reinwardtii | | scientific name | +161706 | small flying tree frog | | common name | +161707 | Boulenger's bushfrog | | common name | +161707 | Kurixalus verrucosus (Boulenger, 1893) | | authority | +161707 | Kurixalus verrucosus | | scientific name | +161707 | Rhacophorus verrucosus Boulenger, 1893 | | authority | +161707 | Rhacophorus verrucosus | | synonym | +161707 | small rough-armed tree frog | | genbank common name | +161767 | Amphiprion percula (Lacepede, 1802) | | authority | +161767 | Amphiprion percula | | scientific name | +161767 | Lutjanus percula Lacepede, 1802 | | authority | +161767 | Lutjanus percula | | synonym | +161767 | orange clownfish | | genbank common name | +161767 | Picasso clownfish | | common name | +161939 | Cryptoblepharus | | scientific name | +161940 | coral rag skink | | common name | +161940 | Cryptoblepharus boutonii (Des Jardin, 1831) | | authority | +161940 | Cryptoblepharus boutonii | | scientific name | +161940 | Cryptoblepharus boutoni | | synonym | +161940 | Scincus boutonii Des Jardins, 1831 | | authority | +161940 | Scincus boutonii | | synonym | +161940 | snake-eyed skink | | genbank common name | +163119 | Scorpaenopsis | | scientific name | +163125 | Pampus | | scientific name | +163128 | Arripis | | scientific name | +163129 | Arripis georgianus | | scientific name | +163129 | Arripis georgianus (Valenciennes, 1831) | | authority | +163129 | Australian herring | | common name | +163129 | Australian ruff | | genbank common name | +163129 | bull herring | | common name | +163129 | Centropristes georgianus | | synonym | +163129 | Centropristes georgianus Valenciennes, 1831 | | authority | +163129 | ruff | ruff | common name | +163129 | sea herring | | common name | +163129 | tommy rough | | common name | +163129 | tommy ruff | | common name | +163129 | western herring | | common name | +163133 | Oplegnathus | | scientific name | +163134 | barred knifejaw | | genbank common name | +163134 | Oplegnathus fasciatus | | scientific name | +163134 | Oplegnathus fasciatus (Temminck & Schlegel, 1844) | | authority | +163134 | Scaradon fasciatus | | synonym | +163134 | Scaradon fasciatus Temminck & Schlegel, 1844 | | authority | +163134 | striped knifejaw | | common name | +163136 | Kuhlia | | scientific name | +163137 | barred flagtail | | genbank common name | +163137 | fivebar flagtail | | common name | +163137 | Kuhlia mugil (Forster, 1801) | | authority | +163137 | Kuhlia mugil | | scientific name | +163137 | ocean flagfish | | common name | +163137 | Sciaena mugil Forster, 1801 | | authority | +163137 | Sciaena mugil | | synonym | +163828 | bronze darter | | genbank common name | +163828 | copper darter | | common name | +163828 | Hadropterus palmaris | | synonym | +163828 | Percina cf. palmaris TJN-2011 | | synonym | +163828 | Percina palmaris (Bailey, 1940) | | authority | +163828 | Percina palmaris | | scientific name | +164016 | Liposarcus | | synonym | +164016 | Pterygoplichthys | | scientific name | +164282 | Amazonian tiny tree toad | | common name | +164282 | Amazophrynella minuta | | scientific name | +164282 | Atelopus minutus Melin, 1941 | | authority | +164282 | Atelopus minutus | | synonym | +164282 | Dendrophryniscus minutus | | synonym | +164282 | tiny tree toad | | genbank common name | +164286 | Nectophrynoides | | scientific name | +164291 | Asian tree toads | | genbank common name | +164291 | Pedostibes | | scientific name | +164293 | dwarf toads | | common name | +164293 | flathead toads | | genbank common name | +164293 | Pelophryne | | scientific name | +164301 | Brachycephalus | | scientific name | +164301 | Psyllophryne | | synonym | +164302 | Brachycephalus ephippium | | scientific name | +164302 | Bufo ephippium Spix, 1824 | | authority | +164302 | Bufo ephippium | | synonym | +164302 | pumpkin toadlet | | genbank common name | +164302 | Spix's saddleback toad | | common name | +164310 | Carpophrys pelodytoides | | synonym | +164310 | Karin metacarpal-tubercled toad | | common name | +164310 | Leptobrachella pelodytoides (Boulenger, 1893) | | authority | +164310 | Leptobrachella pelodytoides | | scientific name | +164310 | Leptobrachium pelodytoides Boulenger, 1893 | | authority | +164310 | Leptobrachium pelodytoides | | synonym | +164310 | Leptolalax pelodytoides (Boulenger, 1893) | | authority | +164310 | Leptolalax pelodytoides | | synonym | +164310 | Megophrys pelodytoides | | synonym | +164310 | mountain short-legged toad | | common name | +164310 | mud litter frog | | common name | +164310 | olive crawl frog | | common name | +164310 | Thao Asian toad | | genbank common name | +164648 | Colobus badius | | synonym | +164648 | Piliocolobus badius | | scientific name | +164648 | Procolobus badius (Kerr, 1792) | | authority | +164648 | Procolobus badius | | synonym | +164648 | red colobus | | common name | +164648 | Simia badius Kerr, 1792 | | authority | +164648 | Simia badius | | synonym | +164648 | western red colobus | | genbank common name | +164736 | Afrana fuscigula (Dumeril & Bibron, 1841) | | authority | +164736 | Afrana fuscigula | | synonym | +164736 | Amietia fuscigula (Dumeril & Bibron, 1841) | | authority | +164736 | Amietia fuscigula | | scientific name | +164736 | brown-throated frog | | common name | +164736 | Cape river frog | | common name | +164736 | dark-throated river frog | | genbank common name | +164736 | dusky-throated river frog | | common name | +164736 | Rana fuscigula Dumeril & Bibron, 1841 | | authority | +164736 | Rana fuscigula | | synonym | +164737 | Afrana | | synonym | +164737 | Amietia | | scientific name | +164737 | Rana (Amietia) | | synonym | +164738 | Amietia umbraculata (Bush, 1952) | | authority | +164738 | Amietia umbraculata | | synonym | +164738 | Amietia vertebralis (Hewitt, 1927) | | authority | +164738 | Amietia vertebralis | | scientific name | +164738 | aquatic river frog | | common name | +164738 | ice frog | | common name | +164738 | large-mouthed frog | | genbank common name | +164738 | Rana (Amietia) vertebralis | | synonym | +164738 | Rana umbraculata | | synonym | +164738 | Rana vertebralis Hewitt, 1927 | | authority | +164738 | Rana vertebralis | | synonym | +164738 | umbraculate frog | | common name | +164738 | Umzimkulu River leopard frog | | common name | +164740 | Amnirana galamensis (Dumeril & Bibron, 1841) | | authority | +164740 | Amnirana galamensis | | scientific name | +164740 | Galam white-lipped frog | | genbank common name | +164740 | golden-backed frog | golden-backed frog | common name | +164740 | Hydrophylax galamensis | | synonym | +164740 | Hylarana galamensis (Dumeril & Bibron, 1841) | | authority | +164740 | Hylarana galamensis | | synonym | +164740 | marble-legged frog | | common name | +164740 | Rana galamensis Dumeril & Bibron, 1841 | | authority | +164740 | Rana galamensis | | synonym | +164740 | Rana (Hydrophylax) galamensis | | synonym | +164740 | Rana (Hylarana) galamensis | | synonym | +164743 | Angola bullfrog | | common name | +164743 | beaded burrowing frog | | common name | +164743 | beaded dwarf bullfrog | | common name | +164743 | beaded sand frog | | genbank common name | +164743 | Pyxicephalus rugosus Guenther, 1865 | | authority | +164743 | Pyxicephalus rugosus | | synonym | +164743 | Pyxicephalus tuberculosus | | synonym | +164743 | Rana (Tomopterna) pulchra De Witte, 1930 | | authority | +164743 | Rana (Tomopterna) pulchra | | synonym | +164743 | Rana tuberculosa Boulenger, 1882 | | authority | +164743 | Rana tuberculosa | | synonym | +164743 | Tomopterna tuberculosa (Boulenger, 1882) | | authority | +164743 | Tomopterna tuberculosa | | scientific name | +164744 | Apristurus | | scientific name | +164746 | Apristurus atlanticus | | synonym | +164746 | Apristurus laurussonii (Saemundsson, 1922) | | authority | +164746 | Apristurus laurussonii | | scientific name | +164746 | Apristurus laurussoni | | synonym | +164746 | Atlantic ghost catshark | | common name | +164746 | Iceland catshark | | genbank common name | +164746 | Scyllium laurussonii Saemundsson, 1922 | | authority | +164746 | Scyllium laurussonii | | synonym | +164968 | Paramesotriton | | scientific name | +164969 | Allomesotriton caudopunctatus | | synonym | +164969 | Guizhou warty newt | | genbank common name | +164969 | Paramesotriton caudopunctatus (Liu & Hu in Hu, Zhao & Liu, 1973) | | authority | +164969 | Paramesotriton caudopunctatus | | scientific name | +164969 | spot-tailed warty newt | | common name | +164969 | Trituroides caudopunctatus Liu & Hu, 1973 | | authority | +164969 | Trituroides caudopunctatus Liu & Hu in Hu, Zhao & Liu, 1973 | | authority | +164969 | Trituroides caudopunctatus | | synonym | +164970 | Mesotriton deloustali Bourret, 1934 | | authority | +164970 | Mesotriton deloustali | | synonym | +164970 | Pachytriton deloustali | | synonym | +164970 | Paramesotriton deloustali (Bourret, 1934) | | authority | +164970 | Paramesotriton deloustali | | scientific name | +164970 | Tam Dao newt | | common name | +164970 | Tam Dao salamander | | common name | +164970 | Vietnamese salamander | | common name | +164970 | Vietnam warty newt | | genbank common name | +164971 | Guangxi salamander | | common name | +164971 | Guangxi warty newt | | genbank common name | +164971 | Paramesotriton guangxiensis | | synonym | +164971 | Paramesotriton guangxiensis Zhang & Wen, 2000 [incorrect subsequent spelling] | | authority | +164971 | Paramesotriton guanxiensis (Huang, Tang & Tang, 1983) | | authority | +164971 | Paramesotriton guanxiensis | | scientific name | +164971 | Trituroides guanxiensis Huang, Tang & Tang, 1983 | | authority | +164971 | Trituroides guanxiensis | | synonym | +164973 | crocodile newt | | genbank common name | +164973 | crocodile salamander | | common name | +164973 | Glossolega verrucosa | | synonym | +164973 | Himalayan newt | | common name | +164973 | Pleurodeles (Tylototriton) verrucosus | | synonym | +164973 | Pleurodeles verrucosus | | synonym | +164973 | Triturus (Tylototriton) verrucosus | | synonym | +164973 | Tylototriton verrucosus Anderson, 1871 | | authority | +164973 | Tylototriton verrucosus | | scientific name | +165098 | Scolymia | | scientific name | +165099 | artichoke coral | | genbank common name | +165099 | Caryophyllia cubensis Milne Edwards & Haime, 1848 | | authority | +165099 | Caryophyllia cubensis | | synonym | +165099 | Scolymia cubensis Milne Edwards & Haime, 1849 | | authority | +165099 | Scolymia cubensis | | scientific name | +165099 | solitary disk coral | | common name | +165226 | Bufo margaritifer (Laurenti, 1768) | | authority | +165226 | Bufo margaritifer | | synonym | +165226 | Bufo typhonius | Bufo typhonius | synonym | +165226 | Bufo typhonius sensu Schneider, 1799 | | authority | +165226 | mitred toad | | genbank common name | +165226 | Rana margaritifera Laurenti, 1768 | | authority | +165226 | Rana margaritifera | | synonym | +165226 | Rhinella margaritifera (Laurenti, 1768) | | authority | +165226 | Rhinella margaritifera | | scientific name | +165226 | South American common toad | | common name | +165846 | Anartia jatrophae (Linnaeus, 1763) | | authority | +165846 | Anartia jatrophae | | scientific name | +165846 | Papilio jatrophae Linnaeus, 1763 | | authority | +165846 | Papilio jatrophae | | synonym | +165846 | white peacock butterfly | | common name | +165846 | white peacock | | genbank common name | +165858 | common tiger | common tiger | common name | +165858 | Danaus melanippus (Cramer, 1777) | | authority | +165858 | Danaus melanippus philozigetes | | synonym | +165858 | Danaus melanippus | | scientific name | +165858 | Danaus (Salatura) melanippus | | synonym | +165858 | Papilio melanippus Cramer, 1777 | | authority | +165858 | Papilio melanippus | | synonym | +165858 | white tiger | | genbank common name | +165861 | Danaus eresimus (Cramer, 1777) | | authority | +165861 | Danaus eresimus | | scientific name | +165861 | Papilio eresimus Cramer, 1777 | | authority | +165861 | Papilio eresimus | | synonym | +165861 | tropical queen | | common name | +165861 | tropic queen | | genbank common name | +166779 | blue gudgeon | | genbank common name | +166779 | Eleotris microlepis Bleeker, 1856 | | authority | +166779 | Eleotris microlepis | | synonym | +166779 | green-eyed dart-goby | | common name | +166779 | long-finned gudgeon | | common name | +166779 | pearly dartfish | | common name | +166779 | Ptereleotris microlepis (Bleeker, 1856) | | authority | +166779 | Ptereleotris microlepis | | scientific name | +166779 | smallscale hovergoby | | common name | +167803 | Aldabrachelys | | scientific name | +167804 | Aldabrachelys dussumieri | | synonym | +167804 | Aldabrachelys elephantina | | synonym | +167804 | Aldabrachelys gigantea | | scientific name | +167804 | Aldabra giant tortoise | | genbank common name | +167804 | Aldabra tortoise | | common name | +167804 | Dipsochelys dussumieri | | synonym | +167804 | Geochelone gigantea | | synonym | +167804 | Testudo gigantea Schweigger, 1812 | | authority | +167804 | Testudo gigantea | | synonym | +167931 | Glandirana | | scientific name | +167933 | Chinese tree toad | | genbank common name | +167933 | common Chinese treefrog | | common name | +167933 | Hyla arborea var. chinensis Gunther, 1858 | | authority | +167933 | Hyla arborea var. chinensis | | synonym | +167933 | Hyla chinensis | | scientific name | +167935 | diskless-fingered odorous frog | | common name | +167935 | Graham's frog | | common name | +167935 | Huia grahami | | synonym | +167935 | Odorrana grahami (Boulenger, 1917) | | authority | +167935 | Odorrana grahami | | scientific name | +167935 | Rana grahami Boulenger, 1917 | | authority | +167935 | Rana grahami | | synonym | +167935 | Yunnanfu frog | | genbank common name | +167953 | Napo spiny rat | | genbank common name | +167953 | Proechimys amphichoricus | | synonym | +167953 | Proechimys quadruplicatus Hershkovitz, 1948 | | authority | +167953 | Proechimys quadruplicatus | | scientific name | +167953 | Venezuelan spiny rat | | common name | +168630 | Chilo | | scientific name | +168631 | Asiatic rice borer | | common name | +168631 | Chilo suppressalis | | scientific name | +168631 | Chilo suppressalis (Walker, 1863) | | authority | +168631 | Crambus suppressalis | | synonym | +168631 | striped rice borer | | common name | +168631 | striped riceborer | | genbank common name | +170207 | Nasalis concolor | | synonym | +170207 | Pig-tailed langur | | common name | +170207 | Simakobou | | genbank common name | +170207 | Simias concolor Miller, 1903 | | authority | +170207 | Simias concolor | | scientific name | +171407 | Dendrobates reticulatus Boulenger, 1884 | | authority | +171407 | Dendrobates reticulatus | | synonym | +171407 | Ranitomeya reticulata (Boulenger, 1884) | | authority | +171407 | Ranitomeya reticulata | | scientific name | +171407 | redback poison frog | | genbank common name | +171407 | reticulated poison frog | | common name | +171585 | Aglais io (Linnaeus, 1758) | | synonym | +171585 | European peacock | | genbank common name | +171585 | Inachis io (Linnaeus, 1758) | | authority | +171585 | Inachis io | | synonym | +171585 | Nymphalis io | | scientific name | +171585 | Papilio io Linnaeus, 1758 | | authority | +171585 | Papilio io | | synonym | +171585 | peacock | | common name | +171592 | Camberwell beauty | | common name | +171592 | mourning cloak | | genbank common name | +171592 | Nymphalis antiopa (Linnaeus, 1758) | | authority | +171592 | Nymphalis antiopa | | scientific name | +171592 | Papilio antiopa Linnaeus, 1758 | | authority | +171592 | Papilio antiopa | | synonym | +171594 | blackleg tortoiseshell | | genbank common name | +171594 | large tortoiseshell | large tortoiseshell | common name | +171594 | Nymphalis polychloros (Linnaeus, 1758) | | authority | +171594 | Nymphalis polychloros | | scientific name | +171594 | Papilio polychloros Linnaeus, 1758 | | authority | +171594 | Papilio polychloros | | synonym | +171801 | Argynnis Fabricius, 1807 | | authority | +171801 | Argynnis | | scientific name | +171801 | Argyreus Scopoli, 1777 | | authority | +171801 | Argyreus | | synonym | +171801 | Argyronome | | synonym | +171801 | Damora Nordmann, 1851 | | authority | +171801 | Damora | | synonym | +171959 | Andropogon drummondii Steud., 1854 | | authority | +171959 | Andropogon drummondii | | synonym | +171959 | Andropogon sorghum subsp. sudanensis Piper, 1915 | | authority | +171959 | Andropogon sorghum subsp. sudanensis | | synonym | +171959 | chicken-corn | | common name | +171959 | shattercane | | common name | +171959 | Sorghum bicolor nothosp. drummondii | | equivalent name | +171959 | Sorghum bicolor subsp. bicolor x Sorghum bicolor subsp. verticilliflorum | | equivalent name | +171959 | Sorghum bicolor subsp. drummondii | | scientific name | +171959 | Sorghum bicolor subsp. drummondii (Steud.) de Wet ex Davidse, 1993 | | authority | +171959 | Sorghum bicolor subsp. x drummondii | | equivalent name | +171959 | Sorghum bicolor x Sorghum arundinaceum | | equivalent name | +171959 | Sorghum bicolor x Sorghum x drummondii | | synonym | +171959 | Sorghum drummondii (Steud.) Millsp. & Chase, 1903 | | synonym | +171959 | Sorghum sudanense (Piper) Stapf, 1917 | | authority | +171959 | Sorghum sudanense | | synonym | +171959 | Sorghum vulgare var. sudanense (Steud.) Hack. ex Chiov., 1916 | | authority | +171959 | Sorghum vulgare var. sudanense | | synonym | +171959 | Sudan grass | | genbank common name | +172122 | Scopelarchus | | scientific name | +172268 | Argyrosomus | | scientific name | +172552 | Buthus sp. 'Vietnamese brown scorpion' | | includes | +172552 | Chinese striped bark scorpion | | common name | +172552 | Chinese swimming scorpion | | genbank common name | +172552 | Lychas mucronatus (Fabricius, 1798) | | authority | +172552 | Lychas mucronatus | | scientific name | +172552 | Vietnamese brown scorpion | | common name | +172918 | Tor | | scientific name | +173242 | Formosan land-locked salmon | | genbank common name | +173242 | Oncorhynchus formosanus | | synonym | +173242 | Oncorhynchus masou formosanum (Jordan & Oshima, 1919) | | authority | +173242 | Oncorhynchus masou formosanus | | scientific name | +173242 | Salmo formosanus Jordan & Oshima, 1919 | | authority | +173242 | Salmo formosanus | | synonym | +173242 | Taiwan salmon | | common name | +173307 | Hemicaranx | | scientific name | +173308 | bluntnose jack | bluntnose jack | common name | +173308 | Caranx leucurus Gunther, 1864 | | authority | +173308 | Caranx leucurus | | synonym | +173308 | Hemicaranx leucurus (Gunther, 1864) | | authority | +173308 | Hemicaranx leucurus | | scientific name | +173308 | little jack | | common name | +173308 | yellowfin jack | yellowfin jack | genbank common name | +173330 | Trachinotus | | scientific name | +174268 | Alcis | | scientific name | +174269 | Alcis repandata (Linnaeus, 1758) | | authority | +174269 | Alcis repandata | | scientific name | +174269 | Alcis repandatus | | synonym | +174269 | mottled beauty | | common name | +174269 | mottled beauty moth | | genbank common name | +174269 | Phalaena repandata Linnaeus, 1758 | | authority | +174269 | Phalaena repandata | | synonym | +175116 | Chloropsis | | scientific name | +175439 | Acanthurus flavescens Bennett, 1828 | | authority | +175439 | Acanthurus flavescens | | synonym | +175439 | lemon sailfin | | common name | +175439 | somber surgeonfish | | common name | +175439 | yellow sailfin tang | yellow sailfin tang | common name | +175439 | yellow tang | | genbank common name | +175439 | Zebrasoma flavescens (Bennett, 1828) | | authority | +175439 | Zebrasoma flavescens | | scientific name | +175823 | Aceros Hodgson 1844 | | authority | +175823 | Aceros | | scientific name | +175930 | Carpodacus erythrinus (Pallas, 1770) | | authority | +175930 | Carpodacus erythrinus | | scientific name | +175930 | Common rosefinch | | genbank common name | +175930 | Erythrina erythrina | | synonym | +175930 | Karmingimpel | | common name | +175930 | Loxia erythrina Pallas, 1770 | | authority | +175930 | Loxia erythrina | | synonym | +176013 | Ara chloroptera | | synonym | +176013 | Ara chloropterus Gray, 1859 | | authority | +176013 | Ara chloropterus Gray,GR, 1859 | | authority | +176013 | Ara chloropterus | | scientific name | +176013 | green-winged macaw | | common name | +176013 | red-and-green macaw | | genbank common name | +176014 | Ara macao (Linnaeus, 1758) | | authority | +176014 | Ara macao | | scientific name | +176014 | Psittacus macao Linnaeus, 1758 | | authority | +176014 | Psittacus macao | | synonym | +176014 | red-and-yellow macaw | | common name | +176014 | red-blue-and-yellow macaw | | common name | +176014 | Scarlet macaw | | genbank common name | +176015 | Aratinga solstitialis (Linnaeus, 1758) | | authority | +176015 | Aratinga solstitialis | | scientific name | +176015 | Aratinga solstitialis solstitialis | | synonym | +176015 | Psittacus solstitialis Linnaeus, 1758 | | authority | +176015 | Psittacus solstitialis | | synonym | +176015 | sun conure | | common name | +176015 | sun parakeet | | genbank common name | +176038 | Eolophus | | scientific name | +176039 | Eolophus roseicapilla | | scientific name | +176039 | Eolophus roseicapilla (Vieillot, 1817) | | authority | +176039 | Eolophus roseicapillus | | synonym | +176039 | Eolophus roseicapillus (Vieillot, 1817) | | authority | +176039 | galah | | genbank common name | +176039 | rose-breasted cockatoo | | common name | +176042 | Nestor | | scientific name | +176043 | Kaka | | genbank common name | +176043 | Nestor meridionalis (Gmelin, 1788) | | authority | +176043 | Nestor meridionalis | | scientific name | +176043 | New Zealand Kaka | | common name | +176043 | Psittacus meridionalis Gmelin, 1788 | | authority | +176043 | Psittacus meridionalis | | synonym | +176187 | mafugu | | common name | +176187 | namera-fugu | | common name | +176187 | purple puffer | | genbank common name | +176187 | Takifugu porphyreus | | scientific name | +176187 | Takifugu porphyreus (Temminck & Schlegel, 1850) | | authority | +176187 | Tetraodon porphyreus | | synonym | +176187 | Tetraodon porphyreus Temminck & Schlegel, 1850 | | authority | +176188 | finepatterned puffer | | genbank common name | +176188 | Fugu poecilonotus | | synonym | +176188 | komonfugu | | common name | +176188 | Takifugu poecilonotus | | scientific name | +176188 | Takifugu poecilonotus (Temminck & Schlegel, 1850) | | authority | +176188 | Tetraodon poecilonotus | | synonym | +176316 | Cicindela (Cicindela) maritima | | synonym | +176316 | Cicindela maritima Dejean, 1822 | | authority | +176316 | Cicindela maritima | | scientific name | +176316 | coast tiger beetle | | common name | +176316 | dune tiger beetle | | genbank common name | +176508 | Echimys macrurus | | synonym | +176508 | Long-tailed armored tree-rat | | genbank common name | +176508 | long-tailed tree rat | | common name | +176508 | Makalata macrura | | scientific name | +176508 | Makalata macrura (Wagner, 1842) | | authority | +177060 | Fugu vermicularis | | synonym | +177060 | pear puffer | | genbank common name | +177060 | shosaifugu | | common name | +177060 | Takifugu vermicularis | | scientific name | +177060 | Takifugu vermicularis (Temminck & Schlegel, 1850) | | authority | +177060 | Tetraodon vermicularis | | synonym | +177088 | Maconellicoccus | | scientific name | +177089 | hibiscus mealybug | | genbank common name | +177089 | Maconellicoccus hirsutus (Green, 1908) | | authority | +177089 | Maconellicoccus hirsutus | | scientific name | +177089 | Phenacoccus hirsutus | | synonym | +177089 | pink hibiscus mealybug | | common name | +177089 | pink mealybug | | common name | +177184 | Dark-brown pipistrelle | | genbank common name | +177184 | dark-brown serotine | | common name | +177184 | Eptesicus brunneus | | synonym | +177184 | Neoromicia bruneus | | synonym | +177184 | Neoromicia brunnea | | synonym | +177184 | Neoromicia brunneus | | scientific name | +177184 | Neoromicia brunneus (Thomas, 1880) | | authority | +178292 | Paragnetina | | scientific name | +178293 | embossed stone | | common name | +178293 | embossed stonefly | | genbank common name | +178293 | Paragnetina media | | scientific name | +178293 | Paragnetina media (Walker, 1852) | | authority | +178293 | Paragnetina sp. ROM 2010576 PMO014 | | includes | +179360 | Carangoides | | scientific name | +179362 | Carangoides otrynter (Jordan & Gilbert, 1883) | | authority | +179362 | Carangoides otrynter | | scientific name | +179362 | Caranx otrynter Jordan & Gilbert, 1883 | | authority | +179362 | Caranx otrynter | | synonym | +179362 | cojinoba | cojinoba | common name | +179362 | cojinova | cojinova | common name | +179362 | jurel chicuaca | | common name | +179362 | threadfin jack | | genbank common name | +179673 | Diachrysia | | scientific name | +179674 | burnished brass | | common name | +179674 | burnished brass moth | | genbank common name | +179674 | Diachrysia chrysitis (Linnaeus, 1758) | | authority | +179674 | Diachrysia chrysitis | | scientific name | +179674 | Phalaena chrysitis Linnaeus, 1758 | | authority | +179674 | Phalaena chrysitis | | synonym | +180173 | Cylindraspis | | scientific name | +180174 | Cylindraspis inepta (Guenther, 1873) | | authority | +180174 | Cylindraspis inepta | | scientific name | +180174 | Mauritius giant domed tortoise | | genbank common name | +180174 | saddle-backed Mauritius giant tortoise | | common name | +180174 | Testudo inepta Gunther, 1873 | | authority | +180174 | Testudo inepta | | synonym | +180214 | Caloptenus spretus | | synonym | +180214 | Caloptenus spretus Walsh, 1866 | | authority | +180214 | Melanoplus spretus | | scientific name | +180214 | Rocky Mounatin locust | | common name | +180214 | Rocky Mountain grasshopper | | genbank common name | +181096 | Corvus cornix Linnaeus, 1758 | | authority | +181096 | Corvus cornix | | scientific name | +181096 | Corvus corone cornix | | synonym | +181096 | hooded crow | | genbank common name | +181096 | hoodiecrow | | common name | +181096 | Nebelkraehe | | common name | +181099 | Coracias oriolus Linnaeus, 1758 | | authority | +181099 | Coracias oriolus | | synonym | +181099 | Eurasian golden oriole | | common name | +181099 | Eurasian golden-oriole | | genbank common name | +181099 | Oriolus oriolus (Linnaeus, 1758) | | authority | +181099 | Oriolus oriolus oriolus | | synonym | +181099 | Oriolus oriolus | | scientific name | +181099 | pirol | | common name | +181118 | Pseudopodoces | | scientific name | +181119 | Parus humilis | | synonym | +181119 | Podoces humilis Hume, 1871 | | authority | +181119 | Podoces humilis | | synonym | +181119 | Pseudopoces humilis | | synonym | +181119 | Pseudopodoces humilis (Hume, 1871) | | authority | +181119 | Pseudopodoces humilis | | scientific name | +181119 | Tibetan ground-jay | | common name | +181119 | Tibetan ground-tit | | genbank common name | +181329 | Hypsipyla | | scientific name | +181330 | cedar shoot borer | | common name | +181330 | cedar tip moth | | genbank common name | +181330 | Hypsipyla robusta | | scientific name | +181330 | Magiria robusta Moore, 1886 | | authority | +181330 | Magiria robusta | | synonym | +181330 | mahogany shoot borer | | common name | +181392 | Carapus | | scientific name | +181398 | Sirembo | | scientific name | +181399 | Brotula imberbis | | synonym | +181399 | Brotula imberbis Temminck & Schlegel, 1846 | | authority | +181399 | cusk-eel | cusk-eel | common name | +181399 | golden cusk | | genbank common name | +181399 | Sirembo imberbis | | scientific name | +181399 | Sirembo imberbis (Temminck & Schlegel, 1846) | | authority | +181421 | Caulophryne | | scientific name | +181422 | Caulophryne pelagica (Brauer, 1902) | | authority | +181422 | Caulophryne pelagica | | scientific name | +181422 | fanfin anglerfish | | genbank common name | +181422 | fanfin | | common name | +181422 | Melanocetus pelagicus Brauer, 1902 | | authority | +181422 | Melanocetus pelagicus | | synonym | +181436 | Ostichthys | | scientific name | +181437 | brocade perch | | common name | +181437 | deep-water squirrelfish | | common name | +181437 | giant squirrelfish | | common name | +181437 | Japanese soldierfish | | genbank common name | +181437 | Japanese squirrelfish | | common name | +181437 | Myripristis japonicus Cuvier, 1829 | | authority | +181437 | Myripristis japonicus | | synonym | +181437 | Ostichthys japonicus (Cuvier, 1829) | | authority | +181437 | Ostichthys japonicus | | scientific name | +181442 | Zenion | | scientific name | +181443 | Japanese dory | | genbank common name | +181443 | Japanese zenion | | common name | +181443 | Zenion japonicum Kamohara, 1934 | | authority | +181443 | Zenion japonicum | | scientific name | +181443 | Zenion japonicus | | synonym | +181473 | Arcos | | scientific name | +182256 | Alouatta fusca | | synonym | +182256 | Alouatta guariba | | scientific name | +182256 | brown howler monkey | | common name | +182256 | howler monkey | howler monkey | genbank common name | +182256 | Simia guariba Humboldt, 1812 | | authority | +182256 | Simia guariba | | synonym | +182935 | Mniotilta | | scientific name | +182936 | black and white warbler | | common name | +182936 | black-and-white warbler | | genbank common name | +182936 | Mniotilta varia (Linnaeus, 1766) | | authority | +182936 | Mniotilta varia | | scientific name | +182936 | Motacilla varia Linnaeus, 1766 | | authority | +182936 | Motacilla varia | | synonym | +182948 | Dendroica | | synonym | +182948 | Setophaga | | scientific name | +182948 | Setophaga Swainson, 1827 | | authority | +183176 | Xiphocolaptes | | scientific name | +183177 | Dendrocopos major (Linnaeus, 1758) | | authority | +183177 | Dendrocopos major | | synonym | +183177 | Dendrocopus major | | synonym | +183177 | Dendrocopus major Vieillot, 1818 | | authority | +183177 | Dryobates major | | synonym | +183177 | great rufous woodcreeper | | genbank common name | +183177 | great spotted woodpecker | | common name | +183177 | Picoides major | | synonym | +183177 | Picus major Linnaeus, 1758 | | authority | +183177 | Picus major | | synonym | +183177 | Xiphocolaptes major | | scientific name | +183652 | Peprilus | | scientific name | +183653 | American butterfish | | genbank common name | +183653 | dollar fish | | common name | +183653 | Peprilus triacanthus (Peck, 1804) | | authority | +183653 | Peprilus triacanthus | | scientific name | +183653 | Poronotus triacanthus | | synonym | +183653 | pumpkin scad | | common name | +183653 | sheephead | | common name | +183653 | Stromateus triacanthus Peck, 1804 | | authority | +183653 | Stromateus triacanthus | | synonym | +184238 | Crocodilus palustris Lesson, 1831 | | authority | +184238 | Crocodilus palustris | | synonym | +184238 | Crocodylus palustris Lesson, 1831 | | authority | +184238 | Crocodylus palustris | | scientific name | +184238 | Indian crocodile | | common name | +184238 | Indus crocodile | | common name | +184238 | marsh crocodile | | genbank common name | +184238 | mugger crocodile | | common name | +184439 | Centropristis | | scientific name | +184440 | black seabass | | common name | +184440 | black sea bass | | genbank common name | +184440 | Centropristis striata (Linnaeus, 1758) | | authority | +184440 | Centropristis striata | | scientific name | +184440 | Labrus striatus | | synonym | +184446 | Pristigenys | | scientific name | +184539 | Crioceris duodecempunctata | | synonym | +184539 | Crioceris duodecimpunctata (Linnaeus, 1758) | | authority | +184539 | Crioceris duodecimpunctata | | scientific name | +184539 | spotted asparagus beetle | | genbank common name | +184539 | twelve-spotted asparagus beetle | | common name | +184780 | African gharial | | common name | +184780 | African slender-snouted crocodile | | genbank common name | +184780 | Crocodylus cataphractus Cuvier 1825 | | authority | +184780 | Crocodylus cataphractus | | synonym | +184780 | Mecistops cataphractus Cuvier, 1825 | | authority | +184780 | Mecistops cataphractus | | scientific name | +184780 | Slender-snouted crocodile | | common name | +185585 | Crex | | scientific name | +185586 | corn crake | | genbank common name | +185586 | Crex crex (Linnaeus, 1758) | | authority | +185586 | Crex crex | | scientific name | +185586 | grass quail | | common name | +185586 | Rallus crex Linnaeus, 1758 | | authority | +185586 | Rallus crex | | synonym | +185747 | Quietula | | scientific name | +185748 | American shadow goby | | genbank common name | +185748 | Gillichthys y-cauda Jenkins & Evermann, 1889 | | authority | +185748 | Gillichthys y-cauda | | synonym | +185748 | Quietula y-cauda (Jenkins & Evermann, 1889) | | authority | +185748 | Quietula y-cauda | | scientific name | +185748 | Quietula ycauda | | synonym | +185748 | shadow goby | shadow goby | common name | +185749 | Lythrypnus | | scientific name | +185875 | Anisosticta | | scientific name | +185876 | Anisosticta 19-punctata | | synonym | +185876 | Anisosticta novemdecimpunctata (Linnaeus, 1758) | | authority | +185876 | Anisosticta novemdecimpunctata | | scientific name | +185876 | coccinelle des roseaux | | common name | +185876 | water ladybird beetle | | synonym | +185876 | water ladybird | | genbank common name | +186211 | giant chicken louse | | genbank common name | +186211 | Goniocotes gigas | | synonym | +186211 | Goniocotes gigas Taschenberg, 1879 | | authority | +186211 | Goniodes gigas | | scientific name | +186211 | Goniodes gigas (Taschenberg, 1879) | | authority | +186211 | large chicken louse | | common name | +186463 | Ruditapes | | scientific name | +186466 | Mizuhopecten | | scientific name | +186600 | Gonyosoma boulengeri | | scientific name | +186600 | Rhinoceros ratsnake | | genbank common name | +186600 | Rhynchophis boulengeri Macquard 1897 | | authority | +186600 | Rhynchophis boulengeri Mocquard, 1897 | | authority | +186600 | Rhynchophis boulengeri | | synonym | +186600 | Vietnamese longnose snake | | common name | +186601 | Sonora | | scientific name | +186990 | great Himalayan leaf-nosed bat | | common name | +186990 | great leaf-nosed bat | | common name | +186990 | great roundleaf bat | | genbank common name | +186990 | Hipposideros armiger | | scientific name | +186990 | Rhinolophus armiger Hodgson, 1835 | | authority | +186990 | Rhinolophus armiger | | synonym | +187007 | Eastern bent-winged bat | | common name | +187007 | Japanese long-fingered bat | | genbank common name | +187007 | Miniopterus fuliginosus | | scientific name | +187007 | Miniopterus schreibersii fuliginosus Hodgson, 1835 | | authority | +187007 | Miniopterus schreibersii fuliginosus | | synonym | +187007 | Vespertilio fuliginosa Hodgson, 1835 | | authority | +187007 | Vespertilio fuliginosa | | synonym | +187414 | Amblyospiza | | scientific name | +187415 | Amblyospiza albifrons | | scientific name | +187415 | Amblyospiza albifrons (Vigors, 1831) | | authority | +187415 | grosbeak weaver | | genbank common name | +187415 | Pyrrhula albifrons | | synonym | +187415 | Pyrrhula albifrons Vigors, 1831 | | authority | +187415 | thick-billed weaver | | common name | +188106 | Cetoscarus | | scientific name | +188107 | bicolor parrotfish | | genbank common name | +188107 | bicolour parrotfish | | common name | +188107 | Cetoscarus bicolor (Ruppell, 1829) | | authority | +188107 | Cetoscarus bicolor | | scientific name | +188107 | Scarus bicolor Ruppell, 1829 | | authority | +188107 | Scarus bicolor | | synonym | +188113 | Hipposcarus | | scientific name | +188374 | Ardeola | | scientific name | +188380 | Ardea cinnamomea Gmelin, 1789 | | authority | +188380 | Ardea cinnamomea | | synonym | +188380 | chestnut bittern | | common name | +188380 | cinnamon bittern | | genbank common name | +188380 | Ixobrychus cinnamomeus (J. F. Gmelin, 1789) | | authority | +188380 | Ixobrychus cinnamomeus | | scientific name | +188567 | Aselliscus | | scientific name | +188568 | Asellia stoliczkana Dobson, 1871 | | authority | +188568 | Asellia stoliczkana | | synonym | +188568 | Aselliscus stoliczkanus (Dobson, 1871) | | authority | +188568 | Aselliscus stoliczkanus | | scientific name | +188568 | Stoliczka's Asian trident bat | | common name | +188568 | Stoliczka's trident bat | | genbank common name | +188718 | Hyphessobrycon | | scientific name | +188718 | Megalamphodus | | synonym | +188763 | Chimpanzee cytomegalovirus | | genbank common name | +188763 | Panine betaherpesvirus 2 | | scientific name | +188763 | Panine herpesvirus 2 | | equivalent name | +188763 | PoHV-4 | | acronym | +188763 | Pongine herpesvirus 4 | | equivalent name | +189497 | Echidna | | scientific name | +189919 | Pseudacris | | scientific name | +189921 | Saurenchelys | | scientific name | +189922 | blacktail buckbill eel | | genbank common name | +189922 | bucktail duckbill | | common name | +189922 | Chlopsis fierasfer Jordan & Snyder, 1901 | | authority | +189922 | Chlopsis fierasfer | | synonym | +189922 | Saurenchelys fierasfer (Jordan & Snyder, 1901) | | authority | +189922 | Saurenchelys fierasfer | | scientific name | +190368 | Xanthorhoe | | scientific name | +190369 | dark-barred twin-spot carpet | | genbank common name | +190369 | Phalaena ferrugata Clerck, 1759 | | authority | +190369 | Phalaena ferrugata | | synonym | +190369 | red twin-spot | | common name | +190369 | Xanthorhoe ferrugata | | scientific name | +190476 | Alligator latirostris | | synonym | +190476 | Broad-snouted caiman | | genbank common name | +190476 | brown-snouted caiman | | common name | +190476 | Caiman latirostris (Daudin, 1802) | | authority | +190476 | Caiman latirostris | | scientific name | +190476 | Crocodilus latirostris Daudin, 1802 | | authority | +190476 | Crocodilus latirostris | | synonym | +190476 | Crocodylus latirostris Daudin, 1802 | | authority | +190476 | Crocodylus latirostris | | synonym | +190476 | Jacare latirostris | | synonym | +191198 | Buergeria ocycephalus | | synonym | +191198 | Buergeria oxycephala (Boulenger, 1900) | | authority | +191198 | Buergeria oxycephala | | scientific name | +191198 | Hainan stream treefrog | | common name | +191198 | Hylorana oxycephalus | | synonym | +191198 | Polypedates oxycephalus | | synonym | +191198 | Rana oxycephalus | | synonym | +191198 | red-headed flying frog | | genbank common name | +191198 | Rhacophorus oxycephalus Boulenger, 1900 | | authority | +191198 | Rhacophorus oxycephalus | | synonym | +191206 | dotted bubble-nest frog | | common name | +191206 | hill garden bug-eyed frog | | genbank common name | +191206 | Ixalus asper Boulenger, 1886 | | authority | +191206 | Ixalus asper | | synonym | +191206 | Philautus asperrimus | | synonym | +191206 | Philautus asper | | synonym | +191206 | Rhacophorus asperrimus | | synonym | +191206 | Rhacophorus (Philautus) asperrimus | | synonym | +191206 | Theloderma asperum (Boulenger, 1886) | | authority | +191206 | Theloderma asperum | | scientific name | +191206 | white-banded small treefrog | | common name | +191398 | Boloria selene (Denis & Schiffermuller, 1775) | | authority | +191398 | Boloria selene | | scientific name | +191398 | Clossiana selene | | synonym | +191398 | Papilio selene Denis & Schiffermuller, 1775 | | authority | +191398 | Papilio selene | | synonym | +191398 | silver-bordered fritillary | | common name | +191398 | silver meadow fritillary | | genbank common name | +191398 | small pearl-bordered fritillary | | common name | +191473 | Corsican painted frog | | genbank common name | +191473 | Corsica painted frog | | common name | +191473 | Discoglossus montalentii Lanza, Nascetti, Capula, and Bullini, 1984 | | authority | +191473 | Discoglossus montalentii | | scientific name | +191473 | Discoglossus montalenti | | synonym | +191474 | Discoglossus pictus sardus | | synonym | +191474 | Discoglossus pictus var. sardus | | synonym | +191474 | Discoglossus sardus | | scientific name | +191474 | Discoglossus sardus Tschudi, 1837 | | authority | +191474 | Pseudes sardus | | synonym | +191474 | Rana sardus | | synonym | +191474 | Sardinian painted frog | | common name | +191474 | Sardinia painted frog | | common name | +191474 | Tyrrhenian painted frog | | genbank common name | +191476 | Caucasian parsley frog | | common name | +191476 | Caucasus parsley frog | | genbank common name | +191476 | Pelodytes caucasicus Boulenger, 1896 | | authority | +191476 | Pelodytes caucasicus | | scientific name | +191476 | Pelodytes punctatus caucasicus | | synonym | +191477 | Bombina fusca | | synonym | +191477 | Bombinator fuscus | | synonym | +191477 | Bufo fuscus Laurenti, 1768 | | authority | +191477 | Bufo fuscus | | synonym | +191477 | common Eurasian spadefoot toad | | common name | +191477 | common spadefoot | | common name | +191477 | common spadefoot toad | | genbank common name | +191477 | garlic toad | | common name | +191477 | Pelobates fuscus (Laurenti, 1768) | | authority | +191477 | Pelobates fuscus | | scientific name | +191477 | Rana fusca | | synonym | +191716 | Archips rosana | | scientific name | +191716 | Archips rosanus | | synonym | +191716 | European leafroller | | genbank common name | +191716 | Heckenwickler | | common name | +191716 | Phalaena rosana Linnaeus, 1758 | | authority | +191716 | Phalaena rosana | | synonym | +191716 | rose tortrix | | common name | +191716 | rose tortrix moth | | common name | +191716 | tordeuse des buissons | | common name | +191812 | Somniosus | | scientific name | +191813 | Greenland shark | | common name | +191813 | Greenland sleeper shark | | genbank common name | +191813 | Somniosus microcephalus (Bloch & Schneider, 1801) | | authority | +191813 | Somniosus microcephalus | | scientific name | +191813 | Squalus microcephalus Bloch & Schneider, 1801 | | authority | +191813 | Squalus microcephalus | | synonym | +191873 | Common fat-tailed mouse opossum | | genbank common name | +191873 | Common fat-tailed opossum | | common name | +191873 | Didelphis pusilla Desmarest, 1804 | | authority | +191873 | Didelphis pusilla | | synonym | +191873 | Thylamys pusilla (Desmarest, 1804) | | authority | +191873 | Thylamys pusilla | | synonym | +191873 | Thylamys pusillus (Desmarest, 1804) | | authority | +191873 | Thylamys pusillus | | scientific name | +191975 | Paralucia | | scientific name | +191976 | dull copper | | genbank common name | +191976 | Eltham copper | | common name | +191976 | Lucia pyrodiscus Doubleday, 1847 | | authority | +191976 | Lucia pyrodiscus | | synonym | +191976 | Paralucia pyrodiscus | | scientific name | +192188 | Cydia molesta | | synonym | +192188 | Grapholita molesta (Busck, 1916) | | authority | +192188 | Grapholita molesta | | scientific name | +192188 | Laspeyresia molesta Busck, 1916 | | authority | +192188 | Laspeyresia molesta | | synonym | +192188 | oriental fruit moth | | genbank common name | +192188 | oriental peach moth | | common name | +192190 | Pandemis Hubner, 1825 | | authority | +192190 | Pandemis | | scientific name | +192191 | apple brown tortrix | | genbank common name | +192191 | dark fruit-tree tortrix | | common name | +192191 | Pandemis heparana | | scientific name | +192191 | Tortrix heparana Denis & Schiffermuller, 1775 | | authority | +192191 | Tortrix heparana | | synonym | +192206 | Callaeas | | scientific name | +192207 | Callaeas cinerea | | synonym | +192207 | Callaeas cinereus (Gmelin, JF, 1788) | | authority | +192207 | Callaeas cinereus | | scientific name | +192207 | Glaucopis cinerea cinerea | | synonym | +192207 | Glaucopis cinerea Gmelin, 1788 | | authority | +192207 | Glaucopis cinerea | | synonym | +192207 | kokako | | common name | +192207 | South Island kokako | | genbank common name | +192592 | Erpeton | | scientific name | +192593 | Erpeton tentaculatum LaCepede, 1800 | | authority | +192593 | Erpeton tentaculatum | | scientific name | +192593 | Herpeton tentaculatum | | synonym | +192593 | tentacled snake | | common name | +192593 | tentacle snake | | genbank common name | +192736 | Scinax | | scientific name | +192736 | Scinax Wagler, 1830 | | authority | +192736 | snouted treefrogs | | genbank common name | +192744 | glass frogs | glass frogs | genbank common name | +192744 | Hyalinobatrachium | | scientific name | +192752 | Lithobates | | scientific name | +194199 | black-spotted tree frog | black-spotted tree frog | common name | +194199 | Hyla ocularis | | synonym | +194199 | Hylodes ocularis Holbrook, 1838 | | authority | +194199 | Hylodes ocularis | | synonym | +194199 | least tree frog | | common name | +194199 | little grass frog | | genbank common name | +194199 | Pseudacris ocularis (Bosc & Daudin, 1801) | | authority | +194199 | Pseudacris ocularis | | scientific name | +194917 | Ceratitis (Ceratalaspis) cosyra | | synonym | +194917 | Ceratitis cosyra | | scientific name | +194917 | Ceratitis cosyra (Walker, 1849) | | authority | +194917 | mango fruit fly | | genbank common name | +194917 | Marula fly | | common name | +194917 | Pardalaspis cosyra | | synonym | +195315 | Narcine | | scientific name | +195593 | Ancylopsetta | | scientific name | +195595 | Aseraggodes | | scientific name | +195596 | Aseraggodes kobensis | | scientific name | +195596 | Aseraggodes kobensis (Steindachner, 1896) | | authority | +195596 | Kobe sole | | common name | +195596 | milky spotted sole | | genbank common name | +195596 | Solea (Achirus) kobensis | | synonym | +195596 | Solea kobensis Steindachner, 1896 | | authority | +195596 | Solea kobensis | | synonym | +195651 | Symphurus Rafinesque, 1810 | | authority | +195651 | Symphurus | | scientific name | +195653 | drab tonguefish | | common name | +195653 | duskycheek tonguefish | | genbank common name | +195653 | Pleuronectes plagusia Bloch & Schneider, 1801 | | authority | +195653 | Pleuronectes plagusia | | synonym | +195653 | Symphurus plagusia (Bloch & Schneider, 1801) | | authority | +195653 | Symphurus plagusia | | scientific name | +195821 | Anableps anableps (Linnaeus, 1758) | | authority | +195821 | Anableps anableps | | scientific name | +195821 | Cobitis anableps Linnaeus, 1758 | | authority | +195821 | Cobitis anableps | | synonym | +195821 | four eyed fish | | common name | +195821 | largescale foureyes | | genbank common name | +196249 | Antaresia | | scientific name | +196387 | black glove wallaby | | common name | +196387 | Halmaturus irma Jourdan, 1837 | | authority | +196387 | Halmaturus irma | | synonym | +196387 | Macropus irma | | synonym | +196387 | Notamacropus irma (Jourdan, 1837) | | authority | +196387 | Notamacropus irma | | scientific name | +196387 | western bush wallaby | | genbank common name | +196770 | Catostomus macrolepidotus Lesueur, 1817 | | authority | +196770 | Catostomus macrolepidotus | | synonym | +196770 | Moxostoma macrolepidotum (Lesueur, 1817) | | authority | +196770 | Moxostoma macrolepidotum | | scientific name | +196770 | northern redhorse | | common name | +196770 | shorthead redhorse | | genbank common name | +196774 | Moxostoma pappillosum (Cope, 1870) | | authority | +196774 | Moxostoma pappillosum | | scientific name | +196774 | Ptychostomus pappillosus Cope, 1870 | | authority | +196774 | Ptychostomus pappillosus | | synonym | +196774 | slender redhorse | | common name | +196774 | suckermouth redhorse | | common name | +196774 | v-lip redhorse | | genbank common name | +196781 | Mexican jumprock | | common name | +196781 | Mexican redhorse | | genbank common name | +196781 | Moxostoma austrinum Bean, 1880 | | authority | +196781 | Moxostoma austrinum | | scientific name | +196781 | Scartomyzon austrinus (Bean, 1880) | | authority | +196781 | Scartomyzon austrinus | | synonym | +197464 | Agalychnis callidryas (Cope, 1862) | | authority | +197464 | Agalychnis callidryas | | scientific name | +197464 | akame-ama-gaeru | | common name | +197464 | gaudy leaf frog | | common name | +197464 | Hyla callidryas (Cope, 1862) | | authority | +197464 | Hyla callidryas | | synonym | +197464 | Phyllomedusa callidryas | | synonym | +197464 | red-eyed leaf frog | | genbank common name | +197464 | red-eyed treefrog | red-eyed treefrog | common name | +198026 | Melanitta | | scientific name | +198027 | Anas nigra Linnaeus, 1758 | | authority | +198027 | Anas nigra | | synonym | +198027 | common scoter | | common name | +198027 | European common scoter | | genbank common name | +198027 | Melanitta nigra (Linnaeus, 1758) | | authority | +198027 | Melanitta nigra | | scientific name | +198027 | Oidemia nigra | | synonym | +198323 | Cinara (Cupressobium) tujafilina | | synonym | +198323 | Cinara tujafilina (del Guercio, 1908) | | authority | +198323 | Cinara tujafilina (Del Guercio, 1909) | | authority | +198323 | Cinara tujafilina | | scientific name | +198323 | cypress pine aphid | | genbank common name | +198323 | Lachniella tujafilina | | synonym | +198323 | thuja aphid | | common name | +198633 | Eristalis | | scientific name | +198635 | drone fly | | genbank common name | +198635 | Eristalis tenax (Linnaeus, 1758) | | authority | +198635 | Eristalis tenax | | scientific name | +198635 | Musca tenax Linnaeus, 1758 | | authority | +198635 | Musca tenax | | synonym | +198635 | rat-tailed maggot | | common name | +198938 | Amphispiza belli (Cassin, 1850) | | authority | +198938 | Amphispiza belli | | synonym | +198938 | Artemisiospiza belli | | scientific name | +198938 | Bell's finch | | common name | +198938 | Bell's sparrow | | common name | +198938 | Emberiza belli Cassin, 1850 | | authority | +198938 | Emberiza belli | | synonym | +198938 | sage sparrow | | genbank common name | +201800 | Pantherophis | | scientific name | +201991 | Ciccaba occidentalis | | synonym | +201991 | Spotted owl | | genbank common name | +201991 | Strix occidentalis | | scientific name | +201991 | Strix occidentalis (Xantus de Vesey, 1860) | | authority | +201991 | Syrnium occidentale | | synonym | +201991 | Syrnium occidentale Xantus, 1860 | | authority | +201992 | Mexican spotted owl | | genbank common name | +201992 | mountain spotted owl | | common name | +201992 | Strix occidentalis lucida (Nelson, 1903) | | authority | +201992 | Strix occidentalis lucida | | scientific name | +201992 | Syrnium occidentale lucidum Nelson, 1903 | | authority | +201992 | Syrnium occidentale lucidum | | synonym | +202063 | Antarctic yellowbelly rockcod | | common name | +202063 | Notothenia coriiceps neglecta | | synonym | +202063 | Notothenia neglecta neglecta | | synonym | +202063 | Notothenia neglecta Nybelin, 1951 | | authority | +202063 | Notothenia neglecta | | scientific name | +202063 | yellowbelly rockcod | yellowbelly rockcod | genbank common name | +202455 | Aulacorthum | | scientific name | +202456 | Acyrthosiphon solani | | synonym | +202456 | Aulacorthum solani (Kaltenbach, 1843) | | authority | +202456 | Aulacorthum solani | | scientific name | +202456 | foxglove aphid | | common name | +202456 | potato aphid | potato aphid | genbank common name | +202595 | Pteragogus | | scientific name | +202839 | Colopus wahlbergi | | includes | +202839 | Colopus wahlbergii Peters, 1869 | | authority | +202839 | Colopus wahlbergii | | synonym | +202839 | Kalahari ground gecko | | common name | +202839 | Pachydactylus wahlbergii Peters, 1869 | | authority | +202839 | Pachydactylus wahlbergii | | scientific name | +202839 | Wahlberg's Kalahari gecko | | genbank common name | +203116 | common marinka | common marinka | common name | +203116 | Dapeghat snowtrout | | common name | +203116 | Grot snowtrout | | common name | +203116 | Ladakh snowtrout | | common name | +203116 | Sattar snowtrout | | genbank common name | +203116 | Satter gaad | | common name | +203116 | Schizocypris curvifrons | | synonym | +203116 | Schizopyge curvifrons (Heckel, 1838) | | authority | +203116 | Schizopyge curvifrons | | synonym | +203116 | Schizothorax curvifrons Heckel, 1838 | | authority | +203116 | Schizothorax curvifrons | | scientific name | +203276 | Aboma | | scientific name | +203277 | Aboma etheostoma Jordan & Starks, 1895 | | authority | +203277 | Aboma etheostoma | | scientific name | +203277 | Gobiosoma etheostoma | | synonym | +203277 | scaly boy | | common name | +203277 | scaly goby | | genbank common name | +203558 | Clay-colored Robin | | genbank common name | +203558 | Turdus grayi Bonaparte, 1838 | | authority | +203558 | Turdus grayii | | synonym | +203558 | Turdus grayi | | scientific name | +203558 | Yigirro | | common name | +203786 | Bradypterus | | scientific name | +204813 | Lagocephalus | | scientific name | +204814 | Gastrophysus lunaris | | synonym | +204814 | green pufferfish | green pufferfish | common name | +204814 | green rough-backed puffer | | common name | +204814 | Lagocephalus lunaris (Bloch & Schneider, 1801) | | authority | +204814 | Lagocephalus lunaris | | scientific name | +204814 | lunartail puffer | | genbank common name | +204814 | Sphoerodon lunaris | | synonym | +204814 | Tetrodon lunaris Bloch & Schneider, 1801 | | authority | +204814 | Tetrodon lunaris | | synonym | +204942 | Beal's-eyed turtle | | genbank common name | +204942 | Beal's four-eyed turtle | | common name | +204942 | Cistuda bealei Gray, 1831 | | authority | +204942 | Cistuda bealei | | synonym | +204942 | Clemmys bealii Strauch, 1862 | | authority | +204942 | Clemmys bealii | | synonym | +204942 | Sacalia bealei (Gray, 1831) | | authority | +204942 | Sacalia bealei | | scientific name | +204965 | Chinese box turtle | | genbank common name | +204965 | Cistoclemmys flavomarginata Gray, 1863 | | authority | +204965 | Cistoclemmys flavomarginata | | synonym | +204965 | Cuora flavomarginata (Gray, 1863) | | authority | +204965 | Cuora flavomarginata | | scientific name | +204965 | Cyclemys flavomarginata | | synonym | +204965 | snake-eating turtle | | common name | +204968 | Cistoclemmys galbinifrons | | synonym | +204968 | Cuora galbinifrons Bourret, 1939 | | authority | +204968 | Cuora galbinifrons | | scientific name | +204968 | flowerback box turtle | | genbank common name | +204968 | Indochinese box turtle | | common name | +204968 | Vietnamese box turtle | Vietnamese box turtle | common name | +204969 | Pelodiscus | | scientific name | +205083 | Dreissena rostriformis | | scientific name | +205123 | bullseye snakehead | | common name | +205123 | Channa marulia | | synonym | +205123 | Channa marulius (Hamilton, 1822) | | authority | +205123 | Channa marulius | | scientific name | +205123 | giant snakehead | giant snakehead | common name | +205123 | great snakehead | | genbank common name | +205123 | Ophicephalus marulius Hamilton, 1822 | | authority | +205123 | Ophicephalus marulius | | synonym | +205131 | Mystus | | scientific name | +205595 | Genetta maculata (Gray, 1830) | | authority | +205595 | Genetta maculata | | scientific name | +205595 | Genetta rubiginosa Pucheran, 1855 | | authority | +205595 | Genetta rubiginosa | | synonym | +205595 | panther genet | | genbank common name | +205595 | rusty-spotted genet | | common name | +206143 | Ishikawa nozawae | | synonym | +206143 | Pampus argenteus (Euphrasen, 1788) | | authority | +206143 | Pampus argenteus | | scientific name | +206143 | Pampus nozawae | | synonym | +206143 | silver pomfret | | genbank common name | +206143 | Stromateoides argenteus | | synonym | +206143 | Stromateus argenteus Euphrasen, 1788 | | authority | +206143 | Stromateus argenteus | | synonym | +206143 | zobaidy | | common name | +206427 | Calandra linearis | | synonym | +206427 | Calandra (Sitophilus) linearis | | synonym | +206427 | Sitophilus linearis Hustache, 1930 | | authority | +206427 | Sitophilus linearis | | scientific name | +206427 | tamarind pod-borer | | common name | +206427 | tamarind seed borer | | common name | +206427 | tamarind weevil | | genbank common name | +206429 | Rhabdalestes | | scientific name | +208071 | Curruca cantillans | | scientific name | +208071 | Eastern subalpine warbler | | genbank common name | +208071 | Motacilla cantillans Pallas, 1764 | | authority | +208071 | Motacilla cantillans | | synonym | +208071 | subalpine warbler | | common name | +208071 | Sylvia cantillans | | synonym | +209165 | Ompok | | scientific name | +209478 | Ixalus femoralis Gunther, 1864 | | authority | +209478 | Ixalus femoralis | | synonym | +209478 | Kirtixalus femoralis | | synonym | +209478 | Philautus femoralis | | synonym | +209478 | plain green bush frog | | common name | +209478 | Pseudophilautus femoralis (Guenther, 1864) | | authority | +209478 | Pseudophilautus femoralis | | scientific name | +209478 | southwestern bubble-nest frog | | genbank common name | +209479 | gold striped tree frog | | common name | +209479 | Hyla aurifasciata Kuhl & Van Hasselt, 1822 | | authority | +209479 | Hyla aurifasciata | | synonym | +209479 | Hyla aurifasciatus | | synonym | +209479 | Ixalus aurifasciatus | | synonym | +209479 | Java bubble-nest frog | | genbank common name | +209479 | Orchestes aurifasciatus | | synonym | +209479 | Philautus aurifasciatus | | scientific name | +209479 | Rhacophorus aurifasciatus | | synonym | +209479 | Rhacophorus (Philautus) aurifasciatus | | synonym | +209480 | Boulenger's bubble-nest frog | | genbank common name | +209480 | Ixalus signatus Boulenger, 1882 | | authority | +209480 | Ixalus signatus | | synonym | +209480 | Philautus signatus | | synonym | +209480 | Pseudophilautus signatus | | synonym | +209480 | quartet bush frog | | common name | +209480 | Raorchestes signatus | | scientific name | +209678 | Proceratophrys Miranda-Ribeiro, 1920 | | authority | +209678 | Proceratophrys | | scientific name | +209679 | Bahaia smooth horned frog | | common name | +209679 | Bioe's frog | | genbank common name | +209679 | Ceratophrys boiei | | synonym | +209679 | Ceratophrys boiei Wied-Neuwied, 1824 | | authority | +209679 | Ceratophrys dorsata boiei | | synonym | +209679 | Proceratophrys boiei | | scientific name | +209679 | Proceratophrys boiei (Wied-Neuwied, 1824) | | authority | +209679 | Stombus boiei | | synonym | +209679 | Stombus bojei | | synonym | +209680 | Eupsophus | | scientific name | +210138 | Eleutheronema | | scientific name | +210139 | blind tassel-fish | | common name | +210139 | blue salmon | | common name | +210139 | blue threadfin | | common name | +210139 | Eleutheronema tetradactylum | | scientific name | +210139 | Eleutheronema tetradactylum (Shaw, 1804) | | authority | +210139 | Indian salmon | | genbank common name | +210139 | Polynemus tetradactylus Shaw, 1804 | | authority | +210139 | Polynemus tetradactylus | | synonym | +210202 | Japanese gliding frog | | genbank common name | +210202 | Polypedates schlegelii Gunther, 1858 | | authority | +210202 | Polypedates schlegelii | | synonym | +210202 | shureger frog | | common name | +210202 | Zhangixalus schlegelii (Gunther, 1858) | | authority | +210202 | Zhangixalus schlegelii | | scientific name | +210409 | Japanese blue crab | | common name | +210409 | Neptunus trituberculatus | | synonym | +210409 | Portunus (Portunus) trituberculatus | | synonym | +210409 | Portunus trituberculatus (Miers, 1876) | | authority | +210409 | Portunus trituberculatus | | scientific name | +210409 | swimming crab | | genbank common name | +210425 | Proteus | Proteus | scientific name | +210570 | Microstoma | Microstoma | scientific name | +210572 | Parachela | Parachela | scientific name | +210572 | Parachela Steindachner, 1881 | | authority | +210578 | Centropogon | Centropogon | scientific name | +210581 | Gouania | Gouania | scientific name | +210590 | Ophidion | Ophidion | scientific name | +210591 | Scuticaria | Scuticaria | scientific name | +210628 | Macrognathus | | scientific name | +211510 | blue-crowned conure | | common name | +211510 | Blue-crowned parakeet | | genbank common name | +211510 | Psittacara acuticaudatus | | synonym | +211510 | Psittacara acuticaudatus (Vieillot, 1818) | | synonym | +211510 | sharp-tailed conure | | common name | +211510 | Thectocercus acuticaudatus | | scientific name | +211510 | Thectocercus acuticaudatus (Vieillot, 1818) | | authority | +211679 | Aburria pipile | | synonym | +211679 | common piping guan | | common name | +211679 | Crax pipile | | synonym | +211679 | Crax pipile von Jacquin, 1784 | | authority | +211679 | Pipile pipile | | scientific name | +211679 | Trinidad piping guan | | genbank common name | +211967 | Centrocercus minimus | | scientific name | +211967 | Centrocercus minimus Young, Braun, Oyler-McCance, Hupp & Quinn, 2000 | | authority | +211967 | Centrocercus urophasianus minimus | | synonym | +211967 | Gunnison sage grouse | | common name | +211967 | Gunnison sage-grouse | | genbank common name | +212358 | Boana albomarginata | | scientific name | +212358 | Boana albomarginata (Spix, 1824) | | authority | +212358 | Hyla albomarginata Spix, 1824 | | authority | +212358 | Hyla albomarginata | | synonym | +212358 | Hypsiboas albomarginata | | synonym | +212358 | Hypsiboas albomarginatus (Spix, 1824) | | authority | +212358 | Hypsiboas albomarginatus | | synonym | +212358 | white-banded tree frog | | genbank common name | +212358 | white-edged treefrog | | common name | +213803 | marbled tree frog | | common name | +213803 | milky treefrog | | common name | +213803 | Phrynohyas venulosa | | synonym | +213803 | Trachycephalus venulosus (Laurenti, 1768) | | authority | +213803 | Trachycephalus venulosus | | scientific name | +213803 | veined treefrog | | genbank common name | +213803 | warty tree frog | | common name | +213858 | Coluber quatuorlineatus sauromates | | synonym | +213858 | Coluber sauromates Pallas, 1811 | | authority | +213858 | Coluber sauromates | | synonym | +213858 | Eastern four-line ratsnake | | common name | +213858 | Elaphe quatuorlineata sauromates | | synonym | +213858 | Elaphe sauromates | | scientific name | +213858 | Sarmatian rat snake | | genbank common name | +214017 | Acronicta dactylina Grote, 1874 | | authority | +214017 | Acronicta dactylina | | scientific name | +214017 | Acronycta dactylina Grote, 1874 | | authority | +214017 | Acronycta dactylina | | synonym | +214017 | alder dagger moth | | genbank common name | +214017 | fingered dagger moth | | common name | +214018 | Acronicta hasta | | scientific name | +214018 | Acronycta hasta Guenee, 1852 | | authority | +214018 | Acronycta hasta | | synonym | +214018 | cherry dagger moth | | genbank common name | +214018 | speared dagger moth | | common name | +214130 | Euchaetes Harris, 1841 | | authority | +214130 | Euchaetes | | scientific name | +214131 | Euchaetes egle | | scientific name | +214131 | milkweed moth | | common name | +214131 | milkweed tussock moth | | genbank common name | +214131 | Phalaena egle Drury, 1773 | | authority | +214131 | Phalaena egle | | synonym | +214132 | Eulithis | | scientific name | +214133 | Eulithis diversilineata | | scientific name | +214133 | grapevine looper | | common name | +214133 | lesser grapevine looper | | genbank common name | +214133 | Petrophora diversilineata Hubner, 1813 | | authority | +214133 | Petrophora diversilineata | | synonym | +214156 | Apantesis virguncula (Kirby, 1837) | | authority | +214156 | Apantesis virguncula | | scientific name | +214156 | Callimorpha virguncula Kirby, 1837 | | authority | +214156 | Callimorpha virguncula | | synonym | +214156 | Grammia virguncula (Kirby, 1837) | | authority | +214156 | Grammia virguncula | | synonym | +214156 | little virgin moth | | common name | +214156 | little virgin tiger moth | | genbank common name | +214160 | Haploa Hubner, 1820 | | authority | +214160 | Haploa | | scientific name | +214161 | Callimorpha confusa Lyman, 1887 | | authority | +214161 | Callimorpha confusa | | synonym | +214161 | confused haploa | | genbank common name | +214161 | Haploa confusa (Lyman, 1887) | | authority | +214161 | Haploa confusa | | scientific name | +214161 | Lyman's haploa | | common name | +214170 | Hydraecia | | scientific name | +214171 | Hydraecia micacea (Esper, 1789) | | authority | +214171 | Hydraecia micacea | | scientific name | +214171 | Phalaena micacea Esper, 1789 | | authority | +214171 | Phalaena micacea | | synonym | +214171 | potato stem borer | | common name | +214171 | rosy rustic | | genbank common name | +214181 | common swift moth | | genbank common name | +214181 | garden swift moth | | common name | +214181 | Korscheltellus lupulina (Linnaeus, 1758) | | authority | +214181 | Korscheltellus lupulina | | synonym | +214181 | Korscheltellus lupulinus | | scientific name | +214181 | Phalaena lupulina Linnaeus, 1758 | | authority | +214181 | Phalaena lupulina | | synonym | +214181 | Pharmacis lupulina | | synonym | +214293 | Orthosia revicta (Morrison, 1876) | | authority | +214293 | Orthosia revicta | | scientific name | +214293 | rusty whitesided caterpillar | | genbank common name | +214293 | subdued quaker | | common name | +214293 | Taeniocampa revicta Morrison, 1876 | | authority | +214293 | Taeniocampa revicta | | synonym | +214331 | Pyrrharctia Packard, 1864 | | authority | +214331 | Pyrrharctia | | scientific name | +214332 | black-ended bear | | common name | +214332 | Isabella tiger moth | | common name | +214332 | Phalaena isabella Smith, 1797 | | authority | +214332 | Phalaena isabella | | synonym | +214332 | Pyrrharctia isabella | | scientific name | +214332 | woolly bear | | genbank common name | +214365 | Spilosoma Curtis, 1825 | | authority | +214365 | Spilosoma | | scientific name | +214366 | Bombyx virginica Fabricius, 1798 | | authority | +214366 | Bombyx virginica | | synonym | +214366 | Spilosoma virginica | | synonym | +214366 | Spilosoma virginicum (Fabricius, 1798) | | authority | +214366 | Spilosoma virginicum | | scientific name | +214366 | Virginia ermine moth | | common name | +214366 | Virginian tiger moth | | genbank common name | +214366 | yellow bear | | common name | +214430 | Scortum | | scientific name | +214431 | barcoo grunter | | genbank common name | +214431 | jade perch | | common name | +214431 | Scortum barcoo (McCulloch & Waite, 1917) | | authority | +214431 | Scortum barcoo | | scientific name | +214431 | Therapon barcoo McCulloch & Waite, 1917 | | authority | +214431 | Therapon barcoo | | synonym | +214449 | African giant shrew | | common name | +214449 | Crocidura occidentalis | | synonym | +214449 | Crocidura oliveri | | synonym | +214449 | Crocidura olivieri (Lesson, 1827) | | authority | +214449 | Crocidura olivieri | | scientific name | +214449 | Olivier's shrew | | genbank common name | +214486 | black rockfish | black rockfish | common name | +214486 | Korean black rockfish | Korean black rockfish | common name | +214486 | Korean rockfish | | common name | +214486 | Schlegel's black rockfish | | genbank common name | +214486 | Sebastes schlegelii Hilgendorf, 1880 | | authority | +214486 | Sebastes schlegelii | | scientific name | +214486 | Sebastes schlegeli | | synonym | +214687 | Musa acuminata subsp. malaccensis (Ridl.) N.W.Simmonds, 1957 | | authority | +214687 | Musa acuminata subsp. malaccensis | | scientific name | +214687 | Musa acuminata var. malaccensis (Ridl.) Nasution | | authority | +214687 | Musa acuminata var. malaccensis | | synonym | +214687 | pisang utan | | common name | +214687 | true apple banana | | common name | +214687 | wild Malaysian banana | | genbank common name | +215328 | Halieutaea | | scientific name | +215329 | batfish | | genbank common name | +215329 | Halieutaea stellata | | scientific name | +215329 | Halieutaea stellata (Vahl, 1797) | | authority | +215329 | handfish | | common name | +215329 | Lophius stellatus | | synonym | +215329 | Lophius stellatus Vahl, 1797 | | authority | +215329 | red batfish | | common name | +215329 | starry handfish | | common name | +215329 | starry seabat | | common name | +215336 | Atherina lacunosa Forster, 1801 | | authority | +215336 | Atherina lacunosa | | synonym | +215336 | Atherina lacunosus | | synonym | +215336 | Atherinam lacunosam | | synonym | +215336 | Atherina punctata | Atherina punctata | synonym | +215336 | Atherina punctata Bennet, 1833 | | authority | +215336 | Atherinomorus capricornensis | | synonym | +215336 | Atherinomorus lacunosus (Forster, 1801) | | authority | +215336 | Atherinomorus lacunosus | | scientific name | +215336 | hardyhead silverside | | common name | +215336 | wide-banded hardyhead silverside | | genbank common name | +215357 | Larimichthys | | scientific name | +215357 | Pseudosciaena | | synonym | +215358 | croceine croaker | | common name | +215358 | large yellow croaker | | genbank common name | +215358 | Larimichthys crocea (Richardson, 1846) | | authority | +215358 | Larimichthys crocea | | scientific name | +215358 | Pseudosciaena amblyceps Bleeker, 1863 | | authority | +215358 | Pseudosciaena amblyceps | | synonym | +215358 | Pseudosciaena crocea | | synonym | +215358 | Sciaena crocea Richardson, 1846 | | authority | +215358 | Sciaena crocea | | synonym | +215380 | Parapercis | | scientific name | +215402 | Channa argus (Cantor, 1842) | | authority | +215402 | Channa argus | | scientific name | +215402 | northern snakehead | | genbank common name | +215402 | Ophicephalus argus | | synonym | +215402 | Ophiocephalus argus Cantor, 1842 | | authority | +215402 | Ophiocephalus argus | | synonym | +215402 | snakehead | snakehead | common name | +215440 | arrow squid | | common name | +215440 | Nototodarus sloanii (Gray, 1849) | | authority | +215440 | Nototodarus sloanii | | scientific name | +215440 | Nototodarus sloani | | synonym | +215440 | Ommastrephes sloanii Gray, 1849 | | authority | +215440 | Ommastrephes sloanii | | synonym | +215440 | Ommastrephes sloani | | synonym | +215440 | Sloane's squid | | genbank common name | +216193 | Common whitethroat | | common name | +216193 | Curruca communis (Latham, 1787) | | authority | +216193 | Curruca communis | | scientific name | +216193 | greater whitethroat | | genbank common name | +216193 | Sylvia communis Latham, 1787 | | authority | +216193 | Sylvia communis | | synonym | +217619 | Cucumis callosus (Rottler) Cogn. | | authority | +217619 | Cucumis callosus | | synonym | +217619 | Cucumis melo subsp. agrestis (Naudin) Pangalo, 1933 | | authority | +217619 | Cucumis melo subsp. agrestis | | scientific name | +217619 | Cucumis melo subsp. melo f. agrestis | | synonym | +217619 | Cucumis melo var. agrestis Naudin | | authority | +217619 | Cucumis melo var. agrestis | | synonym | +217634 | Anoplophora glabripennis (Motschulsky, 1853) | | authority | +217634 | Anoplophora glabripennis | | scientific name | +217634 | Anoplophora nobilis Ganglbauer 1890 | | authority | +217634 | Anoplophora nobilis | | synonym | +217634 | Asian long-horn beetle | | common name | +217634 | Asian longhorned beetle | | genbank common name | +217634 | Cerosterna glabripennis | | synonym | +217634 | Melanauster nobilis | | synonym | +218470 | Philoria | | scientific name | +218474 | Coplandia kundagungan | | synonym | +218474 | Kyarranus kundagungan Ingram & Corben, 1975 | | authority | +218474 | Kyarranus kundagungan | | synonym | +218474 | mountain frog | | genbank common name | +218474 | Philoria kundagungan (Ingram & Corben, 1975) | | authority | +218474 | Philoria kundagungan | | scientific name | +218474 | red-and-yellow mountain-frog | | common name | +218474 | red tunnel frog | | common name | +218713 | Borbo | | scientific name | +218713 | swifts | swifts | genbank common name | +218714 | Borbo cinnara | | scientific name | +218714 | Borbo cinnara (Wallace, 1866) | | authority | +218714 | Formosan swift | | common name | +218714 | Hesperia cinnara | | synonym | +218714 | Hesperia cinnara Wallace, 1866 | | authority | +218714 | rice swift | | genbank common name | +218719 | Carterocephalus | | scientific name | +218720 | Arctic skipper | | genbank common name | +218720 | Carterocephalus palaemon (Pallas, 1771) | | authority | +218720 | Carterocephalus palaemon | | scientific name | +218720 | chequered skipper | | common name | +218720 | Papilio palaemon Pallas, 1771 | | authority | +218720 | Papilio palaemon | | synonym | +218734 | Hesperia | | scientific name | +218743 | Ochlodes | | scientific name | +218747 | Pelopidas | | scientific name | +218750 | black branded swift | | common name | +218750 | Hesperia mathias Fabricius, 1798 | | authority | +218750 | Hesperia mathias | | synonym | +218750 | lesser millet swift | | common name | +218750 | Pelopidas mathias | | scientific name | +218750 | small branded swift | | genbank common name | +219332 | Euclea | Euclea | scientific name | +219333 | Euclea delphinii (Gray, 1832) | | authority | +219333 | Euclea delphinii | | scientific name | +219333 | Limacodes delphinii | | synonym | +219333 | saddleback caterpillar | | common name | +219333 | spiny oak slug | | genbank common name | +219333 | spiny oak slug moth | | common name | +219593 | Anas ferina Linnaeus, 1758 | | authority | +219593 | Anas ferina | | synonym | +219593 | Aythya ferina | | scientific name | +219593 | common pochard | | genbank common name | +219593 | pochard | | common name | +220671 | Plenodomus lingam/Leptosphaeria maculans species complex | | scientific name | +220781 | Glaphyromorphus | | scientific name | +221568 | Apneumona anguina | | synonym | +221568 | blind cave salamander | | common name | +221568 | Caledon anguinus | | synonym | +221568 | common proteus | | common name | +221568 | Hypochthon anguinus | | synonym | +221568 | neotenic cave salamander | | common name | +221568 | olm | | genbank common name | +221568 | Proteus anguinus Laurenti, 1768 | | authority | +221568 | Proteus anguinus | | scientific name | +221568 | white salamander | | common name | +221865 | Jenkinsia | | scientific name | +221866 | Clupea lamprotaenia Gosse, 1851 | | authority | +221866 | Clupea lamprotaenia | | synonym | +221866 | dwarf herring | | common name | +221866 | dwarf round herring | | genbank common name | +221866 | Jenkinsia lamprotaenia (Gosse, 1851) | | authority | +221866 | Jenkinsia lamprotaenia | | scientific name | +221866 | Jenkinsia sp. BOLD:AAA7900 | | includes | +221904 | Hydrotaea | | scientific name | +221904 | Ophyra | | synonym | +221905 | black dump fly | | genbank common name | +221905 | black garbage fly | | common name | +221905 | dump fly | | common name | +221905 | Hydrotaea aenescens | | scientific name | +221905 | Hydrotaea aenescens (Wiedemann, 1830) | | authority | +221905 | Ophyra aenescens | | synonym | +221905 | Ophyra aenescens (Wiedemann, 1830) | | authority | +223138 | Canthigaster | | scientific name | +223138 | Canthigaster Swainson, 1839 | | authority | +223772 | Geranoaetus | | scientific name | +223773 | black-and-white hawk-eagle | | common name | +223773 | black-chested buzzard-eagle | | genbank common name | +223773 | Geranoaetus melanoleucus | | scientific name | +223773 | Spizaetus melanoleucus | | synonym | +223773 | Spizaetus melanoleucus Vieillot, 1819 | | authority | +223773 | Spizastur melanoleucus | | synonym | +223773 | Spizastur melanoleucus (Vieillot, 1816) | | synonym | +223805 | blackmouth cardinalfish | | genbank common name | +223805 | blackmouth false-cardinal | | common name | +223805 | glowbelly | glowbelly | common name | +223805 | Japanese splitfin | | common name | +223805 | Melanostoma japonicum Doderlein, 1883 | | authority | +223805 | Melanostoma japonicum Donderlein, 1883 | | authority | +223805 | Melanostoma japonicum | | synonym | +223805 | Synagrops japonicus (Doderlein, 1883) | | authority | +223805 | Synagrops japonicus (non Gunther, 1859) | | authority | +223805 | Synagrops japonicus | | scientific name | +223891 | aubergine | | common name | +223891 | brinjal | | common name | +223891 | eggplant | | genbank common name | +223891 | Solanum ferox Burm.f., 1768 | | synonym | +223891 | Solanum surattense Burm.f., 1768 | | authority | +223891 | Solanum surattense | | synonym | +223891 | Solanum virginianum L., 1753 | | authority | +223891 | Solanum virginianum | | scientific name | +223891 | Solanum xanthocarpum Schrad., 1795 | | authority | +223891 | Solanum xanthocarpum | | synonym | +223891 | yellow-fruit nightshade | | common name | +224340 | Cameroon clawed frog | | genbank common name | +224340 | Silurana epitropicalis | | synonym | +224340 | southern tropical platanna | | common name | +224340 | Xenopus epitropicalis Fischberg, Colombelli & Picard, 1982 | | authority | +224340 | Xenopus epitropicalis | | scientific name | +224340 | Xenopus (Silurana) epitropicalis | | synonym | +224704 | Harengula | | scientific name | +224706 | Brevoortia | | scientific name | +224708 | Atlantic menhaden | | genbank common name | +224708 | Brevoortia tyrannus (Latrobe, 1802) | | authority | +224708 | Brevoortia tyrannus | | scientific name | +224708 | Clupea tyrannus Latrobe, 1802 | | authority | +224708 | Clupea tyrannus | | synonym | +224708 | mossbunker | | common name | +224715 | Etrumeus | | scientific name | +224716 | Alosa teres DeKay, 1842 | | authority | +224716 | Alosa teres | | synonym | +224716 | Clupea sadina Mitchill, 1814 | | authority | +224716 | Clupea sadina | | synonym | +224716 | Etrumeus sadina (Mitchill, 1814) | | authority | +224716 | Etrumeus sadina | | synonym | +224716 | Etrumeus teres (DeKay, 1842) | | authority | +224716 | Etrumeus teres | | scientific name | +224716 | red-eye round herring | | genbank common name | +224716 | round herring | | common name | +224717 | Anchoa | | scientific name | +224718 | Anchoa mitchilli | | scientific name | +224718 | Anchoa mitchilli (Valenciennes, 1848) | | authority | +224718 | bay anchovy | | genbank common name | +224718 | common anchovy | | common name | +224718 | Engraulis mitchilli | | synonym | +224718 | Engraulis mitchilli Valenciennes, 1848 | | authority | +225060 | Calliurus punctulatus Rafinesque, 1819 | | authority | +225060 | Calliurus punctulatus | | synonym | +225060 | Micropterus punctulatus (Rafinesque, 1819) | | authority | +225060 | Micropterus punctulatus | | scientific name | +225060 | spotted bass | | genbank common name | +225060 | spotted blackbass | | common name | +225117 | bai li | | common name | +225117 | Chinese white pear | | genbank common name | +225117 | Pyrus bretschneideri | | equivalent name | +225117 | Pyrus x bretschneideri Rehder, 1915 | | authority | +225117 | Pyrus x bretschneideri | | scientific name | +225336 | Alaus Eschscholtz, 1829 | | authority | +225336 | Alaus | | scientific name | +225337 | Alaus myops (Fabricius, 1801) | | authority | +225337 | Alaus myops | | scientific name | +225337 | blind click beetle | | genbank common name | +225337 | Elater myops | | synonym | +225337 | small-eyed click beetle | | common name | +225390 | Lepiopomus miniatus Jordan, 1877 | | authority | +225390 | Lepiopomus miniatus | | synonym | +225390 | Lepomis miniatus (Jordan, 1877) | | authority | +225390 | Lepomis miniatus | | scientific name | +225390 | redspotted miniatus | | common name | +225390 | redspotted sunfish | | genbank common name | +225391 | black bass | | common name | +225391 | Cichla floridana Leseur, 1822 | | authority | +225391 | Cichla floridana Lesueur, 1822 | | authority | +225391 | Cichla floridana | | synonym | +225391 | Florida bass | | genbank common name | +225391 | Florida largemouth bass | | common name | +225391 | Micropetrus salmoides floridanus | | synonym | +225391 | Micropterus floridanus floridanus | | synonym | +225391 | Micropterus floridanus (Lesueur, 1822) | | authority | +225391 | Micropterus floridanus | | scientific name | +225391 | Micropterus salmoides floridanus | | synonym | +226820 | Ratufa | | scientific name | +226889 | Algerian newt | | common name | +226889 | Algerian ribbed newt | | genbank common name | +226889 | Algerian salamander | | common name | +226889 | Pleurodeles poireti | | scientific name | +226889 | Triton poireti Gervais, 1835 | | authority | +226889 | Triton poireti | | synonym | +226889 | Triturus poireti | | synonym | +227460 | Apalone spinifera aspera (Agassiz, 1857) | | authority | +227460 | Apalone spinifera aspera | | scientific name | +227460 | Aspidonectes asper Agassiz, 1857 | | authority | +227460 | Aspidonectes asper | | synonym | +227460 | Gulf Coast spiny softshell | | genbank common name | +227460 | Gulf Coast spiny softshell turtle | | common name | +227977 | Macrodon | | scientific name | +227978 | German salmon | | common name | +227978 | king weakfish | | common name | +227978 | Lonchurus ancylodon Bloch & Schneider, 1801 | | authority | +227978 | Lonchurus ancylodon | | synonym | +227978 | Macrodon ancylodon (Bloch & Schneider, 1801) | | authority | +227978 | Macrodon ancylodon | | scientific name | +227978 | rock salmon | | common name | +227978 | yellow mouth salmon | | genbank common name | +228010 | Lampides | | scientific name | +228011 | Lampides boeticus | | scientific name | +228011 | long-tailed blue | | common name | +228011 | Papilio boeticus Linnaeus, 1767 | | authority | +228011 | Papilio boeticus | | synonym | +228011 | pea blue | | genbank common name | +228011 | pea-pod argus | | common name | +228029 | Alabama orb | | common name | +228029 | Amphinaias kieneriana (Lea, 1852) | | authority | +228029 | Amphinaias kieneriana | | synonym | +228029 | Coosa orb | | genbank common name | +228029 | Cyclonaias asperata (Lea, 1861) | | authority | +228029 | Cyclonaias asperata | | synonym | +228029 | Cyclonaias kieneriana | | scientific name | +228029 | Quadrula asperata | | synonym | +228029 | Quadrula kieneriana (Lea, 1852) | | authority | +228029 | Quadrula kieneriana | | synonym | +228029 | Unio kienerianus Lea, 1852 | | authority | +228029 | Unio kienerianus | | synonym | +228088 | Cyclonaias | | scientific name | +228088 | Rotundaria | | synonym | +228306 | Erithacus cyane | | synonym | +228306 | Larvivora cyane (Pallas, 1776) | | authority | +228306 | Larvivora cyane | | scientific name | +228306 | Luscinia cyane | | synonym | +228306 | Motacilla cyane Pallas, 1776 | | authority | +228306 | Motacilla cyane | | synonym | +228306 | Siberian blue chat | | common name | +228306 | siberian blue robbin | | genbank common name | +228420 | black-backed frog | | genbank common name | +228420 | Cystignathus melanonotus Hallowell, 1861 | | authority | +228420 | Cystignathus melanonotus | | synonym | +228420 | fringe-toed foamfrog | | common name | +228420 | Leptodactylus melanonotus | | scientific name | +228420 | Sabinal frog | | common name | +228422 | Eleutherodactylus ridens | | synonym | +228422 | Phyllobates ridens Cope, 1866 | | authority | +228422 | Phyllobates ridens | | synonym | +228422 | Pristimantis ridens (Cope, 1866) | | authority | +228422 | Pristimantis ridens | | scientific name | +228422 | pygmy rain frog | | common name | +228422 | pygmy robber frog | | genbank common name | +228422 | Rio San Juan robber frog | | common name | +228425 | Eleutherodactylus pantoni Dunn, 1926 | | authority | +228425 | Eleutherodactylus pantoni | | scientific name | +228425 | Euhyas pantoni | | synonym | +228425 | Panton's robber frog | | common name | +228425 | western yellow-bellied eleuth | | common name | +228425 | western yellow-bellied robber frog | | genbank common name | +228429 | barking frog | | genbank common name | +228429 | Craugastor augusti (Duges, 1879) | | authority | +228429 | Craugastor augusti | | scientific name | +228429 | Eleutherodactylus augusti | | synonym | +228429 | Hylactophryne augustii | | synonym | +228429 | Hylactophryne augusti | | synonym | +228429 | Hylodes augusti Duges, 1879 | | authority | +228429 | Hylodes augusti | | synonym | +228429 | robber frog | | common name | +228433 | Craugastor crassidigitus | | scientific name | +228433 | Craugastor crassidigitus (Taylor, 1952) | | authority | +228433 | Eleutherodactylus crassidigitus | | synonym | +228433 | Eleutherodactylus crassidigitus Taylor, 1952 | | authority | +228433 | Eleutherodactylus (Craugastor) crassidigitus | | synonym | +228433 | Isla Bonita robber frog | | common name | +228433 | slim-fingered rain frog | | genbank common name | +228434 | Craugastor longirostris (Boulenger, 1898) | | authority | +228434 | Craugastor longirostris | | scientific name | +228434 | Eleutherodactylus (Craugastor) longirostris | | synonym | +228434 | Eleutherodactylus longirostris (Boulenger, 1898) | | authority | +228434 | Eleutherodactylus longirostris | | synonym | +228434 | Hylodes longirostris Boulenger, 1898 | | authority | +228434 | Hylodes longirostris | | synonym | +228434 | long-snouted whistling frog | | genbank common name | +228434 | longsnout robber frog | | common name | +228444 | broad-headed cave frog | | common name | +228444 | broad-headed leaf-litter frog | | common name | +228444 | broad-headed rainfrog | | genbank common name | +228444 | Craugastor laticeps (Dumeril, 1853) | | authority | +228444 | Craugastor laticeps | | scientific name | +228444 | Eleutherodactylus laticeps | | synonym | +228444 | Hylodes laticeps Dumeril, 1853 | | authority | +228444 | Hylodes laticeps | | synonym | +228445 | Chac's leaf-litter frog | | common name | +228445 | Chac's rainfrog | | genbank common name | +228445 | Craugastor chac (Savage, 1987) | | authority | +228445 | Craugastor chac | | scientific name | +228445 | Eleutherodactylus chac Savage, 1987 | | authority | +228445 | Eleutherodactylus chac | | synonym | +228445 | Izabal robber frog | | common name | +228449 | Craugastor stejnegerianus (Cope, 1893) | | authority | +228449 | Craugastor stejnegerianus | | scientific name | +228449 | Eleutherodactylus stejnegerianus | | synonym | +228449 | Hylodes stejnegerianus Cope, 1893 | | authority | +228449 | Hylodes stejnegerianus | | synonym | +228449 | Stejneger's rainfrog | | genbank common name | +228449 | Stejneger's robber frog | | common name | +228452 | Bransford's litter frog | | genbank common name | +228452 | Bransford's robber frog | | common name | +228452 | Craugastor bransfordii (Cope, 1886) | | authority | +228452 | Craugastor bransfordii | | scientific name | +228452 | Eleutherodactylus bransfordii | | synonym | +228452 | Lithodytes bransfordii Cope, 1886 | | authority | +228452 | Lithodytes bransfordii | | synonym | +228563 | Petroica | | scientific name | +228564 | Chatham Islands robin | | genbank common name | +228564 | Chatham robin | | common name | +228564 | Miro traversi Buller, 1872 | | authority | +228564 | Miro traversi | | synonym | +228564 | Petroica traversi | | scientific name | +228608 | Cape clawed frog | | genbank common name | +228608 | Cape platanna | | common name | +228608 | Gill's frog | | common name | +228608 | Gill's platanna | | common name | +228608 | Xenopus gilli gilli | | synonym | +228608 | Xenopus gilli Rose & Hewitt, 1927 | | authority | +228608 | Xenopus gilli | | scientific name | +228608 | Xenopus laevis gilli | | synonym | +228648 | Euhyas | | scientific name | +228649 | Craugastor | | scientific name | +228670 | Hammond's spadefoot toad | | common name | +228670 | Scaphiopus hammondii Baird, 1859 | | authority | +228670 | Scaphiopus hammondii | | synonym | +228670 | Spea hammondii | | scientific name | +228670 | western spadefoot toad | western spadefoot toad | genbank common name | +229057 | Lagocephalus sceleratus (Gmelin, 1789) | | authority | +229057 | Lagocephalus sceleratus | | scientific name | +229057 | Pleuranacanthus sceleratus | | synonym | +229057 | silver-cheeked toadfish | | genbank common name | +229057 | silverstripe blaasop | | common name | +229057 | Tetrodon sceleratus Gmelin, 1789 | | authority | +229057 | Tetrodon sceleratus | | synonym | +230655 | canary chat | | genbank common name | +230655 | Canary Islands bush chat | | common name | +230655 | Pratincola dacotiae Meade-Waldo, 1889 | | authority | +230655 | Pratincola dacotiae | | synonym | +230655 | Saxicola dacotiae (Meade-Waldo, 1889) | | authority | +230655 | Saxicola dacotiae | | scientific name | +230979 | Euryapteryx | | scientific name | +230980 | coastal moa | | common name | +230980 | Dinornis curtus Owen, 1846 | | authority | +230980 | Dinornis curtus | | synonym | +230980 | Euryapteryx curtus | | scientific name | +230980 | little coastal moa | | genbank common name | +231021 | Centrolenella prosoblepon | | synonym | +231021 | Centrolene prosoblepon (Boettger, 1892) | | authority | +231021 | Centrolene prosoblepon | | synonym | +231021 | emerald glass frog | | genbank common name | +231021 | Espadarana prosoblepon (Boettger, 1892) | | authority | +231021 | Espadarana prosoblepon | | scientific name | +231021 | Hyla prosoblepon Boettger, 1892 | | authority | +231021 | Hyla prosoblepon | | synonym | +231021 | Nicaragua giant glass frog | | common name | +231224 | Pseudacris nigrita (LeConte, 1825) | | authority | +231224 | Pseudacris nigrita | | scientific name | +231224 | Rana nigrita LeConte, 1825 | | authority | +231224 | Rana nigrita | | synonym | +231224 | southern chorus frog | | genbank common name | +231224 | swamp tree frog | | common name | +233201 | Iberocypris | | synonym | +233201 | Squalius | | scientific name | +233775 | Brachytarsophrys feae | | synonym | +233775 | Fea's short-legged toad | | common name | +233775 | Kakhien Hills spadefoot toad | | genbank common name | +233775 | Megalophrys feae | | synonym | +233775 | Megophrys feae Boulenger, 1887 | | authority | +233775 | Megophrys feae | | scientific name | +233779 | plains spadefoot | | common name | +233779 | plains spadefoot toad | | genbank common name | +233779 | Scaphiopus bombifrons (Cope, 1863) | | authority | +233779 | Scaphiopus bombifrons | | synonym | +233779 | Spea bombifrons | | scientific name | +233780 | Great Basin spadefoot | | common name | +233780 | Great Basin spadefoot toad | | genbank common name | +233780 | Scaphiopus intermontanus Cope, 1883 | | authority | +233780 | Scaphiopus intermontanus | | synonym | +233780 | Spea intermontana | | scientific name | +234793 | Lake Ohrid brown trout | | genbank common name | +234793 | Ohrid trout | | common name | +234793 | Salmo letnica (Karaman, 1924) | | authority | +234793 | Salmo letnica | | scientific name | +234793 | Trutta letnica Karaman, 1924 | | authority | +234793 | Trutta letnica | | synonym | +235326 | Abrornis chloronotus (Gray, JE & Gray, GR, 1846) | | authority | +235326 | Abrornis chloronotus | | synonym | +235326 | lemon-rumped warbler | | common name | +235326 | pale-rumped warbler | | genbank common name | +235326 | Phylloscopus chloronotus Gray & Gray, 1847 | | authority | +235326 | Phylloscopus chloronotus | | scientific name | +235326 | Phylloscopus proregulus chloronotus | | synonym | +235354 | compton | | common name | +235354 | Compton tortoiseshell | | genbank common name | +235354 | false comma | | common name | +235354 | Nymphalis l-album (Esper, 1781) | | authority | +235354 | Nymphalis l-album | | scientific name | +235354 | Nymphalis lalbum | | synonym | +235354 | Nymphalis vau-album (Denis & Schiffermuller, 1775) | | authority | +235354 | Nymphalis vaualbum l-album | | synonym | +235354 | Nymphalis vau-album | | synonym | +235354 | Nymphalis vaualbum | | synonym | +235354 | Papilio l-album | | synonym | +235354 | Papilio vau-album | | synonym | +235354 | Polygonia vaualbum | | synonym | +235354 | Roddia l-album | | synonym | +235354 | Roddia vaualbum | | synonym | +236742 | Aporoscelis benti Anderson, 1894 | | authority | +236742 | Aporoscelis benti | | synonym | +236742 | Bent's mastigure | | common name | +236742 | Uromastix (Aporoscelis) benti | | synonym | +236742 | Uromastyx benti (Anderson, 1894) | | authority | +236742 | Uromastyx benti | | scientific name | +236742 | Yemeni spiny-tailed lizard | | genbank common name | +236793 | Chilo sacchariphagus (Bojer, 1856) | | authority | +236793 | Chilo sacchariphagus | | scientific name | +236793 | Proceras sacchariphagus | | synonym | +236793 | spotted stalk borer | | common name | +236793 | spotted sugarcane borer | | genbank common name | +238031 | Elopichthys bambusa (Richardson, 1845) | | authority | +238031 | Elopichthys bambusa | | scientific name | +238031 | Leuciscus bambusa Richardson, 1845 | | authority | +238031 | Leuciscus bambusa | | synonym | +238031 | yellowcheek carp | | genbank common name | +238031 | yellowcheek | | common name | +238032 | Elopichthys | | scientific name | +238840 | blackfin flounder | | genbank common name | +238840 | Glyptocephalus stelleri (Schmidt, 1904) | | authority | +238840 | Glyptocephalus stelleri | | scientific name | +238840 | Korean flounder | | common name | +238840 | Microstomus stelleri Schmidt, 1904 | | authority | +238840 | Microstomus stelleri | | synonym | +240164 | Johnius | | scientific name | +240173 | Craugastor omiltemanus (Gunther, 1900) | | authority | +240173 | Craugastor omiltemanus | | scientific name | +240173 | Eleutherodactylus omiltemanus | | synonym | +240173 | Guerreran robber frog | | genbank common name | +240173 | Gunther's robber frog | | common name | +240173 | Syrrhaphus omiltemanus Gunther, 1900 | | authority | +240173 | Syrrhaphus omiltemanus | | synonym | +240395 | Glandirana emeljanovi (Nikolskii, 1913) | | authority | +240395 | Glandirana emeljanovi | | scientific name | +240395 | Imeinpo Station frog | | common name | +240395 | Northeast China rough-skinned frog | | genbank common name | +240395 | Rana emelijanovi | | synonym | +240395 | Rana emeljanovi Nikolskii, 1913 | | authority | +240395 | Rana emeljanovi | | synonym | +240395 | Rana rugosa emeljanowi | | synonym | +240395 | Rugosa emelianjovi (Nikolskii, 1913) | | authority | +240395 | Rugosa emelianjovi | | synonym | +240395 | Rugosa emeljanowi (Nikolskii, 1913) | | authority | +240395 | Rugosa emeljanowi | | synonym | +240396 | Meristogenys | | scientific name | +240405 | Staurois | | scientific name | +240406 | Ixalus latopalmatus Boulenger, 1887 | | authority | +240406 | Ixalus latopalmatus | | synonym | +240406 | rock skipper | | common name | +240406 | Sabah splash frog | | genbank common name | +240406 | Simomantis latopalmata | | synonym | +240406 | Staurois latopalmatus (Boulenger, 1887) | | authority | +240406 | Staurois latopalmatus | | scientific name | +241069 | ginger mint | | common name | +241069 | Mentha arvensis x Mentha spicata | | synonym | +241069 | Mentha gracilis | | synonym | +241069 | Mentha x cardiaca J.Gerard ex Baker | | authority | +241069 | Mentha x cardiaca | | synonym | +241069 | Mentha x gentilis auct. | | authority | +241069 | Mentha x gentilis | | synonym | +241069 | Mentha x gracilis | | scientific name | +241069 | Mentha x gracilis Sole | | authority | +241069 | red mint | | common name | +241069 | Scotch spearmint | | genbank common name | +241142 | Abrothrix jelskii | | scientific name | +241142 | Akodon jelskii | | synonym | +241142 | Akodon jelskii Thomas, 1894 | | authority | +241142 | Chroeomys jelskii | | synonym | +241142 | Jelski's altiplano mouse | | common name | +241142 | Jelski's South American field mouse | | genbank common name | +241267 | Bodianus | | scientific name | +241267 | Pseudolepidaplois | | synonym | +241338 | Pseudojuloides | | scientific name | +241340 | Pseudojulis cerasina Snyder, 1904 | | authority | +241340 | Pseudojulis cerasina | | synonym | +241340 | Pseudojuloides cerasinus | | scientific name | +241340 | Pseudojuloides cerasinus (Snyder, 1904) | | authority | +241340 | smalltail pencil wrasse | | genbank common name | +241340 | smalltail wrasse | | common name | +241532 | Cinnycerthia | | scientific name | +241749 | Arremon | | scientific name | +242266 | Lycaeides | | synonym | +242266 | Plebejus | | scientific name | +242266 | Plebulina | | synonym | +242581 | cadaverous hyla | | common name | +242581 | California chorus frog | | common name | +242581 | California treefrog | | genbank common name | +242581 | Hyla cadaverina Cope, 1866 | | authority | +242581 | Hyla cadaverina | | synonym | +242581 | Hyliola cadaverina (Cope, 1866) | | authority | +242581 | Hyliola cadaverina | | synonym | +242581 | Pseudacris cadaverina (Cope, 1866) | | authority | +242581 | Pseudacris cadaverina | | scientific name | +242978 | Antennarius | | scientific name | +242980 | Histrio | | scientific name | +242980 | Pterophryne | | synonym | +242981 | Antennarius histrio | | synonym | +242981 | Chironectes histrio | | synonym | +242981 | frogfish | | common name | +242981 | Histrio histrio (Linnaeus, 1758) | | authority | +242981 | Histrio histrio | | scientific name | +242981 | Lophius histrio Linnaeus, 1758 | | authority | +242981 | Lophius histrio | | synonym | +242981 | marbled angler | | common name | +242981 | mouse fish | | common name | +242981 | Pterophryne histrio | | synonym | +242981 | Pterophrynoides histrio | | synonym | +242981 | sargassum anglerfish | | common name | +242981 | sargassumfish | | genbank common name | +242981 | sargassum frogfish | | common name | +243225 | green indigobird | | common name | +243225 | Hypochaera codringtoni Neave, 1907 | | authority | +243225 | Hypochaera codringtoni | | synonym | +243225 | twinspot Indigobird | | genbank common name | +243225 | Vidua codringtoni | | scientific name | +243561 | Plotosus | | scientific name | +243562 | Bagrus limbatus Richardson, 1846 | | authority | +243562 | Bagrus limbatus | | synonym | +243562 | Plotosus limbatus (Richardson, 1846) | | synonym | +243562 | Plotosus lineatus 'Minami-gonzui' | | synonym | +243562 | Plotosus lineatus | | scientific name | +243562 | Plotosus lineatus (Thunberg, 1787) | | authority | +243562 | Silurus lineatus | | synonym | +243562 | Silurus lineatus Thunberg, 1787 | | authority | +243562 | striped eel-catfish | | common name | +243562 | striped eel catfish | | genbank common name | +244289 | Peridroma | | scientific name | +244290 | Noctua saucia Hubner, 1808 | | authority | +244290 | Noctua saucia | | synonym | +244290 | pearly underwing | | genbank common name | +244290 | Peridroma margaritosa | | synonym | +244290 | Peridroma saucia | | scientific name | +244290 | variegated cutworm | | common name | +244447 | Chinese tongue sole | | common name | +244447 | Cynoglossus (Arelia) semilaevis | | synonym | +244447 | Cynoglossus semilaevis Gunther, 1873 | | authority | +244447 | Cynoglossus semilaevis | | scientific name | +244447 | half-smooth tongue sole | | common name | +244447 | tongue sole | | genbank common name | +244448 | Cleisthenes | | scientific name | +244449 | Cleisthenes herzensteini (Schmidt, 1904) | | authority | +244449 | Cleisthenes herzensteini | | scientific name | +244449 | Cleisthenes pinetorum herzensteini | | synonym | +244449 | Hippoglossoides herzensteini Schmidt, 1904 | | authority | +244449 | Hippoglossoides herzensteini | | synonym | +244449 | sohachi flounder | sohachi flounder | common name | +244449 | sohachi | sohachi | genbank common name | +244453 | Zebrias | | scientific name | +245045 | Aplonis | | scientific name | +245046 | Aplonis panayensis | | scientific name | +245046 | Asian glossy starling | | genbank common name | +245046 | Eumyias panayensis Sharpe, 1877 | | authority | +245046 | Eumyias panayensis | | synonym | +245046 | island flycatcher | | common name | +245046 | Muscicapa panayensis | | synonym | +245147 | Liua tsinpaensis (Liu & Hu, 1966) | | authority | +245147 | Liua tsinpaensis | | scientific name | +245147 | Pseudohynobius tsinpaensis (Liu and Hu in Hu, Zhao, and Liu, 1966) | | authority | +245147 | Pseudohynobius tsinpaensis | | synonym | +245147 | Ranodon (Pseudohynobius) tsinpaensis | | synonym | +245147 | Ranodon tsinpaensis Liu & Hu, 1966 | | authority | +245147 | Ranodon tsinpaensis | | synonym | +245147 | Shaanxi salamander | | common name | +245147 | Tsinpa salamander | | genbank common name | +245712 | Dianema Cope, 1871 | | authority | +245712 | Dianema | Dianema | scientific name | +245776 | Decapogon urostriatum Miranda Ribeiro, 1912 | | authority | +245776 | Decapogon urostriatum | | synonym | +245776 | Dianema urostriatum (Miranda Ribeiro, 1912) | | authority | +245776 | Dianema urostriatum | | scientific name | +245776 | flagtail catfish | | genbank common name | +245776 | stripedtail catfish | | common name | +245776 | striped-tailed catfish | | common name | +245847 | Charles mockingbird | | genbank common name | +245847 | Floreana mockingbird | | common name | +245847 | Mimus trifasciatus (Gould, 1837) | | authority | +245847 | Mimus trifasciatus | | scientific name | +245847 | Nesomimus trifasciatus (Gould, 1837) | | synonym | +245847 | Nesomimus trifasciatus | | synonym | +245850 | Espanola mockingbird | | common name | +245850 | hood mockingbird | | genbank common name | +245850 | Mimus macdonaldi Ridgway, 1890 | | authority | +245850 | Mimus macdonaldi | | scientific name | +245850 | Nesomimus macdonaldi Ridgway, 1890 | | synonym | +245850 | Nesomimus macdonaldi | | synonym | +246411 | Dicroglossus microdiscus | | synonym | +246411 | Euphlyctis microdisca | | synonym | +246411 | Indonesian wart frog | | genbank common name | +246411 | Limnonectes microdiscus (Boettger, 1892) | | authority | +246411 | Limnonectes microdiscus | | scientific name | +246411 | Pygmy Creek frog | | common name | +246411 | Rana microdisca Boettger, 1892 | | authority | +246411 | Rana microdisca | | synonym | +246418 | big-headed wart frog | | common name | +246418 | Euphlyctis magna macrocephala | | synonym | +246418 | Limnonectes macrocephalus (Inger, 1954) | | authority | +246418 | Limnonectes macrocephalus | | scientific name | +246418 | Luzon fanged frog | | genbank common name | +246418 | Rana macrodon macrocephala Inger, 1954 | | authority | +246418 | Rana macrodon macrocephala | | synonym | +247085 | Borneophrys | | synonym | +247085 | Megophrys | | scientific name | +247094 | Congo dwarf clawed frog | | genbank common name | +247094 | dwarf African frog | | common name | +247094 | Hymenochirus boettgeri | | scientific name | +247094 | Hymenochirus boettgeri (Tornier, 1896) | | authority | +247094 | Xenopus boettgeri | | synonym | +247094 | Xenopus boettgeri Tornier, 1896 | | authority | +247094 | Zaire dwarf clawed frog | | common name | +247538 | common grenadier | | common name | +247538 | Estrilda granatina | | synonym | +247538 | Fringilla granatina Linnaeus, 1766 | | authority | +247538 | Fringilla granatina | | synonym | +247538 | Granatina granatina (Linnaeus, 1766) | | authority | +247538 | Granatina granatina | | scientific name | +247538 | Uraeginthus granatinus | | synonym | +247538 | Violet-eared waxbill | | genbank common name | +247977 | Aidemosyne | | scientific name | +247978 | Aidemosyne modesta | | scientific name | +247978 | Amadina modesta Gould, 1837 | | authority | +247978 | Amadina modesta | | synonym | +247978 | cherry finch | | common name | +247978 | Neochmia modesta | | synonym | +247978 | Plum-headed finch | | genbank common name | +248134 | Tenualosa | | scientific name | +248792 | Engystoma olivaceum Hallowell, 1856 | | authority | +248792 | Engystoma olivaceum | | synonym | +248792 | Engystoma texense | | synonym | +248792 | Gastrophryne carolinensis olivacea | | synonym | +248792 | Gastrophryne olivacea (Hallowell, 1856) | | authority | +248792 | Gastrophryne olivacea | | scientific name | +248792 | Gastrophryne texense | | synonym | +248792 | Great Plains narrow-mouthed toad | | common name | +248792 | Microhyla carolinensis olivacea | | synonym | +248792 | Microhyla olivacea | | synonym | +248792 | Texas narrow-mouthed toad | | common name | +248792 | western narrow-mouthed toad | | genbank common name | +248868 | Phyllomedusa tomopterna (Cope, 1868) | | authority | +248868 | Phyllomedusa tomopterna | | scientific name | +248868 | Pithecopus tomopternus | | synonym | +248868 | tiger-sriped leaf frog | | common name | +248868 | tiger-striped leaf frog | | genbank common name | +248880 | Phrynohyas | | synonym | +248880 | Tetraprion | | synonym | +248880 | Trachycephalus | | scientific name | +248943 | Adenomera | | scientific name | +248943 | tropical bullfrogs | | genbank common name | +248945 | Bufo variegatus | | synonym | +248945 | Eden Harbour toad | | common name | +248945 | Nannophryne variegata Guenther, 1870 | | authority | +248945 | Nannophryne variegata | | scientific name | +248945 | Patagonian toad | | genbank common name | +249001 | Pseudogobius | | scientific name | +249002 | blue-spot goby | | common name | +249002 | Gobius olorum Sauvage, 1880 | | authority | +249002 | Gobius olorum | | synonym | +249002 | Pseudogobius olorum | | scientific name | +249002 | southern goby | | common name | +249002 | Swan River goby | | genbank common name | +251502 | banded newt | | common name | +251502 | Ommatotriton vittatus (Gray, 1835) | | authority | +251502 | Ommatotriton vittatus | | scientific name | +251502 | southern banded newt | | genbank common name | +251502 | striped eft | | common name | +251502 | Triton vittatus Gray, 1835 | | authority | +251502 | Triton vittatus | | synonym | +251502 | Triturus vittatus | | synonym | +254007 | decim group | | scientific name | +254361 | Autographa | | scientific name | +254363 | Autographa gamma (Linnaeus, 1758) | | authority | +254363 | Autographa gamma | | scientific name | +254363 | gammafly | | common name | +254363 | Phalaena gamma Linnaeus, 1758 | | authority | +254363 | Phalaena gamma | | synonym | +254363 | silver Y | | common name | +254363 | silver Y moth | | genbank common name | +254381 | Plusia | | scientific name | +254382 | gold spot | | common name | +254382 | gold spot moth | | common name | +254382 | Phalaena festucae Linnaeus, 1758 | | authority | +254382 | Phalaena festucae | | synonym | +254382 | Plusia festucae | | scientific name | +254382 | rice looper | | genbank common name | +254538 | Falcunculus | | scientific name | +254539 | crested shrike-tit | | common name | +254539 | Eastern shrike-tit | | common name | +254539 | Eastern shriketit | | genbank common name | +254539 | Falcunculus frontatus (Latham, 1801) | | authority | +254539 | Falcunculus frontatus | | scientific name | +254539 | Lanius frontatus Latham, 1801 | | authority | +254539 | Lanius frontatus | | synonym | +255532 | Podothecus | | scientific name | +255564 | Dipturus trachyderma (Krefft & Stehmann, 1975) | | authority | +255564 | Dipturus trachyderma | | scientific name | +255564 | Raja trachyderma Krefft & Stehmann, 1975 | | authority | +255564 | Raja trachyderma | | synonym | +255564 | ray | | common name | +255564 | roughskin skate | | genbank common name | +255570 | Kryptopterus | | scientific name | +257879 | Aeorestes cinereus (Palisot de Beauvois, 1796) | | authority | +257879 | Aeorestes cinereus | | scientific name | +257879 | hoary bat | | genbank common name | +257879 | Lasiurus cinereus | | synonym | +257879 | North American hoary bat | | common name | +257879 | Vespertilio cinereus Palisot de Beauvois, 1796 | | authority | +257879 | Vespertilio cinereus | | synonym | +257884 | Myotis ciliolabrum (Merriam, 1886) | | authority | +257884 | Myotis ciliolabrum | | scientific name | +257884 | Vespertilio ciliolabrum Merriam, 1886 | | authority | +257884 | Vespertilio ciliolabrum | | synonym | +257884 | western small-footed bat | | genbank common name | +257884 | western small-footed Myotis | | common name | +257886 | Pseudopentaceros | | scientific name | +258452 | beau gregory | | common name | +258452 | beau gregory damselfish | | common name | +258452 | beaugregory | | genbank common name | +258452 | Pomacentrus leucostictus Muller & Troschel, 1848 | | authority | +258452 | Pomacentrus leucostictus | | synonym | +258452 | Stegastes leucostictus (Muller & Troschel, 1848) | | authority | +258452 | Stegastes leucostictus | | scientific name | +259990 | Lile | | scientific name | +260511 | Argentina | Argentina | scientific name | +260511 | Argentina Linnaeus, 1758 | | authority | +260891 | Saproscincus | | scientific name | +261519 | grub fish | | common name | +261519 | grubfish | | genbank common name | +261519 | Neopercis sexfasciata | | synonym | +261519 | Parapercis sexfasciata | | scientific name | +261519 | Parapercis sexfasciata (Temminck & Schlegel, 1843) | | authority | +261519 | Percis sexfasciata | | synonym | +261519 | Percis sexfasciata Temminck & Schlegel, 1843 | | authority | +261519 | saddled weever | | common name | +261944 | desert-skink | | common name | +261944 | Egernia inornata Rosen, 1905 | | authority | +261944 | Egernia inornata | | synonym | +261944 | Liopholis inornata | | scientific name | +261944 | unadorned desert-skink | | genbank common name | +262014 | Xenopus | Xenopus | scientific name | +262651 | Christmas butterfly | | common name | +262651 | citrus butterfly | | genbank common name | +262651 | orange dog | | common name | +262651 | Papilio demodocus demodocus | | synonym | +262651 | Papilio demodocus Esper, 1799 | | authority | +262651 | Papilio demodocus | | scientific name | +262664 | Heraclides thoas | | synonym | +262664 | king swallowtail | | genbank common name | +262664 | Papilio thoas Linnaeus, 1771 | | authority | +262664 | Papilio thoas | | scientific name | +262664 | thoas swallowtail | | common name | +263371 | Saucrobotys | | scientific name | +263372 | Botys futilalis Lederer, 1863 | | authority | +263372 | Botys futilalis | | synonym | +263372 | dogbane pyralid | | common name | +263372 | dogbane pyralid moth | | genbank common name | +263372 | Saucrobotys futilalis | | scientific name | +263450 | Lophostoma d'Orbigny, 1836 | | authority | +263450 | Lophostoma | Lophostoma | scientific name | +263451 | D'Orbigny's round-eared bat | | genbank common name | +263451 | Lophostoma silvicolum d'Orbigny, 1836 | | authority | +263451 | Lophostoma silvicolum | | scientific name | +263451 | Tonatia silvicola | | synonym | +263451 | Tonatia sylvicola | | synonym | +263451 | white-throated round-eared bat | | common name | +263700 | Asymbolus | | scientific name | +263928 | small ermine | | common name | +263928 | Tinea rorrella Hubner, 1796 | | authority | +263928 | Tinea rorrella | | synonym | +263928 | willow ermine | | common name | +263928 | willow ermine moth | | genbank common name | +263928 | Yponomeuta rorellus | | synonym | +263928 | Yponomeuta rorrellus (Hubner, 1796) | | authority | +263928 | Yponomeuta rorrellus | | scientific name | +264213 | bloodred snapper | | common name | +264213 | Diacope sanguinea Cuvier, 1828 | | authority | +264213 | Diacope sanguinea | | synonym | +264213 | humphead snapper | | genbank common name | +264213 | Lutjanus sanguineus (Cuvier, 1828) | | authority | +264213 | Lutjanus sanguineus | | scientific name | +264363 | Paragobiodon | | scientific name | +264364 | emerald coral goby | | genbank common name | +264364 | emerald goby | emerald goby | common name | +264364 | Gobius xanthosoma | | synonym | +264364 | Paragobiodon xanthosoma | | scientific name | +264364 | Paragobiodon xanthosomus (Bleeker, 1852) | | authority | +264364 | Paragobiodon xanthosomus | | synonym | +264364 | yellowskin goby | | common name | +265032 | Atympanophrys shapingensis (Liu, 1950) | | authority | +265032 | Atympanophrys shapingensis | | synonym | +265032 | Megophrys (Atympanophrys) shapingensis | | synonym | +265032 | Megophrys shapingensis Liu, 1950 | | authority | +265032 | Megophrys shapingensis | | scientific name | +265032 | Shaping frog | | genbank common name | +265032 | Shaping horned toad | | common name | +265034 | Scutiger | Scutiger | scientific name | +265035 | Boulenger's lazy toad | | common name | +265035 | Himalayan stream frog | | common name | +265035 | Leptobrachium boulengeri Bedriaga, 1898 | | authority | +265035 | Leptobrachium boulengeri | | synonym | +265035 | Megalophrys boulengeri | | synonym | +265035 | Scutiger boulengeri (Bedriaga, 1898) | | authority | +265035 | Scutiger boulengeri | | scientific name | +265035 | Xizang alpine toad | | genbank common name | +265036 | Binchuan horned toad | | common name | +265036 | dwarf horned frog | | common name | +265036 | Kwangshien spadefoot toad | | common name | +265036 | little horned toad | | common name | +265036 | Megophrys minor | | synonym | +265036 | tiny spadefoot toad | | genbank common name | +265036 | Xenophrys minor | | scientific name | +265036 | Xenophrys minor Stejneger, 1926 | | authority | +265040 | Emei moustache toad | | genbank common name | +265040 | Leptobrachium boringiae | | synonym | +265040 | Leptobrachium boringii | | scientific name | +265040 | Leptobrachium (Leptobrachium) boringii | | synonym | +265040 | Leptobrachium (Vibrissaphora) boringii | | synonym | +265040 | Omei moustache toad | | common name | +265040 | Taosze spiny toad | | common name | +265040 | Vibrissaphora boringiae Liu, 1945 | | authority | +265040 | Vibrissaphora boringiae | | synonym | +265040 | Vibrissaphora boringii Liu, 1945 | | authority | +265040 | Vibrissaphora boringii | | synonym | +265040 | Vibrissaphora boringi | | synonym | +265041 | Chong'an moustache toad | | genbank common name | +265041 | Leptobrachium liui (Pope, 1947) | | authority | +265041 | Leptobrachium liui | | scientific name | +265041 | Pope's spiny toad | | common name | +265041 | Vibrissaphora liui Pope, 1947 | | authority | +265041 | Vibrissaphora liui | | synonym | +265043 | Oreolalax | | scientific name | +265043 | Scutiger (Oreolalax) | | synonym | +265044 | Baoxing toothed toad | | genbank common name | +265044 | Oreolalax popei (Liu, 1947) | | authority | +265044 | Oreolalax popei | | scientific name | +265044 | Pope's lazy toad | | common name | +265044 | Scutiger popei Liu, 1947 | | authority | +265044 | Scutiger popei | | synonym | +265359 | Chalcereia | | synonym | +265359 | Epidemia | | synonym | +265359 | Lycaena | | scientific name | +266506 | Bolitoglossa dunni (Schmidt, 1933) | | authority | +266506 | Bolitoglossa dunni | | scientific name | +266506 | Bolitoglossa (Magnadigita) dunni | | synonym | +266506 | Dunn's mushroomtongue salamander | | genbank common name | +266506 | Dunn's salamander | | common name | +266506 | Magnadigita dunni | | synonym | +266506 | Oedipus dunni Schmidt, 1933 | | authority | +266506 | Oedipus dunni | | synonym | +266507 | Bolitoglossa flavimembris (Schmidt, 1936) | | authority | +266507 | Bolitoglossa flavimembris | | scientific name | +266507 | Bolitoglossa (Magnadigita) flavimembris | | synonym | +266507 | Magnadigita flavimembris | | synonym | +266507 | Oedipus flavimembris Schmidt, 1936 | | authority | +266507 | Oedipus flavimembris | | synonym | +266507 | yellow-legged mushroomtongue salamander | | genbank common name | +266507 | yellow-legged salamander | | common name | +266509 | Bolitoglossa lincolni | | scientific name | +266509 | Bolitoglossa lincolni (Stuart, 1943) | | authority | +266509 | Bolitoglossa (Magnadigita) lincolni | | synonym | +266509 | Lincoln's mushroomtongue salamander | | genbank common name | +266509 | Lincoln's salamander | | common name | +266509 | Magnadigita lincolni | | synonym | +266509 | Oedipus lincolni Stuart, 1943 | | authority | +266509 | Oedipus lincolni | | synonym | +266517 | Bolitoglossa (Magnadigita) rostrata | | synonym | +266517 | Bolitoglossa rostrata (Brocchi, 1883) | | authority | +266517 | Bolitoglossa rostrata | | scientific name | +266517 | longnose mushroomtongue salamander | | genbank common name | +266517 | long-nose salamander | | common name | +266517 | Magnadigita rostrata | | synonym | +266517 | Oedipus rostratum | | synonym | +266517 | Spelerpes rostratum Brocchi, 1883 | | authority | +266517 | Spelerpes rostratum | | synonym | +266517 | Spelerpes rostratus | | synonym | +267130 | Acanthogobius hasta | | scientific name | +267130 | Acanthogobius hasta (Temminck & Schlegel, 1845) | | authority | +267130 | Acanthogobius ommaturus | | synonym | +267130 | Asian freshwater goby | | common name | +267130 | Gobius hasta | | synonym | +267130 | Gobius hasta Temminck & Schlegel, 1845 | | authority | +267130 | Gobius ommaturus Richardson, 1845 | | authority | +267130 | Gobius ommaturus | | synonym | +267130 | javeline goby | | genbank common name | +267130 | Synechogobius hasta | | synonym | +267130 | Synechogobius hastus | | synonym | +267130 | Synechogobius ommaturus (Richardson, 1845) | | authority | +267130 | Synechogobius ommaturus | | synonym | +267839 | Malabar wart frog | | genbank common name | +267839 | Minervarya rufescens (Jerdon, 1853) | | authority | +267839 | Minervarya rufescens | | scientific name | +267839 | Pyxicephalus rufescens Jerdon, 1853 | | authority | +267839 | Pyxicephalus rufescens | | synonym | +267839 | reddish burrowing frog | | common name | +267839 | Zakerana rufescens | | synonym | +267840 | Minervarya brevipalmata (Peters, 1871) | | authority | +267840 | Minervarya brevipalmata | | scientific name | +267840 | Pegu wart frog | | genbank common name | +267840 | Rana brevipalmata Peters, 1871 | | authority | +267840 | Rana brevipalmata | | synonym | +267840 | short-webbed frog | | common name | +267840 | Zakerana brevipalmata | | synonym | +267844 | fungoid frog | | common name | +267844 | Hydrophylax malabaricus | | scientific name | +267844 | Hydrophylax malabaricus (Tschudi, 1838) | | authority | +267844 | Hylarana malabarica | | synonym | +267844 | Hylarana malabarica (Tschudi, 1838) | | authority | +267844 | Malabar fungoid frog | | genbank common name | +267844 | Malabar Hills frog | | common name | +267844 | Rana malabarica | | synonym | +267844 | Rana malabarica Tschudi, 1838 | | authority | +267845 | golden frog | golden frog | common name | +267845 | Hylarana aurantiaca (Boulenger, 1904) | | authority | +267845 | Hylarana aurantiaca | | synonym | +267845 | Indosylvirana aurantiaca | | scientific name | +267845 | Rana aurantiaca Boulenger, 1904 | | authority | +267845 | Rana aurantiaca | | synonym | +267845 | small wood frog | | genbank common name | +267845 | Sylvirana aurantiaca | | synonym | +268489 | Lasiodora | | scientific name | +268490 | Brazilian salmon | | common name | +268490 | Brazilian salmon pink | | common name | +268490 | Lasiodora parahibana | | synonym | +268490 | Lasiodora parahybana Mello-Leitao, 1917 | | authority | +268490 | Lasiodora parahybana | | scientific name | +268490 | salmon pink birdeater | | genbank common name | +268490 | salmon pink birdeating spider | | common name | +269193 | Mexican pygmy salamanders | | genbank common name | +269193 | Thorius | | scientific name | +270251 | Pseudemys | | scientific name | +270252 | Chrysemys concinna | | synonym | +270252 | Eastern river cooter | | common name | +270252 | Pseudemys concinna (Le Conte, 1830) | | authority | +270252 | Pseudemys concinna | | scientific name | +270252 | Suwannee river cooter | | genbank common name | +270252 | Testudo concinna Le Conte, 1830 | | authority | +270252 | Testudo concinna | | synonym | +270329 | Lepomis gibbosus (Linnaeus, 1758) | | authority | +270329 | Lepomis gibbosus | | scientific name | +270329 | Perca gibbosa Linnaeus, 1758 | | authority | +270329 | Perca gibbosa | | synonym | +270329 | pumpkinseed | | common name | +270329 | pumpkinseed sunfish | | genbank common name | +270453 | Zizina | | scientific name | +270454 | bean blue | | common name | +270454 | clover blue | | common name | +270454 | common grass blue | | genbank common name | +270454 | lesser grass blue | | common name | +270454 | Lucerne blue | | common name | +270454 | Papilio otis Fabricius, 1787 | | authority | +270454 | Papilio otis | | synonym | +270454 | Zizina otis (Fabricius, 1787) | | authority | +270454 | Zizina otis | | scientific name | +270463 | Asian admiral | | genbank common name | +270463 | Indian red admiral | | common name | +270463 | Papilio indica Herbst, 1794 | | authority | +270463 | Papilio indica | | synonym | +270463 | Vanessa indica (Herbst, 1794) | | authority | +270463 | Vanessa indica | | scientific name | +270526 | Solenostomus | | scientific name | +270536 | Toxotes | | scientific name | +270551 | Epigonus | | scientific name | +270567 | Neoplatycephalus | | synonym | +270567 | Platycephalus | | scientific name | +270573 | Labracinus | | scientific name | +270574 | Cichlops cyclophthalmus Muller & Troschel, 1849 | | authority | +270574 | Cichlops cyclophthalmus | | synonym | +270574 | fire-tail devil | | genbank common name | +270574 | giant dottyback | | common name | +270574 | Labracinus cyclophthalmus (Mueller & Troschel, 1849) | | authority | +270574 | Labracinus cyclophthalmus | | scientific name | +270577 | Pseudanthias | | scientific name | +270608 | Bembrops | | scientific name | +271217 | ear-cutting caterpillar | | common name | +271217 | Leucania separata | | synonym | +271217 | Leucania separata Walker, 1865 | | authority | +271217 | Mythimna separata | | scientific name | +271217 | Mythimna separata (Walker, 1865) | | authority | +271217 | northern armyworm | | genbank common name | +271217 | Oriental armyworm | | common name | +271217 | Pseudaletia separata | | synonym | +271217 | rice ear-cutting caterpillar | | common name | +272047 | Calidris ruficollis | | scientific name | +272047 | red-necked stint | | common name | +272047 | rufous-necked stint | | genbank common name | +272047 | Tringa ruficollis Pallas, 1776 | | authority | +272047 | Tringa ruficollis | | synonym | +272189 | Lankanectes | | scientific name | +272190 | corrugated water frog | | genbank common name | +272190 | Dicroglossus corrugatus | | synonym | +272190 | Lankanectes corrugatus (Peters, 1863) | | authority | +272190 | Lankanectes corrugatus | | scientific name | +272190 | Limnonectes corrugatus | | synonym | +272190 | Rana corrugata Peters, 1863 | | authority | +272190 | Rana corrugata | | synonym | +272190 | Sri Lanka wart frog | | common name | +272789 | Atypichthys Guenther, 1862 | | authority | +272789 | Atypichthys | | scientific name | +272789 | Aypus Guenther, 1860 | | synonym | +272797 | Chaetodon tricolor Bloch, 1795 | | authority | +272797 | Chaetodon tricolor | | synonym | +272797 | Holacanthus tricolor (Bloch, 1795) | | authority | +272797 | Holacanthus tricolor | | scientific name | +272797 | rock beauty angelfish | | common name | +272797 | rock beauty | | genbank common name | +274457 | Eubleekeria jonesi (James, 1971) | | authority | +274457 | Eubleekeria jonesi | | scientific name | +274457 | Jones' pony fish | | genbank common name | +274457 | Leiognathus jonesi James, 1969 | | authority | +274457 | Leiognathus jonesi James, 1971 | | authority | +274457 | Leiognathus jonesi | | synonym | +274457 | splendid ponyfish | splendid ponyfish | common name | +274464 | Gerres | | scientific name | +274727 | Caracanthus | | scientific name | +274728 | Caracanthus maculatus (Gray, 1831) | | authority | +274728 | Caracanthus maculatus | | scientific name | +274728 | gumdrop coral croucher | | common name | +274728 | gumdrop coral croucher goby | | common name | +274728 | Micropus maculatus Gray, 1831 | | authority | +274728 | Micropus maculatus | | synonym | +274728 | Pacific spotted velvetfish | | common name | +274728 | spotted coral croucher | | genbank common name | +274728 | spotted coral croucher goby | | common name | +274730 | Pseudogramma | | scientific name | +275431 | Ircinia | | scientific name | +278733 | Menticirrhus | | scientific name | +278734 | Carolina whiting | | common name | +278734 | Cyprinus americanus Linnaeus, 1758 | | authority | +278734 | Cyprinus americanus | | synonym | +278734 | king whiting | | common name | +278734 | Menticirrhus americanus (Linnaeus, 1758) | | authority | +278734 | Menticirrhus americanus | | scientific name | +278734 | southern kingcroaker | | genbank common name | +278734 | southern kingfish | southern kingfish | common name | +278736 | channel mullet | | common name | +278736 | Gulf kingcroaker | | genbank common name | +278736 | Gulf kingfish | | common name | +278736 | Gulf whiting | | common name | +278736 | Menticirrhus littoralis (Holbrook, 1847) | | authority | +278736 | Menticirrhus littoralis | | scientific name | +278736 | Menticirrhus undulatus littoralis | | synonym | +278736 | Umbrina littoralis Holbrook, 1847 | | authority | +278736 | Umbrina littoralis | | synonym | +278772 | Stellifer | | scientific name | +278773 | rake stardrum | | genbank common name | +278773 | Stellifer rastrifer (Jordan, 1889) | | authority | +278773 | Stellifer rastrifer | | scientific name | +278773 | Stelliferus rastrifer Jordan, 1889 | | authority | +278773 | Stelliferus rastrifer | | synonym | +278773 | yellow stardrum | | common name | +279537 | Desmognathus folkertsi Camp, Tilley, Austin, and Marshall, 2002 | | authority | +279537 | Desmognathus folkertsii | | synonym | +279537 | Desmognathus folkertsi | | scientific name | +279537 | dwarf black-bellied salamander | | common name | +279537 | dwarf blackbelly salamander | | genbank common name | +279931 | Arenaria melanocephala | | scientific name | +279931 | black turnstone | | genbank common name | +279931 | Strepsilas melanocephalus | | synonym | +279931 | Strepsilas melanocephalus Vigors, 1829 | | authority | +279931 | turnstone | turnstone | common name | +279961 | Calidris pusilla | | scientific name | +279961 | Ereunetes pusillus | | synonym | +279961 | Eurenetes pusillus | | synonym | +279961 | semi-palmated sandpiper | | common name | +279961 | semipalmated sandpiper | | genbank common name | +279961 | Tringa pusilla Linnaeus, 1766 | | authority | +279961 | Tringa pusilla | | synonym | +279982 | common Mexican treefrog | | common name | +279982 | Hyla baudinii Dumeril & Bibron, 1840 | | authority | +279982 | Hyla baudinii | | synonym | +279982 | Mexican treefrog | | genbank common name | +279982 | Smilisca baudinii | | scientific name | +280780 | Okavango robber | | genbank common name | +280780 | Petersius maunensis Fowler, 1935 | | authority | +280780 | Petersius maunensis | | synonym | +280780 | Rhabdalestes maunensis (Fowler, 1935) | | authority | +280780 | Rhabdalestes maunensis | | scientific name | +280780 | slender robber | | common name | +281757 | Macrotocinclus | | synonym | +281757 | Otocinclus | | scientific name | +282069 | Abrornis yunnanensis La Touche, 1922 | | authority | +282069 | Abrornis yunnanensis | | synonym | +282069 | Chinese leaf warbler | | common name | +282069 | La Touche's leaf-warbler | | genbank common name | +282069 | Phylloscopus proregulus yunnanensis La Touche, 1922 | | authority | +282069 | Phylloscopus proregulus yunnanensis | | synonym | +282069 | Phylloscopus sichuanensi | | synonym | +282069 | Phylloscopus yunnanensis (La Touche, 1922) | | authority | +282069 | Phylloscopus yunnanensis | | scientific name | +282253 | Ogilbyina | | scientific name | +282254 | Australian dottyback | | common name | +282254 | multicolored dottyback | | genbank common name | +282254 | New Holland multicolored dottyback | | common name | +282254 | Ogilbyina novaehollandiae | | scientific name | +282254 | Ogilbyina novaehollandiae (Steindachner, 1879) | | authority | +282254 | Pseudochromis novaehollandiae Steindachner, 1879 | | authority | +282254 | Pseudochromis novaehollandiae | | synonym | +282254 | red and green dottyback | | common name | +282315 | Zizeeria | | scientific name | +282316 | African grass blue | | genbank common name | +282316 | dark grass blue | dark grass blue | common name | +282316 | Lycaena knysna | | synonym | +282316 | Lycaena knysna Trimen, 1862 | | authority | +282316 | Zizeeria knysna | | scientific name | +282316 | Zizeeria knysna (Trimen, 1862) | | authority | +282391 | American copper | | common name | +282391 | common copper | | genbank common name | +282391 | Lycaena phlaeas (Linnaeus, 1761) | | authority | +282391 | Lycaena phlaeas | | scientific name | +282391 | Papilio phlaeas Linnaeus, 1761 | | authority | +282391 | Papilio phlaeas | | synonym | +282391 | small copper | small copper | common name | +283033 | Sander | | scientific name | +283033 | Stizostedion | | synonym | +283035 | Lucioperca lucioperca | | synonym | +283035 | Perca lucioperca Linnaeus, 1758 | | authority | +283035 | Perca lucioperca | | synonym | +283035 | pike-perch | | common name | +283035 | pikeperch | | genbank common name | +283035 | Sander lucioperca (Linnaeus, 1758) | | authority | +283035 | Sander lucioperca | | scientific name | +283035 | Stizostedion lucioperca | | synonym | +283213 | Hasselt's litter frog | | common name | +283213 | Java spadefoot toad | | genbank common name | +283213 | Leptobrachium hasseltii | | scientific name | +283213 | Leptobrachium hasseltii Tschudi, 1838 | | authority | +283213 | Leptobrachium hasselti | | synonym | +283215 | Megophrys omeimontis Liu, 1950 | | authority | +283215 | Megophrys omeimontis | | scientific name | +283215 | Mount Omei spadefoot toad | | genbank common name | +283215 | Omei horned toad | | common name | +283215 | Xenophrys omeimontis (Liu, 1950) | | authority | +283215 | Xenophrys omeimontis | | synonym | +283217 | Asian mountain toad | | common name | +283217 | Megophrys microstoma (Boulenger, 1903) | | authority | +283217 | Megophrys microstoma | | scientific name | +283217 | narrow-mouthed horned toad | | genbank common name | +283217 | Ophryophryne microstoma Boulenger, 1903 | | authority | +283217 | Ophryophryne microstoma | | synonym | +283217 | Ophryophryne poilani | | synonym | +283373 | Cypselurus hiraii Abe, 1953 | | authority | +283373 | Cypselurus hiraii | | scientific name | +283373 | Cypselurus opisthopus hiraii Abe, 1953 | | authority | +283373 | Cypselurus opisthopus hiraii | | synonym | +283373 | darkedged-wing flying fish | | common name | +283373 | Japanese flying fish | | common name | +283373 | Japanese flyingfish | Japanese flyingfish | genbank common name | +283843 | bedstraw hawk-moth | | genbank common name | +283843 | Hyles gallii (Rottemburg, 1775) | | authority | +283843 | Hyles gallii | | scientific name | +283843 | madder hawk-moth | | common name | +283843 | Sphinx gallii Rottemburg, 1775 | | authority | +283843 | Sphinx gallii | | synonym | +283868 | Hippotion Hubner, 1819 | | authority | +283868 | Hippotion | | scientific name | +283870 | grape-vine hawk-moth | | common name | +283870 | Hippotion celerio (Linnaeus, 1758) | | authority | +283870 | Hippotion celerio | | scientific name | +283870 | silver striped hawk | | common name | +283870 | silver-striped hawk-moth | | genbank common name | +283870 | Sphinx celerio Linnaeus, 1758 | | authority | +283870 | Sphinx celerio | | synonym | +284583 | Amur sleeper | | common name | +284583 | Chinese sleeper | | genbank common name | +284583 | Perccottus glenii Dybowski, 1877 | | authority | +284583 | Perccottus glenii | | scientific name | +284583 | Percottus glehni | | synonym | +284584 | Perccottus | | scientific name | +284584 | Percottus | | synonym | +284700 | Dicrossus | | scientific name | +285991 | Homopus | | scientific name | +285992 | Chersobius signatus | | scientific name | +285992 | Homopus signatus (Gmelin, 1789) | | authority | +285992 | Homopus signatus | | synonym | +285992 | Speckled Cape tortoise | | common name | +285992 | Speckled padloper | | genbank common name | +285992 | Testudo signata | | synonym | +285992 | Testudo signata Walbaum, 1782 | | authority | +285996 | beaked Cape tortoise | | common name | +285996 | common padloper | | genbank common name | +285996 | Homopus aerolatus | | synonym | +285996 | Homopus areolatus | | scientific name | +285996 | Testudo areolata | | synonym | +285996 | Testudo areolata Thunberg, 1787 | | authority | +286016 | Berger's Cape tortoise | | common name | +286016 | Chersobius solus Branch, 2007 | | authority | +286016 | Chersobius solus | | scientific name | +286016 | Homopus bergeri Lindholm 1906 | | authority | +286016 | Homopus bergeri | | synonym | +286016 | Homopus solus Branch 2007 | | authority | +286016 | Homopus solus | | synonym | +286016 | Nama padloper | | genbank common name | +286536 | Coilia | | scientific name | +286537 | Clupea mystus | | synonym | +286537 | Coilia mystus (Linnaeus, 1758) | | authority | +286537 | Coilia mystus | | scientific name | +286537 | Osbeck's grenadier anchovy | | genbank common name | +286537 | phoenix-tailed anchovy | | common name | +288314 | Salamandrella | | scientific name | +288315 | Manchurian salamander | Manchurian salamander | synonym | +288315 | Salamandrella keyserlingii Dybowski, 1870 | | authority | +288315 | Salamandrella keyserlingii | | scientific name | +288315 | Siberian newt | | common name | +288315 | Siberian salamander | Siberian salamander | genbank common name | +288316 | Pachyhynobius | | scientific name | +288317 | Hynobius yunanicus Chen, Qu, and Niu, 2001 | | authority | +288317 | Hynobius yunanicus | | synonym | +288317 | Pachyhynobius shangchengensis Fei, Qu, and Wu, 1983 | | authority | +288317 | Pachyhynobius shangchengensis | | scientific name | +288317 | Shangcheng salamander | | common name | +288317 | Shangcheng stout salamander | | genbank common name | +288645 | Enoplometopus | | scientific name | +288646 | Enoplometopus occidentalis (Randall, 1840) | | authority | +288646 | Enoplometopus occidentalis | | scientific name | +288646 | Hawaiian reef lobster | | genbank common name | +288646 | Nephrops occidentalis Randall, 1840 | | authority | +288646 | Nephrops occidentalis | | synonym | +288646 | red reef lobster | | common name | +288788 | cannibal frogs | | genbank common name | +288788 | Lechriodus Boulenger, 1882 | | authority | +288788 | Lechriodus | | scientific name | +288789 | Asterophrys melanopyga Doria, 1875 | | authority | +288789 | Asterophrys melanopyga | | synonym | +288789 | black-rumped southern frog | | common name | +288789 | Lechriodus melanopyga (Doria, 1875) | | authority | +288789 | Lechriodus melanopyga | | scientific name | +288789 | Wokan cannibal frog | | genbank common name | +290154 | Bactericera Puton, 1876 | | authority | +290154 | Bactericera | | scientific name | +290155 | Bactericera cockerelli | | scientific name | +290155 | Bactericera cockerelli (Sulc, 1909) | | authority | +290155 | Bactericera (Paratrioza) cockerelli | | synonym | +290155 | Paratrioza cockerelli | | synonym | +290155 | potato psyllid | | common name | +290155 | potato/tomato psyllid | | genbank common name | +291688 | common branded skipper | | genbank common name | +291688 | Hesperia comma (Linnaeus, 1758) | | authority | +291688 | Hesperia comma | | scientific name | +291688 | Papilio comma Linnaeus, 1758 | | authority | +291688 | Papilio comma | | synonym | +291688 | silver-spotted skipper | | common name | +291689 | Hesperia juba | | scientific name | +291689 | jagged-border skipper | | genbank common name | +291689 | Juba skipper | | common name | +291689 | Pamphila juba Scudder, 1872 | | authority | +291689 | Pamphila juba | | synonym | +291689 | Yuba skipper | | common name | +291690 | Erynnis lindseyi Holland, 1930 | | authority | +291690 | Erynnis lindseyi | | synonym | +291690 | Hesperia lindseyi | | scientific name | +291690 | Lindsey's branded skipper | | common name | +291690 | Lindsey's skipper | | common name | +291690 | lost-egg skipper | | genbank common name | +291691 | Hesperia nevada | | scientific name | +291691 | Hesperia nevada (Scudder, 1874) | | authority | +291691 | montane skipper | | common name | +291691 | Nevada skipper | | genbank common name | +291691 | Pamphila nevada | | synonym | +291694 | Polites | | scientific name | +291695 | Hesperia sabuleti Boisduval, 1852 | | authority | +291695 | Hesperia sabuleti | | synonym | +291695 | Polites sabuleti (Boisduval, 1852) | | authority | +291695 | Polites sabuleti | | scientific name | +291695 | saltgrass skipper | | common name | +291695 | sandhill skipper | | genbank common name | +291793 | Chanodichthys | | scientific name | +291793 | Erythroculter | | synonym | +291939 | fragile large-headed frog | | common name | +291939 | fragile wart frog | | genbank common name | +291939 | Limnonectes fragilis (Liu & Hu in Liu, Hu, Fei & Huang, 1973) | | authority | +291939 | Limnonectes fragilis | | scientific name | +291939 | Rana fragilis Liu & Hu, 1973 | | authority | +291939 | Rana fragilis | | synonym | +293340 | Grapholita | | scientific name | +293908 | Cheilopogon | | scientific name | +294366 | dwarf sirens | | genbank common name | +294366 | Pseudobranchus | | scientific name | +294758 | Amblystoma aterrimum Cope, 1868 | | authority | +294758 | Amblystoma aterrimum | | synonym | +294758 | Dicamptodon aterrimus (Cope, 1868) | | authority | +294758 | Dicamptodon aterrimus | | scientific name | +294758 | Idaho giant salamander | | genbank common name | +294758 | Rocky Mountain salamander | | common name | +295659 | Lasioderma | | scientific name | +295660 | cigarette beetle | | genbank common name | +295660 | Lasioderma serricorne Fabricius, 1792 | | authority | +295660 | Lasioderma serricorne | | scientific name | +295660 | Lasioderma sp. MSL2007 | | includes | +295660 | tobacco beetle | | common name | +297009 | Lyciasalamandra | | scientific name | +297528 | Lampropholis mustelina | | synonym | +297528 | Mocoa mustelina O'Shaughnessy, 1874 | | authority | +297528 | Mocoa mustelina | | synonym | +297528 | Saproscincus mustelinus (O'Shaugnessy, 1874) | | authority | +297528 | Saproscincus mustelinus | | scientific name | +297528 | southern weasel skink | | common name | +297528 | weasel shadeskink | | common name | +297528 | weasel skink | | genbank common name | +299648 | highland frog | | genbank common name | +299648 | Lithobates maculata | | synonym | +299648 | Lithobates maculatus (Brocchi, 1877) | | authority | +299648 | Lithobates maculatus | | scientific name | +299648 | masked mountain frog | | common name | +299648 | Rana maculata Brocchi, 1877 | | authority | +299648 | Rana maculata | | synonym | +299648 | Sierrana maculata | | synonym | +299668 | Cascade frog | | common name | +299668 | Lithobates pustulosus (Boulenger, 1883) | | authority | +299668 | Lithobates pustulosus | | scientific name | +299668 | Mexican Cascade frog | | genbank common name | +299668 | Rana pustulosa Boulenger,1883 | | authority | +299668 | Rana pustulosa | | synonym | +299683 | dark gopher frog | | common name | +299683 | dusky gopher frog | | genbank common name | +299683 | Lithobates sevosus (Goin & Netting, 1940) | | authority | +299683 | Lithobates sevosus | | scientific name | +299683 | Rana sevosa Goin & Netting, 1940 | | authority | +299683 | Rana sevosa | | synonym | +299683 | St. Tammany gopher frog | | common name | +299684 | Carolina gopher frog | | common name | +299684 | Florida gopher frog | | genbank common name | +299684 | Lithobates capito (LeConte, 1855) | | authority | +299684 | Lithobates capito | | scientific name | +299684 | Pantherana capito | | synonym | +299684 | Rana capito LeConte, 1855 | | synonym | +299727 | Chiroleptes dahlii Boulenger, 1896 | | authority | +299727 | Chiroleptes dahlii | | synonym | +299727 | Dahl's olive treefrog | | genbank common name | +299727 | Litoria dahlii (Boulenger, 1896) | | authority | +299727 | Litoria dahlii | | synonym | +299727 | northern waterfrog | | common name | +299727 | Ranoidea dahlii (Boulenger, 1896) | | authority | +299727 | Ranoidea dahlii | | scientific name | +300230 | Chelonodon patoca (Hamilton, 1822) | | authority | +300230 | Chelonodon patoca | | synonym | +300230 | Chelonodontops patoca (Hamilton, 1822) | | synonym | +300230 | Chelonodontops patoca | | scientific name | +300230 | Gangetic pufferfish | | common name | +300230 | milkspotted puffer | | genbank common name | +300230 | Tetraodon patoca Hamilton, 1822 | | authority | +300230 | Tetraodon patoca | | synonym | +300230 | Tetrodon patoca Hamilton, 1822 | | authority | +300230 | Tetrodon patoca | | synonym | +300297 | Chilatherina | | scientific name | +300304 | brook silverside | | genbank common name | +300304 | Chirostoma sicculum Cope, 1865 | | authority | +300304 | Chirostoma sicculum | | synonym | +300304 | Labidesthes sicculus (Cope, 1865) | | authority | +300304 | Labidesthes sicculus | | scientific name | +300414 | Variola | | scientific name | +300415 | chameleon sea bass | | common name | +300415 | lunartail grouper | | common name | +300415 | lyretail grouper | | common name | +300415 | Perca louti Forsskal, 1775 | | authority | +300415 | Perca louti | | synonym | +300415 | Variola louti (Fabricius, 1775) | | authority | +300415 | Variola louti | | scientific name | +300415 | yellowedge coronation trout | | common name | +300415 | yellow-edged lyretail | | genbank common name | +300855 | Bembecia | | scientific name | +300877 | Amur leopard cat | | genbank common name | +300877 | Felis bengalensis euptilura | | synonym | +300877 | Prionailurus bengalensis euptilura | | synonym | +300877 | Prionailurus bengalensis euptilurus (Elliot, 1871) | | authority | +300877 | Prionailurus bengalensis euptilurus | | scientific name | +300877 | Tsushima leopard cat | | common name | +301030 | Pennisetia | | scientific name | +301031 | Pennisetia hylaeiformis (Laspeyres, 1801) | | authority | +301031 | Pennisetia hylaeiformis | | scientific name | +301031 | raspberry clearwing | | genbank common name | +301031 | raspberry clearwing moth | | common name | +301031 | Sesia hylaeiformis Laspeyres, 1801 | | authority | +301031 | Sesia hylaeiformis | | synonym | +301037 | Bembecia ichneumoniformis ([Denis & Schiffermueller], 1775) | | authority | +301037 | Bembecia ichneumoniformis | | scientific name | +301037 | six-belted clearwing | | genbank common name | +301037 | six-belted clearwing moth | | common name | +301037 | Sphinx ichneumoniformis Denis & Schiffermuller, 1775 | | authority | +301037 | Sphinx ichneumoniformis | | synonym | +301040 | Pyropteron | | scientific name | +301040 | Synansphecia | | synonym | +301041 | fiery clearwing | | genbank common name | +301041 | fiery clearwing moth | | common name | +301041 | Pyropteron chrysidiforme (Esper, 1782) | | authority | +301041 | Pyropteron chrysidiforme | | scientific name | +301041 | Pyropteron chrysidiformis | | synonym | +301041 | Sphinx chrysidiformis | | synonym | +301166 | buckwheat blue | | common name | +301166 | Euphilotes battoides (Behr, 1867) | | authority | +301166 | Euphilotes battoides | | scientific name | +301166 | Lycaena battoides Behr, 1867 | | authority | +301166 | Lycaena battoides | | synonym | +301166 | square-spotted blue | | genbank common name | +301283 | Neosilurus | | scientific name | +301299 | Atacama toad | | genbank common name | +301299 | Bufo atacamensis | | synonym | +301299 | Bufo spinulosus atacamensis Cei, 1962 | | authority | +301299 | Bufo spinulosus atacamensis | | synonym | +301299 | Rhinella atacamensis (Cei, 1962) | | authority | +301299 | Rhinella atacamensis | | scientific name | +301299 | Vallenar toad | | common name | +302418 | Cape pangolin | | common name | +302418 | ground pangolin | | genbank common name | +302418 | Manis temminckii Smuts, 1832 | | authority | +302418 | Manis temminckii | | synonym | +302418 | Manis temmincki | | synonym | +302418 | Smutsia temminckii | | scientific name | +302418 | Smutsia temminckii (Smuts, 1832) | | authority | +302418 | Temminck's pangolin | | common name | +302537 | Anaxyrus baxteri (Porter, 1968) | | authority | +302537 | Anaxyrus baxteri | | scientific name | +302537 | Baxter's toad | | common name | +302537 | Bufo baxteri Porter, 1968 | | authority | +302537 | Bufo baxteri | | synonym | +302537 | Bufo hemiophrys baxteri Porter, 1968 | | authority | +302537 | Bufo hemiophrys baxteri | | synonym | +302537 | Wyoming toad | | genbank common name | +302540 | Anaxyrus hemiophrys (Cope, 1886) | | authority | +302540 | Anaxyrus hemiophrys | | scientific name | +302540 | Bufo hemiophrys Cope, 1886 | | authority | +302540 | Bufo hemiophrys | | synonym | +302540 | Canadian toad | | genbank common name | +302540 | Dakota toad | | common name | +302541 | Anaxyrus californicus (Camp, 1915) | | authority | +302541 | Anaxyrus californicus | | scientific name | +302541 | arroyo toad | | genbank common name | +302541 | Bufo californicus Camp, 1915 | | authority | +302541 | Bufo californicus | | synonym | +302541 | Bufo cognatus californicus Camp, 1915 | | authority | +302541 | Bufo cognatus californicus | | synonym | +302541 | California toad | California toad | common name | +302541 | Mexican arroyo toad | | common name | +302544 | Bufo marmoreus | | synonym | +302544 | Bufo marmoreus Wiegmann, 1833 | | authority | +302544 | Cranopsis marmorea | | synonym | +302544 | Incilius marmoreus | | scientific name | +302544 | Incilius marmoreus (Wiegmann, 1833) | | authority | +302544 | marbled toad | marbled toad | genbank common name | +302544 | Ollotis marmorea | | synonym | +302544 | Wiegmann's toad | | common name | +302546 | Bufo melanochlorus Cope, 1877 | | authority | +302546 | Bufo melanochlorus | | synonym | +302546 | dark green toad | | genbank common name | +302546 | Incilius melanochlorus (Cope, 1877) | | authority | +302546 | Incilius melanochlorus | | scientific name | +302546 | Ollotis melanochlora | | synonym | +302546 | west forest toad | | common name | +302776 | Pristolepis | | scientific name | +302777 | banded Asian leaffish | | common name | +302777 | Catopra fasciata Bleeker, 1851 | | authority | +302777 | Catopra fasciata | | synonym | +302777 | Malayan leaffish | | genbank common name | +302777 | Nandid perch | | common name | +302777 | Pristolepis fasciata (Bleeker, 1851) | | authority | +302777 | Pristolepis fasciata | | scientific name | +303304 | Ara caninde | | synonym | +303304 | Ara glaucogularis Dabbene, 1921 | | authority | +303304 | Ara glaucogularis | | scientific name | +303304 | blue throated macaw | | common name | +303304 | Blue-throated macaw | | genbank common name | +303304 | Caninde macaw | | common name | +303694 | Pseudobalistes | | scientific name | +303695 | Balistes fuscus Bloch & Schneider, 1801 | | authority | +303695 | Balistes fuscus | | synonym | +303695 | blue-and-gold triggerfish | | common name | +303695 | bluelined triggerfish | | common name | +303695 | brown triggerfish | | common name | +303695 | Pseudobalistes fuscus (Bloch & Schneider, 1801) | | authority | +303695 | Pseudobalistes fuscus | | scientific name | +303695 | yellow-spotted triggerfish | | genbank common name | +303738 | Aracana | | scientific name | +303747 | Torquigener | | scientific name | +303935 | Carcharhinus perezii (Poey, 1876) | | authority | +303935 | Carcharhinus perezii | | scientific name | +303935 | Carcharhinus perezi | | synonym | +303935 | Carcharhinus springeri (Bigelow & Schroeder, 1944) | | authority | +303935 | Carcharhinus springeri | | synonym | +303935 | Caribbean reef shark | | genbank common name | +303935 | Eulamia springeri | | synonym | +303935 | Platypodon perezii Poey, 1876 | | authority | +303935 | Platypodon perezii | | synonym | +303935 | reef shark | | common name | +304009 | Hydrocynus brevis (Guenther, 1864) | | authority | +304009 | Hydrocynus brevis | | scientific name | +304009 | Hydrocyon brevis Guenther, 1864 | | authority | +304009 | Hydrocyon brevis Gunther, 1864 | | authority | +304009 | Hydrocyon brevis | | synonym | +304009 | tiger-fish | | genbank common name | +304009 | tiger fish | tiger fish | common name | +304017 | Characiformes sp. BOLD:AAC1024 | | includes | +304017 | Cheirodon eques Steindachner, 1882 | | authority | +304017 | Cheirodon eques | | synonym | +304017 | Hyphessobrycon eques | | scientific name | +304017 | Hyphessobrycon eques (Steindachner, 1882) | | authority | +304017 | Hyphessobrycon serpae Durbin, 1908 | | authority | +304017 | Hyphessobrycon serpae | | synonym | +304017 | jewel tetra | | genbank common name | +304017 | Megalamphodus eques | | synonym | +304017 | serpae tetra | | common name | +305659 | Dioryctria | | scientific name | +305662 | Dioryctria abietella (Denis & Schiffermuller, 1775) | | authority | +305662 | Dioryctria abietella | | scientific name | +305662 | fir coneworm | | common name | +305662 | spruce coneworm | | genbank common name | +305662 | Tinea abietella Denis & Schiffermuller, 1775 | | authority | +305662 | Tinea abietella | | synonym | +305819 | Ixalus leucorhinus Dumeril & Bibron, 1840 | | authority | +305819 | Ixalus leucorhinus Lichtenstein & Martens, 1856 | | authority | +305819 | Ixalus leucorhinus | | synonym | +305819 | Philautus leucorhinus | | synonym | +305819 | pointed-nosed bush frog | | common name | +305819 | Pseudophilautus leucorhinus (Lichtenstein & Martens, 1856) | | authority | +305819 | Pseudophilautus leucorhinus | | scientific name | +305819 | whitenose bubble-nest frog | | common name | +305819 | white-nosed bush frog | | genbank common name | +305821 | blue-eyed bush frog | | common name | +305821 | blue-eyed yellow bush frog | | genbank common name | +305821 | Philautus neelanethrus Gururaja, Aravind, Ali, Ramachandra, Velavan, Krishnakumar & Aggarwal, 2007 | | authority | +305821 | Philautus neelanethrus | | scientific name | +305821 | Philautus sp. 'neelanethrus' | | includes | +305821 | Pseudophilautus sp. 'neelanethrus' | | includes | +306578 | brownspotted grouper | | genbank common name | +306578 | brown spotted reef cod | | common name | +306578 | Epinephelus chlorostigma | | scientific name | +306578 | Epinephelus chlorostigma (Valenciennes, 1828) | | authority | +306578 | Serranus chlorostigma | | synonym | +306578 | Serranus chlorostigma Valenciennes, 1828 | | authority | +306589 | Cophixalus | | scientific name | +306590 | Austrochaperina ornata Fry, 1912 | | authority | +306590 | Austrochaperina ornata | | synonym | +306590 | Cophixalus ornatus (Fry, 1912) | | authority | +306590 | Cophixalus ornatus | | scientific name | +306590 | ornate frog | ornate frog | genbank common name | +306590 | ornate rainforest frog | | common name | +307205 | Fannia canicularis (Linnaeus, 1761) | | authority | +307205 | Fannia canicularis | | scientific name | +307205 | lesser house fly | | common name | +307205 | little house fly | | genbank common name | +307205 | Musca canicularis Linnaeus, 1761 | | authority | +307205 | Musca canicularis | | synonym | +307978 | broad-striped dwarf siren | | common name | +307978 | dwarf siren | dwarf siren | common name | +307978 | Pseudobranchus striatus (LeConte, 1824) | | authority | +307978 | Pseudobranchus striatus | | scientific name | +307978 | Siren striata LeConte, 1824 | | authority | +307978 | Siren striata | | synonym | +307978 | slender dwarf siren | | genbank common name | +308091 | Milyeringa | | scientific name | +308092 | blind cave gudgeon | | common name | +308092 | blind gudgeon | | common name | +308092 | cave gudgeon | | genbank common name | +308092 | Milyeringa brooksi Chakrabarty, 2010 | | authority | +308092 | Milyeringa brooksi | | synonym | +308092 | Milyeringa veritas | | scientific name | +308092 | Milyeringa veritas Whitley, 1945 | | authority | +309541 | Fugu obscurus | | synonym | +309541 | mefugu | | genbank common name | +309541 | obscure pufferfish | obscure pufferfish | common name | +309541 | Sphoeroides ocellatus f. obscurus Abe, 1949 | | authority | +309541 | Sphoeroides ocellatus f. obscurus | | synonym | +309541 | Sphoeroides ocellatus obscurus | | synonym | +309541 | Takifugu obscurus (Abe, 1949) | | authority | +309541 | Takifugu obscurus | | scientific name | +309910 | Pseudoplatystoma | | scientific name | +309911 | pintado | | common name | +309911 | Platystoma corruscans Spix & Agassiz, 1829 | | authority | +309911 | Platystoma corruscans | | synonym | +309911 | Pseudoplatystoma corruscans | | scientific name | +309911 | Pseudoplatystoma corruscans (Spix & Agassiz, 1829) | | authority | +309911 | Siluriformes sp. BOLD:AAD0242 | | includes | +309911 | spotted shovelnose | | genbank common name | +309911 | spotted sorubim | | common name | +310513 | Aedes sollicitans | | synonym | +310513 | eastern salt marsh mosquito | | common name | +310513 | eastern saltmarsh mosquito | | genbank common name | +310513 | Ochlerotatus (Ochlerotatus) sollicitans | | synonym | +310513 | Ochlerotatus sollicitans | | scientific name | +310513 | Ochlerotatus sollicitans (Walker, 1856) | | authority | +310571 | brindlebass | | common name | +310571 | Epinephelus lanceolatus (Bloch, 1790) | | authority | +310571 | Epinephelus lanceolatus | | scientific name | +310571 | giant grouper | | genbank common name | +310571 | Holocentrus lanceolatus Bloch, 1790 | | authority | +310571 | Holocentrus lanceolatus | | synonym | +310571 | king grouper | | common name | +310571 | Promicrops lanceolatus | | synonym | +310571 | Queensland grouper | | common name | +310664 | Bangkimtsing frog | | common name | +310664 | brown-backed odorous frog | | genbank common name | +310664 | Huia swinhoana | | synonym | +310664 | Odorrana swinhoana (Boulenger, 1903) | | authority | +310664 | Odorrana swinhoana | | scientific name | +310664 | Rana swinhoana Boulenger, 1903 | | authority | +310664 | Rana swinhoana | | synonym | +310666 | Mount Dulit frog | | genbank common name | +310666 | Odorrana hosii | | scientific name | +310666 | poisonous rock frog | | common name | +310666 | Rana hosii Boulenger, 1891 | | authority | +310666 | Rana hosii | | synonym | +310668 | Assam Hills frog | | genbank common name | +310668 | Clinotarsus alticola | | scientific name | +310668 | Hylorana alticola | | synonym | +310668 | Nasirana alticola | | synonym | +310668 | pointed-headed frog | | common name | +310668 | Rana alticola Boulenger, 1882 | | authority | +310668 | Rana alticola | | synonym | +310713 | Ceratotherium simum cottoni | | scientific name | +310713 | northern square-lipped rhinoceros | | common name | +310713 | northern white rhinoceros | | genbank common name | +310713 | Rhinoceros cottoni Lydekker, 1908 | | authority | +310713 | Rhinoceros cottoni | | synonym | +310804 | Heliconius charithonia peruviana | | synonym | +310804 | Heliconius charithonia peruvianus | | synonym | +310804 | Heliconius peruviana | | synonym | +310804 | Heliconius peruvianus (Felder & Felder, 1859) | | authority | +310804 | Heliconius peruvianus | | scientific name | +310804 | Peruvian longwing | | genbank common name | +310804 | Peruvian zebra longwing | | common name | +310915 | Helicophagus hypophthalmus Sauvage, 1878 | | authority | +310915 | Helicophagus hypophthalmus | | synonym | +310915 | iridescent shark-catfish | | common name | +310915 | Pangasianodon hypophthalmus (Sauvage, 1878) | | authority | +310915 | Pangasianodon hypophthalmus | | scientific name | +310915 | Pangasius hypophthalmus | | synonym | +310915 | Pangasius sutchi | | synonym | +310915 | striped catfish | | genbank common name | +310915 | Sutchi catfish | | common name | +310915 | Thailand catfish | | common name | +311037 | dead leaf butterfly | | common name | +311037 | dead leaf | | common name | +311037 | Kallima inachus (Boisduval, 1846) | | authority | +311037 | Kallima inachus eucerca | | synonym | +311037 | Kallima inachus | | scientific name | +311037 | orange oakleaf | | genbank common name | +311327 | Tortrix Linnaeus, 1758 | | authority | +311327 | Tortrix | | scientific name | +311328 | European oak leafroller | | common name | +311328 | green oak leafroller | | common name | +311328 | green oak leaf roller | | genbank common name | +311328 | green oak tortrix | | common name | +311328 | Phalaena viridana Linnaeus, 1758 | | authority | +311328 | Phalaena viridana | | synonym | +311328 | Tortrix viridana (Linnaeus, 1758) | | authority | +311328 | Tortrix viridana | | scientific name | +311576 | Gracixalus | | scientific name | +311577 | Aquixalus carinensis | | synonym | +311577 | brown Carin tree frog | | common name | +311577 | Burmese bubble-nest frog | | common name | +311577 | Gracixalus carinensis (Boulenger, 1893) | | authority | +311577 | Gracixalus carinensis | | scientific name | +311577 | Ixalus carinensis Boulenger, 1893 | | authority | +311577 | Ixalus carinensis | | synonym | +311577 | Karin Hills bushfrog | | genbank common name | +311577 | Kurixalus carinensis (Boulenger, 1893) | | authority | +311577 | Kurixalus carinensis | | synonym | +311577 | Philautus carinensis | | synonym | +311778 | Aquixalus | | synonym | +311778 | Kurixalus | | scientific name | +311779 | big-thumbed treefrog | | genbank common name | +311779 | Chirixalus eiffingeri | | synonym | +311779 | Eiffinger's Asian tree frog | | common name | +311779 | Eiffinger's Asian treefrog | | common name | +311779 | Eiffinger's tree frog | | common name | +311779 | Kurixalus eiffingeri (Boettger, 1895) | | authority | +311779 | Kurixalus eiffingeri | | scientific name | +311779 | Rana eiffingeri Boettger, 1895 | | authority | +311779 | Rana eiffingeri | | synonym | +311779 | Rhacophorus eiffingeri | | synonym | +311820 | conical wart pygmy tree frog | | common name | +311820 | Ixalus schmardanus | | synonym | +311820 | Philautus schmarda (Kelaart, 1854) | | authority | +311820 | Philautus schmarda | | synonym | +311820 | Polypedates schmarda Kelaart, 1854 | | authority | +311820 | Polypedates schmarda | | synonym | +311820 | Pseudophilautus schmarda (Kelaart, 1854) | | authority | +311820 | Pseudophilautus schmarda | | scientific name | +311820 | Rhacophorus schmardanus | | synonym | +311820 | Sri Lanka bug-eyed frog | | genbank common name | +311820 | Theloderma schmarda | | synonym | +314003 | bluebanded goby | | genbank common name | +314003 | Catalina goby | | common name | +314003 | Gobius dalli Gilbert, 1890 | | authority | +314003 | Gobius dalli | | synonym | +314003 | Lythrypnus dalli (Gilbert, 1890) | | authority | +314003 | Lythrypnus dalli | | scientific name | +314240 | Idiacanthus | Idiacanthus | scientific name | +314248 | Lophiodes | | scientific name | +314334 | bird-voiced treefrog | | genbank common name | +314334 | Dryophytes avivoca | | scientific name | +314334 | Dryophytes avivoca (Viosca, 1928) | | authority | +314334 | Hyla avivoca | | synonym | +314334 | Hyla avivoca Viosca, 1928 | | authority | +314334 | whistling tree frog | whistling tree frog | common name | +315381 | Piculus leucolaemus (Natterer & Malherbe, 1845) | | authority | +315381 | Piculus leucolaemus | | scientific name | +315381 | Picus leucolaemus Natterer & Malherbe, 1845 | | authority | +315381 | Picus leucolaemus | | synonym | +315381 | Rufous-winged woodpecker | | genbank common name | +315381 | white-throated woodpecker | | common name | +315409 | Iniistius | | scientific name | +316131 | Schedophilus | | scientific name | +316160 | Labeo quathlambae Barnard, 1938 | | authority | +316160 | Labeo quathlambae | | synonym | +316160 | Maloti minnow | | common name | +316160 | Maluti minnow | | common name | +316160 | Maluti redfin | | genbank common name | +316160 | Oreodaimon quathlambae | | synonym | +316160 | Pseudobarbus quathlambae (Barnard, 1938) | | authority | +316160 | Pseudobarbus quathlambae | | scientific name | +316162 | Nematalosa | | scientific name | +316163 | Australian river gizzard shad | | genbank common name | +316163 | bony bream | | common name | +316163 | Chatoessus erebi Guenther, 1868 | | authority | +316163 | Chatoessus erebi Gunther, 1868 | | authority | +316163 | Chatoessus erebi | | synonym | +316163 | Nematalosa erebi (Guenther 1868) | | authority | +316163 | Nematalosa erebi | | scientific name | +317167 | Atticora nitens Cassin, 1857 | | authority | +317167 | Atticora nitens | | synonym | +317167 | Psalidoprocne nitens | | scientific name | +317167 | square-tailed sawwing | | common name | +317167 | square-tailed saw-wing | | genbank common name | +317171 | Fanti sawwing | | common name | +317171 | Fanti saw-wing | | genbank common name | +317171 | Hirundo obscura Hartlaub, 1855 | | authority | +317171 | Hirundo obscura | | synonym | +317171 | Psalidoprocne obscura (Hartlaub, 1855) | | authority | +317171 | Psalidoprocne obscura | | scientific name | +317174 | blue sawwing | | common name | +317174 | blue saw-wing | | genbank common name | +317174 | Hirundo pristoptera Ruppell, 1840 | | authority | +317174 | Hirundo pristoptera | | synonym | +317174 | Psalidoprocne pristoptera (Rueppell, 1840) | | authority | +317174 | Psalidoprocne pristoptera | | scientific name | +317299 | Acris | | scientific name | +317301 | Acris gryllus (LeConte, 1825) | | authority | +317301 | Acris gryllus | | scientific name | +317301 | Florida cricket frog | | genbank common name | +317301 | Rana gryllus LeConte, 1825 | | authority | +317301 | Rana gryllus | | synonym | +317301 | southern cricket frog | | common name | +317303 | Agalychnis litodryas (Duellman & Trueb, 1967) | | authority | +317303 | Agalychnis litodryas | | synonym | +317303 | Agalychnis spurrelli Boulenger, 1913 | | authority | +317303 | Agalychnis spurrelli | | scientific name | +317303 | gliding leaf frog | | genbank common name | +317303 | Phyllomedusa litodryas Duellman & Trueb, 1967 | | authority | +317303 | Phyllomedusa litodryas | | synonym | +317303 | Phyllomedusa spurrelli | | synonym | +317303 | pink-sided leaf frog | | common name | +317308 | Calyptahyla | | synonym | +317308 | Cuban treefrogs | | common name | +317308 | Osteopilus | | scientific name | +317308 | West Indian treefrogs | | genbank common name | +317312 | Cyclorana | | scientific name | +317312 | striped burrowing frogs | | common name | +317312 | water-holding frogs | | common name | +317313 | Chiroleptes brevipes Peters, 1871 | | authority | +317313 | Chiroleptes brevipes | | synonym | +317313 | Cyclorana brevipes (Peters, 1871) | | authority | +317313 | Cyclorana brevipes | | synonym | +317313 | Litoria brevipes | | synonym | +317313 | Ranoidea brevipes (Peters, 1871) | | authority | +317313 | Ranoidea brevipes | | scientific name | +317313 | savannah water-holding frog | | genbank common name | +317313 | short-footed frog | | common name | +317319 | common marsupial frog | | genbank common name | +317319 | Gastrotheca marsupiata (Dumril and Bibron, 1841) | | authority | +317319 | Gastrotheca marsupiata | | scientific name | +317319 | Hyla marsupiata Dumeril & Bibron, 1841 | | authority | +317319 | Hyla marsupiata | | synonym | +317319 | marsupian frog | | common name | +317327 | Boana boans (Linnaeus, 1758) | | authority | +317327 | Boana boans | | scientific name | +317327 | giant gladiator treefrog | | common name | +317327 | Hyla boans (Linnaeus, 1758) | | authority | +317327 | Hyla boans | | synonym | +317327 | Hypsiboas boans (Linnaeus, 1758) | | authority | +317327 | Hypsiboas boans | | synonym | +317327 | Rana boans Linnaeus, 1758 | | authority | +317327 | Rana boans | | synonym | +317327 | rusty treefrog | | genbank common name | +317335 | Hyla loquax Gaige and Stuart, 1934 | | authority | +317335 | Hyla loquax Gaige & Stuart, 1934 | | authority | +317335 | Hyla loquax | | synonym | +317335 | loquacious treefrog | | common name | +317335 | mahogany treefrog | | genbank common name | +317335 | Tlalocohyla loquax (Gaige & Stuart, 1934) | | authority | +317335 | Tlalocohyla loquax | | scientific name | +317336 | black-eyed treefrog | | genbank common name | +317336 | blackeye treefrog | | common name | +317336 | Exerodonta melanomma | | scientific name | +317336 | Exerodonta melanomma (Taylor, 1940) | | authority | +317336 | Hyla melanomma | | synonym | +317336 | Hyla melanomma Taylor, 1940 | | authority | +317344 | American Cinchona Plantation treefrog | | common name | +317344 | Cinchona Plantation treefrog | | genbank common name | +317344 | Hyla rivularis | | synonym | +317344 | Hyla rivularis Taylor, 1952 | | authority | +317344 | Isthmohyla rivularis | | scientific name | +317344 | Isthmohyla rivularis (Taylor, 1952) | | authority | +317360 | big-headed frogs | | common name | +317360 | Ischnocnema | | scientific name | +317363 | Dendrohyas peronii | | synonym | +317363 | Dendrohyas peronii Tschudi, 1838 | | authority | +317363 | emerald-spotted treefrog | | genbank common name | +317363 | Hyla peronii | | synonym | +317363 | Litoria peronii | | scientific name | +317363 | Litoria peronii (Tschudi, 1838) | | authority | +317363 | Litoria peroni | | synonym | +317363 | Peron's treefrog | | common name | +317382 | Agalychnis lemur (Boulenger, 1882) | | authority | +317382 | Agalychnis lemur | | scientific name | +317382 | Hylomantis lemur (Boulenger, 1882) | | authority | +317382 | Hylomantis lemur | | synonym | +317382 | lemur frog | | common name | +317382 | lemur leaf frog | | genbank common name | +317382 | Phyllomedusa lemur Boulenger, 1882 | | authority | +317382 | Phyllomedusa lemur | | synonym | +317388 | lowland burrowing treefrog | | genbank common name | +317388 | northern casque-headed frog | | common name | +317388 | Pternohyla fodiens Boulenger, 1882 | | authority | +317388 | Pternohyla fodiens | | synonym | +317388 | Smilisca fodiens | | scientific name | +317398 | blue-spotted Mexican treefrog | | common name | +317398 | blue-spotted treefrog | | genbank common name | +317398 | Hyla phaeota cyanosticta Smith, 1953 | | authority | +317398 | Hyla phaeota cyanosticta | | synonym | +317398 | Smilisca cyanosticta | | scientific name | +317398 | Smilisca cyanosticta (Smith, 1953) | | authority | +317402 | casquehead treefrogs | | common name | +317402 | shovel-headed treefrogs | | genbank common name | +317402 | Triprion | | scientific name | +317403 | Pharyngodon petasatus Cope, 1865 | | authority | +317403 | Pharyngodon petasatus | | synonym | +317403 | Triprion petasatus (Cope, 1865) | | authority | +317403 | Triprion petasatus | | scientific name | +317403 | Yucatan casqueheaded treefrog | | common name | +317403 | Yucatecan casquehead treefrog | | common name | +317403 | Yucatecan shovel-headed treefrog | | genbank common name | +317899 | Danilevskii's dace | | common name | +317899 | Danilewski's dace | | genbank common name | +317899 | Leuciscus danilewskii (Kessler, 1877) | | authority | +317899 | Leuciscus danilewskii | | scientific name | +317899 | Squalius danilewskii Kessler, 1877 | | authority | +317899 | Squalius danilewskii | | synonym | +317942 | Microbatrachella | | scientific name | +317943 | Cape Flats frog | | common name | +317943 | Microbatrachella capensis (Boulenger, 1910) | | authority | +317943 | Microbatrachella capensis | | scientific name | +317943 | micro frog | | genbank common name | +317943 | Phrynobatrachus capensis Boulenger, 1910 | | authority | +317943 | Phrynobatrachus capensis | | synonym | +318254 | Aparasphenodon brunoi Miranda-Ribeiro, 1920 | | authority | +318254 | Aparasphenodon brunoi | | synonym | +318254 | Bruno's bony-headed frog | | common name | +318254 | Bruno's casque-headed frog | | genbank common name | +318254 | Nyctimantis brunoi (Miranda-Ribeiro, 1920) | | authority | +318254 | Nyctimantis brunoi (Pombal, 1993) | | authority | +318254 | Nyctimantis brunoi | | scientific name | +318255 | Aplastodiscus | | scientific name | +318255 | canebrake treefrogs | | genbank common name | +318302 | Aplastodiscus albosignatus (A.Lutz & B.Lutz, 1938) | | authority | +318302 | Aplastodiscus albosignatus | | scientific name | +318302 | Aplastodiscus callipygius (Crux & Peixoto, 1985) | | authority | +318302 | Aplastodiscus callipygius | | synonym | +318302 | Bocaina treefrog | | common name | +318302 | Hyla albosignata Lutz and Lutz, 1938 | | authority | +318302 | Hyla albosignata Lutz & Lutz, 1938 | | authority | +318302 | Hyla albosignata | | synonym | +318302 | Hyla callipygia Cruz and Peixoto, 1985 | | authority | +318302 | Hyla callipygia | | synonym | +318302 | Lutz's treefrog | | genbank common name | +318367 | Australian cross-banded treefrog | | genbank common name | +318367 | Hyla meiriana | | synonym | +318367 | Hyla meiriana Tyler, 1969 | | authority | +318367 | Litoria meiriana | | scientific name | +318367 | Litoria meiriana (Tyler, 1969) | | authority | +318367 | rockhole frog | | common name | +318376 | Amazon milk frog | | common name | +318376 | blue milk frog | | common name | +318376 | Hyla resinifictrix Goeldi, 1907 | | authority | +318376 | Hyla resinifictrix | | synonym | +318376 | mission golden-eyed treefrog | | genbank common name | +318376 | Phrynohyas resinifictrix (Goeldi, 1907) | | authority | +318376 | Phrynohyas resinifictrix | | synonym | +318376 | Trachycephalus resinifictrix (Goeldi, 1907) | | authority | +318376 | Trachycephalus resinifictrix | | scientific name | +318396 | Hyla staufferi Cope, 1865 | | authority | +318396 | Hyla staufferi | | synonym | +318396 | Scinax staufferi (Cope, 1865) | | authority | +318396 | Scinax staufferi | | scientific name | +318396 | Stauffer's longnosed treefrog | | genbank common name | +318396 | Stauffer's treefrog | | common name | +318402 | brown-eyed treefrogs | | genbank common name | +318402 | Nyctimantis | | scientific name | +318405 | Phasmahyla | | scientific name | +318408 | four-eyed frogs | | genbank common name | +318408 | Pleurodema | | scientific name | +318408 | Somuncuria | | synonym | +318412 | Amazon treefrogs | | genbank common name | +318412 | Tepuihyla | | scientific name | +318413 | Ayarzaguena's treefrog | | common name | +318413 | Osteocephalus edelcae Ayarzaguena, Senaris & Gorzula, 1993 | | authority | +318413 | Osteocephalus edelcae | | synonym | +318413 | Tepuihyla edelcae (Ayarzaguena, Senaris, and Gorzula, 1993) | | authority | +318413 | Tepuihyla edelcae (Ayarzaguena, Senaris & Gorzula, 1993) | | authority | +318413 | Tepuihyla edelcae | | scientific name | +318413 | white-lipped bog-frog | | genbank common name | +318551 | Amolops liangshanensis | | synonym | +318551 | Amolops loloensis (Liu, 1950) | | authority | +318551 | Amolops loloensis | | scientific name | +318551 | Liangshan sucker frog | | common name | +318551 | Lolokou sucker frog | | common name | +318551 | rufous-spotted torrent frog | | genbank common name | +318551 | Staurois liangshanensis | | synonym | +318551 | Staurois loloensis Liu, 1950 | | authority | +318551 | Staurois loloensis | | synonym | +318742 | Mayaheros Rican & Pialek, 2016 | | authority | +318742 | Mayaheros | | scientific name | +318743 | Astronotus urophthalmus | | synonym | +318743 | Cichlasoma urophthalmum (Guenther, 1862) | | authority | +318743 | Cichlasoma urophthalmum | | synonym | +318743 | Cichlasoma urophthalmus (Gunther, 1862) | | authority | +318743 | Cichlasoma urophthalmus | | synonym | +318743 | Cichlasoma urophthtalmus | | synonym | +318743 | Cichlasoma uropthalmum | | synonym | +318743 | Cichlasoma uropthalmus | | synonym | +318743 | Herichthys urophthalmus | | synonym | +318743 | Heros urophthalmus Guenther, 1862 | | authority | +318743 | Heros urophthalmus Gunther, 1862 | | authority | +318743 | Heros urophthalmus | | synonym | +318743 | Mayaheros urophthalmus (Gunther, 1862) | | authority | +318743 | Mayaheros urophthalmus | | scientific name | +318743 | Mayan cichlid | | genbank common name | +318743 | Mexican mojarra | Mexican mojarra | common name | +318743 | Nandopsis urophthalma | | synonym | +318743 | Nandopsis urophthalmus (Gunther, 1862) | | authority | +318743 | Nandopsis urophthalmus | | synonym | +318743 | Parapetenia urophthalma | | synonym | +319323 | Barbodes semifasciolatus (Gunther, 1868) | | authority | +319323 | Barbodes semifasciolatus | | scientific name | +319323 | Capoeta semifasciolata | | synonym | +319323 | Chinese barb | | genbank common name | +319323 | gold barb | | common name | +319323 | Puntius semifasciolatus (Gunther, 1868) | | authority | +319323 | Puntius semifasciolatus | | synonym | +319443 | Melamphaes | | scientific name | +319444 | highsnout bigscale | | genbank common name | +319444 | highsnout melamphid | | common name | +319444 | Melamphaes lugubris Gilbert, 1891 | | authority | +319444 | Melamphaes lugubris | | scientific name | +319444 | Melamphaes sp. CBM:ZF:15231 | | includes | +319543 | bat eagle ray | | genbank common name | +319543 | bat ray | | common name | +319543 | Myliobatis californica Gill, 1865 | | authority | +319543 | Myliobatis californica | | scientific name | +319543 | Myliobatis californicus | | synonym | +319817 | Hova rice tenrec | | genbank common name | +319817 | molelike rice tenrec | | common name | +319817 | mole tenrec | | common name | +319817 | Oryzorictes hova Grandidier, 1870 | | authority | +319817 | Oryzorictes hova | | scientific name | +319817 | Oryzorictes talpoides | | synonym | +320016 | Xestia | | scientific name | +320266 | Catopsilia | | scientific name | +320267 | Catopsilia pomona (Fabricius, 1775) | | authority | +320267 | Catopsilia pomona | | scientific name | +320267 | common emigrant | | common name | +320267 | lemon emigrant | | common name | +320267 | lemon migrant | | genbank common name | +320267 | Papilio pomona Fabricius, 1775 | | authority | +320267 | Papilio pomona | | synonym | +320293 | Pyrisitia | | scientific name | +320294 | Eurema proterpia | | synonym | +320294 | little jaune | | common name | +320294 | Papilio proterpia Fabricius, 1775 | | authority | +320294 | Papilio proterpia | | synonym | +320294 | Pyrisitia proterpia | | scientific name | +320294 | tailed orange | | genbank common name | +320472 | Isthmura bellii sierraoccidentalis | | synonym | +320472 | Isthmura sierraoccidentalis (Lowe, Jones & Wright, 1968) | | authority | +320472 | Isthmura sierraoccidentalis | | scientific name | +320472 | pine-oak salamander | | common name | +320472 | Pseudoeurycea bellii sierraoccidentalis | | synonym | +320472 | Pseudoeurycea belli sierraoccidentalis Lowe, Jones & Wright, 1968 | | authority | +320472 | Pseudoeurycea belli sierraoccidentalis | | synonym | +320472 | Pseudoeurycea sierraoccidentalis | | synonym | +320472 | Sonoran false brook salamander | | genbank common name | +320587 | Prionotus | | scientific name | +320612 | Agonus accipenserinus | | synonym | +320612 | Agonus accipenserinus Tilesius, 1813 | | authority | +320612 | Agonus acipenserinus | | synonym | +320612 | Phalangistes accipenserinus | | synonym | +320612 | Phalangistes acipenserinus | | synonym | +320612 | Podothecus accipenserinus | | scientific name | +320612 | Podothecus accipenserinus (Tilesius, 1813) | | authority | +320612 | Podothecus acipenserinus | | synonym | +320612 | sturgeon-like sea-poacher | | common name | +320612 | sturgeon poacher | | genbank common name | +321043 | Hibiscus kokia | | synonym | +321043 | Hibiscus kokio Hillebr. ex Wawra, 1873 | | authority | +321043 | Hibiscus kokio | | scientific name | +321043 | koki`o ula | | genbank common name | +321043 | red rosemallow | | common name | +321806 | Bufo cycladen Lynch & Smith, 1966 | | authority | +321806 | Bufo cycladen | | synonym | +321806 | Incilius cycladen (Lynch & Smith, 1966) | | authority | +321806 | Incilius cycladen | | scientific name | +321806 | northern roughgland toad | | common name | +321806 | northern rough-gland toad | | genbank common name | +321806 | Ollotis cycladen | | synonym | +322711 | Habromys lepturus (Merriam, 1898) | | authority | +322711 | Habromys lepturus | | scientific name | +322711 | Peromyscus lepturus Merriam, 1898 | | authority | +322711 | Peromyscus lepturus | | synonym | +322711 | slender-tailed deer mouse | | genbank common name | +322711 | Zempoaltepec deermouse | | common name | +323737 | Trachylepis | | scientific name | +323754 | Carpathian newt | | genbank common name | +323754 | Lissotriton montandoni (Boulenger, 1880) | | authority | +323754 | Lissotriton montandoni | | scientific name | +323754 | Montandon's newt | | common name | +323754 | Triton montandoni Boulenger, 1880 | | authority | +323754 | Triton montandoni | | synonym | +323754 | Triturus montandoni (Boulenger, 1880) | | authority | +323754 | Triturus montandoni | | synonym | +323755 | Italian newt | Italian newt | common name | +323755 | Lissotriton italicus (Peracca, 1898) | | authority | +323755 | Lissotriton italicus | | scientific name | +323755 | Molge italica Peracca, 1898 | | authority | +323755 | Molge italica | | synonym | +323755 | South Italian newt | | genbank common name | +323755 | Triton italicus | | synonym | +323755 | Triturus italicus (Peracca, 1898) | | authority | +323755 | Triturus italicus | | synonym | +324348 | Batrachuperus gorganensis Clergue-Gazeau & Thorn, 1979 | | authority | +324348 | Batrachuperus gorganensis | | synonym | +324348 | Batrachuperus persicus Eiselt & Steiner, 1970 | | authority | +324348 | Batrachuperus persicus | | synonym | +324348 | Gorgan mountain salamander | | common name | +324348 | Iranodon persicus (Eiselt & Steiner, 1970) | | authority | +324348 | Iranodon persicus | | synonym | +324348 | Paradactylodon gorganensis (Clergue-Gazeau & Thorn, 1979) | | authority | +324348 | Paradactylodon gorganensis | | synonym | +324348 | Paradactylodon persicus (Eiselt & Steiner, 1970) | | authority | +324348 | Paradactylodon persicus | | scientific name | +324348 | Persian brook salamander | | common name | +324348 | Persian cave salamander | | common name | +324348 | Persian mountain salamander | | genbank common name | +324349 | mud salamander | | genbank common name | +324349 | Pseudotriton montanus Baird, 1850 | | authority | +324349 | Pseudotriton montanus | | scientific name | +325165 | Nomascus | | scientific name | +325167 | Bunopithecus | | synonym | +325167 | Hoolock Mootnick & Groves 2005 | | authority | +325167 | Hoolock | | scientific name | +325554 | Kanshirei village frog | | common name | +325554 | Pseudoamolops sauteri (Boulenger, 1909) | | authority | +325554 | Pseudoamolops sauteri | | synonym | +325554 | Rana sauteri Boulenger, 1909 | | authority | +325554 | Rana sauteri | | scientific name | +325554 | Sauter's brown frog | | common name | +325554 | Taiwan groove-toed frog | | genbank common name | +325556 | Amolops chunganensis (Pope, 1929) | | authority | +325556 | Amolops chunganensis | | scientific name | +325556 | Chungan sucker frog | | common name | +325556 | Chungan torrent frog | | genbank common name | +325556 | Hylorana chunganensis | | synonym | +325556 | Rana chunganensis Pope, 1929 | | authority | +325556 | Rana chunganensis | | synonym | +325556 | Staurois chunganensis | | synonym | +325557 | Amolops granulosus (Liu and Hu, 1961) | | authority | +325557 | Amolops granulosus | | scientific name | +325557 | granular torrent frog | | genbank common name | +325557 | Sichuan sucker frog | | common name | +325557 | Staurois granulosus Liu & Hu, 1961 | | authority | +325557 | Staurois granulosus | | synonym | +325558 | Amolops lifanensis (Liu, 1945) | | authority | +325558 | Amolops lifanensis | | scientific name | +325558 | Lifan sucker frog | | common name | +325558 | Lifan torrent frog | | genbank common name | +325558 | Staurois lifanensis Liu, 1945 | | authority | +325558 | Staurois lifanensis | | synonym | +326431 | Kryptolebias | | scientific name | +326940 | bamboo leaf odorous frog | | genbank common name | +326940 | Huia versabilis | | synonym | +326940 | Kwangsi frog | | common name | +326940 | Odorrana versabilis (Liu & Hu, 1962) | | authority | +326940 | Odorrana versabilis | | scientific name | +326940 | Rana versabilis Liu & Hu, 1962 | | authority | +326940 | Rana versabilis | | synonym | +326968 | Chinese jujube | | common name | +326968 | common jujube | | genbank common name | +326968 | Rhamnus zizyphus L., 1753 | | authority | +326968 | Rhamnus zizyphus | | synonym | +326968 | zao | | common name | +326968 | Ziziphus jujuba Mill., 1768 | | authority | +326968 | Ziziphus jujuba | | scientific name | +326968 | Zizyphus jujuba | | equivalent name | +326975 | grainy frogs | | genbank common name | +326975 | Kalophrynus | | scientific name | +327781 | Caribrhegma gregoryi Breder, 1927 | | authority | +327781 | Caribrhegma gregoryi | | synonym | +327781 | foureye basslet | | genbank common name | +327781 | Pseudogramma gregoryi (Breder, 1927) | | authority | +327781 | Pseudogramma gregoryi | | scientific name | +327781 | reef bass | | common name | +327803 | comb grouper | comb grouper | genbank common name | +327803 | Mycteroperca acutirostris | | scientific name | +327803 | Mycteroperca acutirostris (Valenciennes, 1828) | | authority | +327803 | Serranus acutirostris | | synonym | +327803 | Serranus acutirostris Valenciennes, 1828 | | authority | +327803 | western comb grouper | | common name | +327806 | comb grouper | comb grouper | common name | +327806 | island grouper | | genbank common name | +327806 | Mycteroperca fusca (Lowe, 1838) | | authority | +327806 | Mycteroperca fusca | | scientific name | +327806 | Serranus fuscus Lowe, 1838 | | authority | +327806 | Serranus fuscus | | synonym | +327815 | Acanthistius | | scientific name | +327941 | crossband rockfish | | common name | +327941 | grey mannock | | common name | +327941 | harlequin rockfish | harlequin rockfish | common name | +327941 | Mycteroperca interstitialis (Poey, 1860) | | authority | +327941 | Mycteroperca interstitialis | | scientific name | +327941 | princess rockfish | | common name | +327941 | salmon rockfish | | common name | +327941 | Serranus interstitialis Poey, 1860 | | authority | +327941 | Serranus interstitialis | | synonym | +327941 | yellowmouth grouper | | genbank common name | +327944 | black cod | black cod | common name | +327944 | black rockcod | black rockcod | common name | +327944 | Epinephelus daemelii (Gunther, 1876) | | authority | +327944 | Epinephelus daemelii | | scientific name | +327944 | Epinephelus daemeli | | synonym | +327944 | saddletail grouper | | genbank common name | +327944 | Serranus daemelii Gunther, 1876 | | authority | +327944 | Serranus daemelii | | synonym | +327958 | Afrana angolensis (Bocage, 1866) | | authority | +327958 | Afrana angolensis | | synonym | +327958 | Amietia angolensis (Bocage, 1866) | | authority | +327958 | Amietia angolensis | | scientific name | +327958 | Angola frog | | common name | +327958 | Angola river frog | | genbank common name | +327958 | dusky-throated frog | | common name | +327958 | Rana angolensis Bocage, 1866 | | authority | +327958 | Rana angolensis | | synonym | +327960 | Amolops hainanensis (Boulenger, 1900) | | authority | +327960 | Amolops hainanensis | | scientific name | +327960 | Hainan sucker frog | | genbank common name | +327960 | Hainan torrent frog | | common name | +327960 | Rana hainanensis | Rana hainanensis | synonym | +327960 | Staurois hainanensis Boulenger, 1900 | | authority | +327960 | Staurois hainanensis | | synonym | +327965 | Natal puddle frog | | genbank common name | +327965 | Phrynobatrachus natalensis | | scientific name | +327965 | Phrynobatrachus natalensis (Smith, 1849) | | authority | +327965 | snoring puddle frog | | common name | +327965 | Stenorhynchus natalensis Smith, 1849 | | authority | +327965 | Stenorhynchus natalensis | | synonym | +329116 | Barbus tambroides | | synonym | +329116 | greater brook carp | | common name | +329116 | Labeobarbus tambroides Bleeker, 1854 | | authority | +329116 | Labeobarbus tambroides | | synonym | +329116 | Malaysian mahseer | | common name | +329116 | Thai mahseer | | genbank common name | +329116 | Tor tambroides (Bleeker, 1854) | | authority | +329116 | Tor tambroides | | scientific name | +329257 | glandular frog | | genbank common name | +329257 | Hylarana glandulosa | | synonym | +329257 | Pulchrana glandulosa | | scientific name | +329257 | Rana glandulosa Boulenger, 1882 | | authority | +329257 | Rana glandulosa | | synonym | +329257 | rough-sided frog | | common name | +329257 | Sarawak frog | | common name | +329258 | Baram River frog | | common name | +329258 | Hylarana baramica | | synonym | +329258 | masked frog | masked frog | common name | +329258 | masked rough-sided frog | | genbank common name | +329258 | Pulchrana baramica | | scientific name | +329258 | Rana baramica Boettger, 1900 | | authority | +329258 | Rana baramica | | synonym | +330459 | Hyperomyzus | | scientific name | +330460 | Hyperomyzus lactucae (Linnaeus, 1758) | | authority | +330460 | Hyperomyzus lactucae | | scientific name | +330460 | Nasonovia lactucae | | synonym | +330460 | sow thistle aphid | | common name | +330460 | sowthistle aphid | | genbank common name | +332575 | Eurycea bislineata cirrigera | | synonym | +332575 | Eurycea cirrigera (Green, 1831) | | authority | +332575 | Eurycea cirrigera | | scientific name | +332575 | Salamandra cirrigera Green, 1831 | | authority | +332575 | Salamandra cirrigera | | synonym | +332575 | southeastern two-lined salamander | | common name | +332575 | southern two-lined salamander | | genbank common name | +332576 | Eurycea guttolineata Holbrook, 1838 | | authority | +332576 | Eurycea guttolineata | | scientific name | +332576 | Eurycea longicauda guttolineata | | synonym | +332576 | Holbrook's triton | | common name | +332576 | southern long-tailed salamander | | common name | +332576 | three-lined salamander | | genbank common name | +332578 | narrow-striped red-backed salamander | | common name | +332578 | Ozark red-backed salamander | | common name | +332578 | Ozark salamander | | genbank common name | +332578 | Ozark zigzag salamander | | common name | +332578 | Plethodon angusticlavius Grobman, 1944 | | authority | +332578 | Plethodon angusticlavius | | scientific name | +332578 | Plethodon cinereus angusticlavius | | synonym | +332578 | Plethodon dorsalis angusticlavius | | synonym | +333424 | Carapus boraborensis (Kaup, 1856) | | authority | +333424 | Carapus boraborensis | | scientific name | +333424 | Encheliophis boraborensis | | synonym | +333424 | Fierasfer boraborensis Kaup, 1856 | | authority | +333424 | Fierasfer boraborensis | | synonym | +333424 | pinhead pearlfish | | genbank common name | +333424 | small-finned messmate-fish | | common name | +333676 | Amnirana albolabris (Hallowell, 1856) | | authority | +333676 | Amnirana albolabris | | scientific name | +333676 | Amnirana albolbaris | | synonym | +333676 | Amnirana longipes | | synonym | +333676 | forest white-lipped frog | | common name | +333676 | Hydrophylax albolabris | | synonym | +333676 | Hyla albolabris Hallowell, 1856 | | authority | +333676 | Hyla albolabris | | synonym | +333676 | Hylarana albolabris (Hallowell, 1856) | | authority | +333676 | Hylarana albolabris | | synonym | +333676 | Limnodytes albolabris | | synonym | +333676 | Rana albolabris Hallowell, 1856 | | authority | +333676 | Rana albolabris | | synonym | +333676 | white-lipped frog | | genbank common name | +333684 | Arthroleptides martiensseni Nieden, 1911 | | authority | +333684 | Arthroleptides martiensseni | | scientific name | +333684 | Martienssen's torrent frog | | common name | +333684 | Petropedetes martiensseni (Nieden, 1911) | | authority | +333684 | Petropedetes martiensseni | | synonym | +333684 | Tanzania rocky river frog | | common name | +333684 | Usambara montane torrent frog | | common name | +333684 | Usambara torrent frog | | genbank common name | +333686 | East African puddle frog | | common name | +333686 | eastern puddle frog | | common name | +333686 | Phrynobatrachus acridoides (Cope, 1867) | | authority | +333686 | Phrynobatrachus acridoides | | scientific name | +333686 | puddle frog | | common name | +333686 | Staurois acridoides Cope, 1867 | | authority | +333686 | Staurois acridoides | | synonym | +333686 | Zanzibar puddle frog | | genbank common name | +333686 | Zanzibar river frog | | common name | +333694 | clicking stream frog | | common name | +333694 | Gray's grass frog | | common name | +333694 | Gray's spotted frog | | common name | +333694 | Gray's stream frog | | genbank common name | +333694 | Rana grayii Smith, 1849 | | authority | +333694 | Rana grayii | | synonym | +333694 | Strongylopus grayii | | scientific name | +333694 | Strongylopus grayii (Smith, 1849) | | authority | +334384 | Diapterus | | scientific name | +334885 | Nelson's boarfish | | common name | +334885 | pelagic armorhead | | genbank common name | +334885 | pelagic armourhead | | common name | +334885 | Pentaceros richardsoni Smith, 1844 | | authority | +334885 | Pentaceros richardsoni | | synonym | +334885 | Pseudopentaceros richardsoni | | scientific name | +334885 | Pseudopentaceros richardsoni (Smith, 1844) | | authority | +334885 | Richardson.s boarfish | | common name | +334885 | southern boarfish | | common name | +334892 | Atypichthys strigatus | | scientific name | +334892 | Atypus strigatus Gunther, 1860 | | authority | +334892 | Atypus strigatus | | synonym | +334892 | Australian mado | | genbank common name | +334892 | maso sweep | | common name | +334915 | lyretail trout | | common name | +334915 | Variola albimarginata Baissac, 1953 | | authority | +334915 | Variola albimarginata | | scientific name | +334915 | Variola albomarginata | | synonym | +334915 | white-edge coronation trout | | common name | +334915 | white-edged lyretail | | genbank common name | +334930 | Cymbacephalus | | scientific name | +334938 | Pterygotrigla | | scientific name | +334942 | bluefin gurnard | | genbank common name | +334942 | Chelidonichthys kumu (Cuvier, 1829) | | authority | +334942 | Chelidonichthys kumu | | scientific name | +334942 | red gurnard | red gurnard | common name | +334942 | Trigla kumu Cuvier, 1829 | | authority | +334942 | Trigla kumu | | synonym | +334986 | Chimaera ogilbyi | | synonym | +334986 | Hydrolagus ogilbyi | | scientific name | +334986 | Hydrolagus ogilbyi (Waite, 1898) | | authority | +334986 | Ogilby's ghostshark | | genbank common name | +334986 | Ogilby's spookfish | | common name | +334986 | Waite's ghost shark | | common name | +334999 | Himantura jenkinsii (Annandale, 1909) | | authority | +334999 | Himantura jenkinsii | | synonym | +334999 | Jenkins' whipray | | genbank common name | +334999 | Pateobatis jenkinsii | | scientific name | +334999 | pointed-nose stingray | | common name | +334999 | roughback stingray | | common name | +334999 | Trygon jenkinsii Annandale, 1909 | | authority | +334999 | Trygon jenkinsii | | synonym | +335394 | Actinemys | | scientific name | +335395 | Actinemys marmorata (Baird & Girard, 1852) | | authority | +335395 | Actinemys marmorata | | scientific name | +335395 | Clemmys marmorata | | synonym | +335395 | Emys marmorata Baird & Girard, 1852 | | authority | +335395 | Emys marmorata | | synonym | +335395 | Northwestern pond turtle | | genbank common name | +335395 | Western pond turtle | | common name | +335999 | five-spotted hawkmoth | | common name | +335999 | Manduca cinquemaculata | | synonym | +335999 | Manduca quinquemaculata (Haworth, 1803) | | authority | +335999 | Manduca quinquemaculata | | scientific name | +335999 | Sphinx quinquemaculata Haworth, 1803 | | authority | +335999 | Sphinx quinquemaculata | | synonym | +335999 | tomato hornworm | tomato hornworm | genbank common name | +336072 | cairns treefrog | | common name | +336072 | Hyla dorsalis microbelos Cogger, 1966 | | authority | +336072 | Hyla dorsalis microbelos | | synonym | +336072 | javelin frog | | common name | +336072 | Litoria microbelos (Cogger, 1966) | | authority | +336072 | Litoria microbelos | | scientific name | +336072 | pygmy rocketfrog | | genbank common name | +336074 | Hyla rothii De Vis, 1884 | | authority | +336074 | Hyla rothii | | synonym | +336074 | Litoria rothii (De Vis, 1884) | | authority | +336074 | Litoria rothii | | scientific name | +336074 | Litoria rothi | | synonym | +336074 | red-eyed treefrog | red-eyed treefrog | common name | +336074 | Roth's tree frog | | common name | +336074 | rust-eyed treefrog | | genbank common name | +336075 | green reed frog | green reed frog | common name | +336075 | Hyla bicolor Oken, 1816 | | authority | +336075 | Hyla bicolor | | synonym | +336075 | Litoria bicolor (Gray, 1842) | | authority | +336075 | Litoria bicolor | | scientific name | +336075 | northern dwarf treefrog | | genbank common name | +336075 | northern sedgefrog | | common name | +336077 | Australian rocketfrog | | genbank common name | +336077 | Hyla nasuta | | synonym | +336077 | Litoria nasuta (Gray, 1842) | | authority | +336077 | Litoria nasuta | | scientific name | +336077 | Pelodytes nasutus Gray, 1842 | | authority | +336077 | Pelodytes nasutus | | synonym | +336077 | steam-lined rocket frog | | common name | +336077 | striped rocketfrog | | common name | +336078 | bumpy rocketfrog | | genbank common name | +336078 | Chiroleptes inermis Peters, 1867 | | authority | +336078 | Chiroleptes inermis | | synonym | +336078 | fleck-lipped treefrog | | common name | +336078 | Litoria inermis (Peters, 1867) | | authority | +336078 | Litoria inermis | | scientific name | +336080 | Copland's rock frog | | genbank common name | +336080 | Hyla coplandi | | synonym | +336080 | Hyla coplandi Tyler, 1968 | | authority | +336080 | Litoria coplandi | | scientific name | +336080 | Litoria coplandi (Tyler, 1968) | | authority | +336080 | sandstone frog | | common name | +336081 | giant rocketfrog | | genbank common name | +336081 | Hyla latopalmata watjulumensis Copland, 1957 | | authority | +336081 | Hyla latopalmata watjulumensis | | synonym | +336081 | Hyla watjulumensis | | synonym | +336081 | Hyla wotjulumensis | | synonym | +336081 | Litoria watjulumensis (Copland, 1957) | | authority | +336081 | Litoria watjulumensis | | scientific name | +336081 | Litoria wotjulumensis | | synonym | +336081 | Watjulum frog | | common name | +336081 | Watjulum Mission treefrog | | common name | +336082 | Cyclorana longipes | | scientific name | +336082 | Cyclorana longipes Tyler and Martin, 1977 | | authority | +336082 | Kimberley water-holding frog | | common name | +336082 | Litoria longipes | | synonym | +336082 | long-footed frog | | genbank common name | +336083 | Australian striped treefrog | | common name | +336083 | Chiroleptes alboguttatus Gunther, 1867, | | authority | +336083 | Chiroleptes alboguttatus | | synonym | +336083 | Cyclorana alboguttata (Gunther, 1867) | | authority | +336083 | Cyclorana alboguttata | | synonym | +336083 | green-striped burrowing frog | | genbank common name | +336083 | greenstripe frog | | common name | +336083 | Litoria alboguttata | | synonym | +336083 | Ranoidea alboguttata (Gunther, 1867) | | authority | +336083 | Ranoidea alboguttata | | scientific name | +336083 | striped burrowing frog | | common name | +337631 | Brachyplatystoma | | scientific name | +337742 | Belodontichthys | | scientific name | +337775 | Cryptopterus macrocephalus | | synonym | +337775 | East Indies glass catfish | | common name | +337775 | Kryptopterichthys macrocephalus Bleeker, 1858 | | authority | +337775 | Kryptopterichthys macrocephalus | | synonym | +337775 | Kryptopterus macrocephalus (Bleeker, 1858) | | authority | +337775 | Kryptopterus macrocephalus | | scientific name | +337775 | poor man's glass catfish | | common name | +337775 | striped glass catfish | | genbank common name | +337883 | eastern fiddler | | genbank common name | +337883 | eastern fiddler ray | | common name | +337883 | Trygonorrhina fasciata Muller & Henle, 1841 | | authority | +337883 | Trygonorrhina fasciata | | scientific name | +337883 | Trygonorrhina sp. A PRL-1994 | | includes | +337883 | Trygonorrhina sp. A RDW-2008 | | includes | +338093 | alligator pleco | | common name | +338093 | chocolate pleco | | common name | +338093 | Glyptoperichthys scrophus | | synonym | +338093 | Liposarcus scrophus Cope, 1874 | | authority | +338093 | Liposarcus scrophus | | synonym | +338093 | Liposcarus scrophus Cope, 1874 | | authority | +338093 | Liposcarus scrophus | | synonym | +338093 | Pterygoplichthys scrophus (Cope, 1874) | | authority | +338093 | Pterygoplichthys scrophus | | scientific name | +338093 | rhino pleco | | genbank common name | +339868 | Lissotriton | | scientific name | +340506 | Lepidosaphes | | scientific name | +341695 | Oreocryptophis | | scientific name | +341696 | black-banded trinket snake | | genbank common name | +341696 | Coluber porphyraceus Cantor, 1839 | | authority | +341696 | Coluber porphyraceus Cantor | | authority | +341696 | Coluber porphyraceus | | synonym | +341696 | Elaphe porphyracea | | synonym | +341696 | Elaphe poryphyracea Cantor, 1839 | | authority | +341696 | Elaphe poryphyracea | | synonym | +341696 | Oreocryptophis porphyraceus | | scientific name | +341696 | Oreophis porphyraceus | | synonym | +341696 | red bamboo snake | | common name | +342440 | Heteropriacanthus | | scientific name | +342441 | Anthias boops Forster, 1801 | | authority | +342441 | Anthias boops | | synonym | +342441 | blotched bigeye | | common name | +342441 | Cookeolus boops (Forster, 1801) | | authority | +342441 | Cookeolus boops | | includes | +342441 | glass bigeye | | common name | +342441 | glasseye | | genbank common name | +342441 | glasseye snapper | | common name | +342441 | Heteropriacanthus cruentatus (Lacepede, 1801) | | authority | +342441 | Heteropriacanthus cruentatus | | scientific name | +342441 | Labrus cruentatus Lacepede, 1801 | | authority | +342441 | Labrus cruentatus | | synonym | +342441 | Priacanthus boops (Forster, 1801) | | authority | +342441 | Priacanthus boops | | synonym | +342441 | Priacanthus cruentatus | | synonym | +342442 | Mulloidichthys | | scientific name | +342569 | Calotriton | | scientific name | +342569 | European brook newts | | genbank common name | +342815 | common spiny frog | | common name | +342815 | Hong Kong spiny frog | | genbank common name | +342815 | lesser spiny frog | | common name | +342815 | little spiny frog | | common name | +342815 | Paa exilispinosa (Liu & Hu, 1975) | | authority | +342815 | Paa exilispinosa | | synonym | +342815 | Quasipaa exilispinosa (Liu & Hu, 1975) | | authority | +342815 | Quasipaa exilispinosa | | scientific name | +342815 | Rana exilispinosa Liu & Hu, 1975 | | authority | +342815 | Rana exilispinosa | | synonym | +342817 | Chaparana liebigii | | synonym | +342817 | Nanorana liebigii | | scientific name | +342817 | Paa liebigii (Gunther, 1860) | | authority | +342817 | Paa liebigii | | synonym | +342817 | Rana liebigii Gunther, 1860 | | authority | +342817 | Rana liebigii | | synonym | +342817 | Sikkim spiny frog | | common name | +342817 | spiny-armed frog | | genbank common name | +342819 | Chaparana maculosa | | synonym | +342819 | Nanorana maculosa | | scientific name | +342819 | Paa maculosa (Liu, Hu & Yang, 1960) | | authority | +342819 | Paa maculosa | | synonym | +342819 | piebald spiny frog | | genbank common name | +342819 | Rana maculosa Liu, Hu & Yang, 1960 | | authority | +342819 | Rana maculosa | | synonym | +342819 | spotted paa frog | | common name | +343929 | Copsychus saularis (Linnaeus, 1758) | | authority | +343929 | Copsychus saularis | | scientific name | +343929 | Gracula saularis Linnaeus, 1758 | | authority | +343929 | Gracula saularis | | synonym | +343929 | Oriental Magpie Robin | | common name | +343929 | Oriental magpie-robin | | genbank common name | +345721 | Great Basin white | | common name | +345721 | Pieris beckerii Edwards, 1871 | | authority | +345721 | Pieris beckerii | | synonym | +345721 | Pontia beckerii (Edwards, 1871) | | authority | +345721 | Pontia beckerii | | scientific name | +345721 | sagebrush white | | genbank common name | +346248 | Dosidicus | | scientific name | +346249 | Dosidicus gigas (Orbigny, 1835) | | authority | +346249 | Dosidicus gigas | | scientific name | +346249 | jumbo flying squid | | genbank common name | +346249 | jumbo squid | | common name | +346249 | Ommastrephes gigas d'Orbigny, 1835 | | authority | +346249 | Ommastrephes gigas | | synonym | +346448 | Bufo guttatus Schneider, 1799 | | authority | +346448 | Bufo guttatus | | synonym | +346448 | Rhaebo guttatus (Schneider, 1799) | | authority | +346448 | Rhaebo guttatus | | scientific name | +346448 | smooth-sided toad | | genbank common name | +346448 | spotted toad | | common name | +346451 | Bufo juxtasper Inger, 1964 | | authority | +346451 | Bufo juxtasper | | synonym | +346451 | giant river toad | | common name | +346451 | Phrynoidis juxtaspera | | synonym | +346451 | Phrynoidis juxtasper (Inger, 1964) | | authority | +346451 | Phrynoidis juxtasper | | scientific name | +346451 | Sungei Tawan toad | | genbank common name | +349641 | Plectorhinchus | | scientific name | +351164 | common peacock butterfly | | common name | +351164 | common peacock | | genbank common name | +351164 | Papilio bianor polyctor | | synonym | +351164 | Papilio polyctor Boisduval, 1836 | | authority | +351164 | Papilio polyctor | | scientific name | +351416 | Athyma | | scientific name | +351416 | Lamasia | | synonym | +351416 | Pandita | | synonym | +351416 | Sumalia | | synonym | +351416 | Tarattia | | synonym | +352245 | Cleisthenes pinetorum Jordan & Starks, 1904 | | authority | +352245 | Cleisthenes pinetorum | | scientific name | +352245 | Hippoglossoides pinetorum (Jordan and Starks, 1904) | | authority | +352245 | Hippoglossoides pinetorum | | synonym | +352245 | sohachi flounder | sohachi flounder | common name | +352245 | sohachi | sohachi | genbank common name | +354129 | Ambystoma rivulare | | scientific name | +354129 | Ambystoma rivulare (Taylor, 1940) | | authority | +354129 | Michoacan stream salamander | Michoacan stream salamander | genbank common name | +354129 | Michoacan stream siredon | | common name | +354129 | Rhyacosiredon rivularis | | synonym | +354129 | Rhyacosiredon rivularis Taylor, 1940 | | authority | +354432 | Polytus | | scientific name | +354433 | minute banana weevil | | common name | +354433 | Polytus mellerborgi Heller, 1927 | | authority | +354433 | Polytus mellerborgii | | synonym | +354433 | Polytus mellerborgi | | scientific name | +354433 | small banana weevil | | genbank common name | +354943 | Gesta Evans, 1953 | | authority | +354943 | Gesta | | scientific name | +354944 | blue-banded skipper | | genbank common name | +354944 | false duskywing | | common name | +354944 | Gesta gesta (Herrich-Schaffer, 1863) | | authority | +354944 | Gesta gesta | | scientific name | +354944 | Thanaos gesta Herrich-Schaffer, 1863 | | authority | +354944 | Thanaos gesta | | synonym | +355513 | Leuresthes | | scientific name | +355514 | Atherinopsis tenuis Ayres, 1860 | | authority | +355514 | Atherinopsis tenuis | | synonym | +355514 | California grunion | | genbank common name | +355514 | grunion | | common name | +355514 | Leuresthes tenuis (Ayres, 1860) | | authority | +355514 | Leuresthes tenuis | | scientific name | +355677 | Astrotia stokesii | | synonym | +355677 | Astrotia stokesi | | synonym | +355677 | Disteira stokesi | | synonym | +355677 | Hydrophis stokesii | | scientific name | +355677 | Hydrus stokesii Gray, 1846 | | authority | +355677 | Hydrus stokesii | | synonym | +355677 | Stokes's sea snake | | common name | +355677 | Stokes's seasnake | | genbank common name | +355912 | Gnorimoschema | | scientific name | +355915 | Gelechia gallaesolidaginis Riley, 1869 | | authority | +355915 | Gelechia gallaesolidaginis | | synonym | +355915 | Gnorimoschema gallaesolidaginis (Riley, 1869) | | authority | +355915 | Gnorimoschema gallaesolidaginis | | scientific name | +355915 | goldenrod stem gall | | common name | +355915 | goldenrod stem gall moth | | genbank common name | +356210 | Centrolenella fleischmanni | | synonym | +356210 | Cochranella fleischmanni | | synonym | +356210 | Fleischmann's glass frog | | common name | +356210 | Hyalinobatrachium fleischmanni (Boettger, 1893) | | authority | +356210 | Hyalinobatrachium fleischmanni | | scientific name | +356210 | Hylella fleischmanni Boettger, 1893 | | authority | +356210 | Hylella fleischmanni | | synonym | +356210 | northern glassfrog | | genbank common name | +356215 | black-soled frog | | common name | +356215 | Fletchers cannibal frog | | common name | +356215 | Fletchers frog | | genbank common name | +356215 | Lechriodus fletcheri (Boulenger, 1890) | | authority | +356215 | Lechriodus fletcheri | | scientific name | +356215 | Phanerotis fletcheri Boulenger, 1890 | | authority | +356215 | Phanerotis fletcheri | | synonym | +356218 | Bocage's burrowing frog | | genbank common name | +356218 | Bocage's burrowing leaf-frog | | common name | +356218 | Bocage's burrowing tree frog | | common name | +356218 | Bocage's frog | | common name | +356218 | Cystignathus bocagii Guenther, 1865 | | authority | +356218 | Cystignathus bocagii Gunther, 1865 | | authority | +356218 | Cystignathus bocagii | | synonym | +356218 | horseshoe forest treefrog | | common name | +356218 | Hylambates bocagei | | synonym | +356218 | Hylambates bocagii | | synonym | +356218 | Leptopelis bocagei | | synonym | +356218 | Leptopelis bocagii (Guenter, 1865) | | authority | +356218 | Leptopelis bocagii | | scientific name | +356228 | Alcalus baluensis (Boulenger, 1896) | | authority | +356228 | Alcalus baluensis | | scientific name | +356228 | Balu eastern frog | | common name | +356228 | Balu oriental frog | | genbank common name | +356228 | Cornufer baluensis Boulenger, 1896 | | authority | +356228 | Cornufer baluensis | | synonym | +356228 | Ingerana baluensis (Boulenger, 1896) | | authority | +356228 | Ingerana baluensis | | synonym | +356243 | Cooper's grassland frog | | common name | +356243 | dark-bellied grass frog | | genbank common name | +356243 | Ptychadena cooperi (Parker, 1930) | | authority | +356243 | Ptychadena cooperi | | scientific name | +356243 | Rana cooperi Parker, 1930 | | authority | +356243 | Rana cooperi | | synonym | +356264 | Calluella | | scientific name | +356265 | blotched burrowing frog | | common name | +356265 | Burmese squat frog | | common name | +356265 | Calluella guttata | | synonym | +356265 | Calluella guttulata (Blyth, 1856) | | authority | +356265 | Calluella guttulata | | scientific name | +356265 | Megalophrys guttulata Blyth, 1856 | | authority | +356265 | Megalophrys guttulata | | synonym | +356265 | orange burrowing frog | | genbank common name | +356265 | striped spadefoot frog | | common name | +356300 | Heleioporus | | scientific name | +356301 | giant burrowing frog | | genbank common name | +356301 | Heleioporus australiacus | | scientific name | +356301 | Heleioporus australiacus (Shaw and Nodder, 1795) | | authority | +356301 | Rana australiaca Shaw & Nodder, 1795 | | authority | +356301 | Rana australiaca | | synonym | +356301 | spiny-footed frog | | common name | +356314 | Australian wood frog | | genbank common name | +356314 | Hylarana daemeli | | synonym | +356314 | Hylorana daemeli Steindachner, 1868 | | authority | +356314 | Hylorana daemeli | | synonym | +356314 | Papurana daemeli | | scientific name | +356314 | Papurana daemeli (Steindachner, 1868) | | authority | +356314 | Rana daemeli Boulenger, 1914 | | authority | +356314 | Rana daemeli | | synonym | +356314 | Sylvirana daemeli (Steindachner, 1868) | | authority | +356314 | Sylvirana daemeli | | synonym | +356314 | wood frog | wood frog | common name | +356329 | Nesomantis | | synonym | +356329 | Sooglossus | | scientific name | +357280 | Acantopsis | | scientific name | +357281 | Acantopsis choirorhynchos (Bleeker, 1854) | | authority | +357281 | Acantopsis choirorhynchos | | scientific name | +357281 | Cobitis choirorhynchos Bleeker, 1854 | | authority | +357281 | Cobitis choirorhynchos | | synonym | +357281 | horseface loach | | common name | +357281 | longnose loach | | genbank common name | +357811 | Apogon imberbis (Linnaeus, 1758) | | authority | +357811 | Apogon imberbis | | scientific name | +357811 | cardinal fish | | common name | +357811 | cardinalfish | | genbank common name | +357811 | king of the mullets | | common name | +357811 | Mullus imberbis Linnaeus, 1758 | | authority | +357811 | Mullus imberbis | | synonym | +359533 | Annandale's high altitude frog | | common name | +359533 | Kurixalus naso (Annandale, 1912) | | authority | +359533 | Kurixalus naso | | scientific name | +359533 | long-snouted treefrog | | genbank common name | +359533 | Polypedates naso (Annandale, 1912) | | authority | +359533 | Polypedates naso | | synonym | +359533 | Rhacophorus naso Annandale, 1912 | | authority | +359533 | Rhacophorus naso | | synonym | +359533 | uphill tree frog | | common name | +359535 | brown-eyed tree frog | | common name | +359535 | Kurixalus appendiculatus (Guenther, 1858) | | authority | +359535 | Kurixalus appendiculatus | | scientific name | +359535 | Philippine flying frog | | genbank common name | +359535 | Polypedates appendiculatus Guenther, 1858 | | authority | +359535 | Polypedates appendiculatus Gunther, 1858 | | authority | +359535 | Polypedates appendiculatus | | synonym | +359535 | Rhacophorus appendiculatus (Guenther, 1858) | | authority | +359535 | Rhacophorus appendiculatus | | synonym | +359535 | South-east Asian tree frog | | common name | +359538 | green-limbed tree frog | | genbank common name | +359538 | Hainan small treefrog | | common name | +359538 | Kurixalus bisacculus | | scientific name | +359538 | Kurixalus bisacculus (Taylor, 1962) | | authority | +359538 | Loei flying frog | | common name | +359538 | Phu Kradung tree frog | | common name | +359538 | Rhacophorus bisacculus | | synonym | +359538 | Rhacophorus bisacculus Taylor, 1962 | | authority | +359538 | Taylor's tree frog | | common name | +359668 | gland-shanked pond frog | | genbank common name | +359668 | Hylarana shuchinae | | synonym | +359668 | Pelophylax shuchinae | | synonym | +359668 | Rana shuchinae Liu, 1950 | | authority | +359668 | Rana shuchinae | | scientific name | +359668 | Sichuan frog | | common name | +360504 | Hapalogenys Richardson, 1844 | | authority | +360504 | Hapalogenys | | scientific name | +360505 | broadbanded velvetchin | | genbank common name | +360505 | Hapalogenys analis Richardson, 1845 | | authority | +360505 | Hapalogenys analis | | scientific name | +360505 | Hapalogenys mucronatus (Eydoux & Souleyet, 1850) | | authority | +360505 | Hapalogenys mucronatus | | synonym | +360505 | setodai | | common name | +363190 | Coilia grayii Richardson, 1845 | | authority | +363190 | Coilia grayii | | scientific name | +363190 | Coilia grayi | | synonym | +363190 | Gray's grenadier anchovy | | genbank common name | +363190 | long-tailed anchovy | | common name | +363190 | pointed-tailed anchovy | | common name | +364768 | Girard's dwarf frog | | genbank common name | +364768 | Otavio's robber frog | | common name | +364768 | Paludicola signifera | | synonym | +364768 | Paludicola signifer | | synonym | +364768 | Physalaemus signifer (Girard, 1853) | | authority | +364768 | Physalaemus signifer | | scientific name | +364768 | Rhinoderma signifera Girard, 1853 | | authority | +364768 | Rhinoderma signifera | | synonym | +365053 | Ilisha | | scientific name | +365059 | Coilia ectenes Jordan & Seale, 1905 | | authority | +365059 | Coilia ectenes | | synonym | +365059 | Coilia ectenes taihuensis | | synonym | +365059 | Coilia ectenes taihuensis Yuan, Lin, Liu & Qin, 1977 | | authority | +365059 | Coilia nasus | | scientific name | +365059 | Coilia nasus taihuensis | | synonym | +365059 | Coilia nasus Temminck & Schlegel, 1846 | | authority | +365059 | Coilia taihuensis | | synonym | +365059 | estuarine tapertail anchovy | | common name | +365059 | Japanese grenadier anchovy | | genbank common name | +365059 | lake anchovy | | common name | +365581 | Chao Phraya giant catfish | | common name | +365581 | giant pangasius | | genbank common name | +365581 | Pangasius beani Smith, 1931 | | authority | +365581 | Pangasius beani | | synonym | +365581 | Pangasius sanitwangsei | | synonym | +365581 | Pangasius sanitwongsei | | scientific name | +365581 | Pangasius sanitwongsei Smith, 1931 | | authority | +365581 | Paroon shark | | common name | +367642 | Afrixalus dorsalis (Peters, 1875) | | authority | +367642 | Afrixalus dorsalis | | scientific name | +367642 | brown banana frog | | genbank common name | +367642 | Cameroon banana frog | | common name | +367642 | Hyperolius dorsalis Peters, 1875 | | authority | +367642 | Hyperolius dorsalis | | synonym | +367642 | striped spiny reed frog | | common name | +367647 | common oval frog | | genbank common name | +367647 | Dactylethra ovalis | | synonym | +367647 | Elachistocleis ovalis (Schneider, 1799) | | authority | +367647 | Elachistocleis ovalis | | scientific name | +367647 | Engystoma ovale | | synonym | +367647 | Engystoma ovalis | | synonym | +367647 | Gastrophryne ovalis | | synonym | +367647 | Microps ovalis | | synonym | +367647 | Nelsonophryne aterrima A AJC-2009 | | synonym | +367647 | oval frog | | common name | +367647 | Rana ovalis Schneider, 1799 | | authority | +367647 | Rana ovalis | | synonym | +367647 | slate burrowing frog | | common name | +367648 | Huia javana | | synonym | +367648 | Huia javana Yang, 1991 | | authority | +367648 | Huia masonii (Boulenger, 1884) | | authority | +367648 | Huia masonii | | synonym | +367648 | Huia masoni | | synonym | +367648 | Hylorana massonii | | synonym | +367648 | Javan torrent frog | | common name | +367648 | Java torrent frog | | genbank common name | +367648 | Rana masonii | | synonym | +367648 | Wijayarana masonii (Boulenger, 1884) | | authority | +367648 | Wijayarana masonii | | scientific name | +367669 | banded sand frog | | common name | +367669 | banded stream frog | | genbank common name | +367669 | Jonkersberg frog | | common name | +367669 | Rana bonaespei Dubois, 1981 | | authority | +367669 | Rana bonaespei | | synonym | +367669 | Strongylopus bonaespei (Dubois, 1981) | | authority | +367669 | Strongylopus bonaespei | | scientific name | +367674 | Cornufer guppyi (Boulenger, 1884) | | authority | +367674 | Cornufer guppyi Boulenger, 1884 | | authority | +367674 | Cornufer guppyi | | scientific name | +367674 | Discodeles guppyi (Boulenger, 1884) | | authority | +367674 | Discodeles guppyi | | synonym | +367674 | Platymantis guppyi (Boulenger, 1884) | | authority | +367674 | Platymantis guppyi | | synonym | +367674 | Rana guppyi | | synonym | +367674 | Shortland Island webbed frog | | genbank common name | +367674 | Solomon Islands giant treefrog | | common name | +367674 | Treasury wrinkled ground frog | | common name | +369509 | Pseudorana weiningensis (Liu, Hu & Yang, 1962) | | authority | +369509 | Pseudorana weiningensis | | scientific name | +369509 | Rana weiningensis Liu, Hu, and Yang, 1962 | | authority | +369509 | Rana weiningensis | | synonym | +369509 | Weining frog | | common name | +369509 | Weining groove-toed frog | | genbank common name | +369511 | Babina pleuraden | | synonym | +369511 | Nidirana pleuraden (Boulenger, 1904) | | authority | +369511 | Nidirana pleuraden | | scientific name | +369511 | Rana pleuraden Boulenger, 1904 | | authority | +369511 | Rana pleuraden | | synonym | +369511 | Yunkwei plateau frog | | common name | +369511 | Yunnan pond frog | | genbank common name | +369514 | golden crossband frog | | genbank common name | +369514 | Odorrana andersonii (Boulenger, 1882) | | authority | +369514 | Odorrana andersonii | | scientific name | +369514 | Rana andersonii Boulenger, 1882 | | authority | +369514 | Rana andersonii | | synonym | +369514 | Yunnan odorous frog | | common name | +369515 | fine-spined frog | | genbank common name | +369515 | Hylarana spinulosa | | synonym | +369515 | Rana spinulosa Smith, 1923 | | authority | +369515 | Rana spinulosa | | synonym | +369515 | spiny frog | | common name | +369515 | Sylvirana spinulosa | | scientific name | +369626 | Balantiocheilos | | scientific name | +369627 | Balantiocheilos melanopterus (Bleeker, 1851) | | authority | +369627 | Balantiocheilos melanopterus | | scientific name | +369627 | Bala shark | | common name | +369627 | Barbus melanopterus Bleeker, 1850 | | authority | +369627 | Barbus melanopterus | | synonym | +369627 | tricolor sharkminnow | | genbank common name | +369633 | Crossocheilus | | scientific name | +370040 | Chelon haematocheilus | | synonym | +370040 | Liza haematocheila | | synonym | +370040 | Liza haematocheila (Temminck & Schlegel, 1845) | | authority | +370040 | Liza haematocheilus | | synonym | +370040 | Liza haematocheilus (Temminck & Schlegel, 1845) | | authority | +370040 | Mugil haematocheilus | | synonym | +370040 | Mugil haematocheilus Temminck & Schlegel, 1845 | | authority | +370040 | Planiliza haematocheila | | synonym | +370040 | Planiliza haematocheila (Temminck & Schlegel, 1845) | | authority | +370040 | Planiliza haematocheilus | | scientific name | +370040 | Planiliza haematocheilus (Temminck & Schlegel, 1845) | | authority | +370040 | redlip mullet | | common name | +370040 | so-iny mullet | | genbank common name | +370356 | Neolissochilus | | scientific name | +370357 | Barbodes hexagonolepis McClelland, 1839 | | authority | +370357 | Barbodes hexagonolepis | | synonym | +370357 | Barbus hexagonolepis McClelland, 1839 | | authority | +370357 | Barbus hexagonolepis | | synonym | +370357 | chocolate mahseer | | common name | +370357 | copper masheer | | genbank common name | +370357 | Neolissochilus hexagonolepis (McClelland, 1839) | | authority | +370357 | Neolissochilus hexagonolepis | | scientific name | +370357 | Neolissochilus sp. SKG-2012b | | includes | +370357 | Neolissochilus sp. SKG-2012d | | includes | +371028 | mile-a-minute vine | mile-a-minute vine | genbank common name | +371028 | mile-a-minute weed | | common name | +371028 | Persicaria perfoliata (L.) H.Gross, 1919 | | authority | +371028 | Persicaria perfoliata | | scientific name | +371028 | Polygonum perfoliatum (L.) L. | | authority | +371028 | Polygonum perfoliatum | | synonym | +371028 | Polygonum perforliatum | | synonym | +371673 | common squirrelfish | | common name | +371673 | hardback soldier | | common name | +371673 | Holocentrus adscensionis (Osbeck, 1765) | | authority | +371673 | Holocentrus adscensionis | | scientific name | +371673 | longjaw squirrelfish | | genbank common name | +371673 | Perca adscensionis Osbeck, 1765 | | authority | +371673 | Perca adscensionis | | synonym | +371673 | rotten finger | | common name | +371673 | squirrelfish | | common name | +371673 | striped squirrelfish | | common name | +371673 | wenchman | | common name | +371709 | Hyla marianae Dunn, 1926 | | authority | +371709 | Hyla marianae | | synonym | +371709 | Osteopilus marianae (Dunn, 1926) | | authority | +371709 | Osteopilus marianae | | scientific name | +371709 | Spaldings treefrog | | common name | +371709 | yellow bromeliad frog | | genbank common name | +371864 | Anas fusca Linnaeus, 1758 | | authority | +371864 | Anas fusca | | synonym | +371864 | Melanitta fusca (Linnaeus, 1758) | | authority | +371864 | Melanitta fusca | | scientific name | +371864 | velvet scoter | | genbank common name | +371864 | white-winged scoter | | common name | +374066 | Bokermannohyla Faivovich et al., 2005 | | authority | +374066 | Bokermannohyla | | scientific name | +374069 | Dendropsophus Fitzinger, 1843 | | authority | +374069 | Dendropsophus | | scientific name | +374082 | Exerodonta Broddhi, 1879 | | authority | +374082 | Exerodonta | | scientific name | +374083 | Isthmohyla Faivovich et al., 2005 | | authority | +374083 | Isthmohyla | | scientific name | +374085 | Tlalocohyla Faivovich et al., 2005 | | authority | +374085 | Tlalocohyla | | scientific name | +374458 | Alaus oculatus (Linnaeus, 1758) | | authority | +374458 | Alaus oculatus | | scientific name | +374458 | big-eyed click beetle | | genbank common name | +374458 | Eastern eyed click beetle | | common name | +374458 | Elater oculatus | | synonym | +374458 | eyed click beetle | | common name | +374458 | red oak borer | red oak borer | common name | +374600 | Agriades glandon (de Prunner, 1798) | | authority | +374600 | Agriades glandon (Prunner, 1798) | | authority | +374600 | Agriades glandon | | scientific name | +374600 | Glandon blue | | genbank common name | +374600 | Papilio glandon de Prunner, 1798 | | authority | +374600 | Papilio glandon | | synonym | +374600 | Plebejus glandon | | synonym | +374600 | poco brillo | | common name | +374649 | brown-eared bulbul | | genbank common name | +374649 | chestnut-eared bulbul | | common name | +374649 | Hypsipetes amaurotis | | scientific name | +374649 | Hypsipetes amaurotis (Temminck, 1830) | | authority | +374649 | Microscelis amaurotis | | synonym | +374649 | Microscelis amaurotis (Temminck, 1830) | | synonym | +375434 | Bominican white-lipped frog | | common name | +375434 | Leptodactylus dominicensis | Leptodactylus dominicensis | synonym | +375434 | Leptodactylus dominicensis Muller, 1923 | | authority | +375434 | Leptodactylus fallax Muller, 1926 | | authority | +375434 | Leptodactylus fallax | | scientific name | +375434 | mountain chicken | | common name | +375434 | mountain chicken frog | | genbank common name | +376636 | Gollum | | scientific name | +376637 | Gollum attenuatus (Garrick, 1954) | | authority | +376637 | Gollum attenuatus | | scientific name | +376637 | gollumshark | | common name | +376637 | slender smooth hound | | common name | +376637 | slender smooth-hound | | genbank common name | +376637 | Triakis attenuata Garrick, 1954 | | authority | +376637 | Triakis attenuata | | synonym | +376738 | Acentrogobius | | scientific name | +376739 | Acentrogobius janthinopterus (Bleeker, 1852) | | authority | +376739 | Acentrogobius janthinopterus | | scientific name | +376739 | Gobius janthinopterus Bleeker, 1852 | | authority | +376739 | Gobius janthinopterus | | synonym | +376739 | mangrove goby | mangrove goby | common name | +376739 | pupilspot goby | | common name | +376739 | robust mangrove goby | | genbank common name | +376895 | black ulua | black ulua | common name | +376895 | Carangoides ignobilis | | synonym | +376895 | Caranx ignobilis (Fabricius, 1775) | | authority | +376895 | Caranx ignobilis | | scientific name | +376895 | giant kingfish | | common name | +376895 | giant trevally | | genbank common name | +376895 | lowly trevally | | common name | +376895 | Scomber ignobilis Forsskal, 1775 | | authority | +376895 | Scomber ignobilis | | synonym | +376895 | yellowfin jack | yellowfin jack | common name | +376895 | yellow fin trevally | | common name | +377265 | Taudactylus | | scientific name | +377266 | Crinia acutirostris Andersson, 1916 | | authority | +377266 | Crinia acutirostris | | synonym | +377266 | sharp-snouted dayfrog | | common name | +377266 | sharp-snouted torrent frog | | genbank common name | +377266 | Taudactylus acutirostris (Andersson, 1913) | | authority | +377266 | Taudactylus acutirostris | | scientific name | +377306 | Assa | | scientific name | +377307 | Assa darlingtoni (Loveridge, 1933) | | authority | +377307 | Assa darlingtoni | | scientific name | +377307 | Australian marsupial frog | | common name | +377307 | Crinia darlingtoni Loveridge, 1933 | | authority | +377307 | Crinia darlingtoni | | synonym | +377307 | hip-pocket frog | | common name | +377307 | pouched frog | pouched frog | genbank common name | +377316 | Atelopus varius zeteki | | synonym | +377316 | Atelopus zeteki Dunn, 1933 | | authority | +377316 | Atelopus zeteki | | scientific name | +377316 | Cerro Camapana stubfoot toad | | common name | +377316 | golden arrow poison frog | | genbank common name | +377316 | golden frog | golden frog | common name | +377316 | Panamanian golden frog | | common name | +377347 | Thoropa | | scientific name | +377348 | military river frog | | common name | +377348 | Rana miliaris Spix, 1824 | | authority | +377348 | Rana miliaris | | synonym | +377348 | rock river frog | | genbank common name | +377348 | Thoropa miliaris | | scientific name | +377348 | Thoropa miliaris (Spix, 1824) | | authority | +377352 | Chacophrys | | scientific name | +377353 | Ceratophrys pierottii | | synonym | +377353 | Ceratophrys pierottii Vellard, 1948 | | authority | +377353 | Chaco horned frog | | genbank common name | +377353 | Chacophrys pierottii | | scientific name | +377353 | Chacophrys pierottii (Vellard, 1948) | | authority | +377353 | lesser chini frog | | common name | +378387 | Appias albina (Boisduval, 1836) | | authority | +378387 | Appias albina | | scientific name | +378387 | common albatross | | common name | +378387 | Pieris albina Boisduval, 1836 | | authority | +378387 | Pieris albina | | synonym | +378387 | white albatross butterfly | | genbank common name | +378387 | white albatross | | common name | +379421 | Plioreocepta | | scientific name | +381124 | corn | | common name | +381124 | Indian corn | | common name | +381124 | maize | maize | genbank common name | +381124 | Zea mays subsp. amylacea (Sturtev.) Zhuk. | | authority | +381124 | Zea mays subsp. amylacea | | synonym | +381124 | Zea mays subsp. ceratina (Kuelshov) Zhuk. | | authority | +381124 | Zea mays subsp. ceratina | | synonym | +381124 | Zea mays subsp. everta (Sturtev.) Zhuk. | | authority | +381124 | Zea mays subsp. everta | | synonym | +381124 | Zea mays subsp. indurata (Sturtev.) Zhuk. | | authority | +381124 | Zea mays subsp. indurata | | synonym | +381124 | Zea mays subsp. mays | | scientific name | +381124 | Zea mays subsp. ramosa Gernert | | authority | +381124 | Zea mays subsp. ramosa | | synonym | +381124 | Zea mays subsp. saccharata (Sturtev.) Zhuk., 1950 | | synonym | +381124 | Zea mays subsp. saccharata | | synonym | +381124 | Zea mays subsp. sacharata | | equivalent name | +381124 | Zea mays subsp. tunicata Sturtev. | | authority | +381124 | Zea mays subsp. tunicata | | synonym | +381124 | Zea mays var. mays | | synonym | +381124 | Zea mays var. saccharata (Sturtev.) L.H.Bailey, 1902 | | synonym | +381124 | Zea mays var. saccharata | | synonym | +381124 | Zea ramosa | | synonym | +381124 | Zea saccharata Sturtev., 1885 | | authority | +381124 | Zea saccharata | | synonym | +382769 | Lycodonomorphus | | scientific name | +383841 | Ptychadena uzungwensis (Loveridge, 1932) | | authority | +383841 | Ptychadena uzungwensis | | scientific name | +383841 | Rana mascareniensis uzungwensis Loveridge, 1932 | | authority | +383841 | Rana mascareniensis uzungwensis | | synonym | +383841 | Rana uzungwensis | | synonym | +383841 | Uzungwe grass frog | | common name | +383841 | Uzungwe grassland frog | | common name | +383841 | Uzungwe ridged frog | | genbank common name | +384871 | Ameerega pulchripecta | | scientific name | +384871 | Ameerega pulchripecta (Silverstone, 1976) | | authority | +384871 | beautiful-breasted poison-arrow frog | | common name | +384871 | beautiful-breasted poison frog | | common name | +384871 | blue-breasted poison frog | | genbank common name | +384871 | Colostethus pulchripectus | | synonym | +384871 | Dendrobates pulchripectus | | synonym | +384871 | Epipedobates pulchripectus | | synonym | +384871 | Phyllobates pulchripectus Silverstone, 1976 | | authority | +384871 | Phyllobates pulchripectus | | synonym | +384871 | Silverstone's poison frog | Silverstone's poison frog | common name | +384895 | Dendrobates truncatus (Cope, 1861) | | authority | +384895 | Dendrobates truncatus | | scientific name | +384895 | Hylaplesia trunctata | | synonym | +384895 | Phyllobates truncatus Cope, 1861 | | authority | +384895 | Phyllobates truncatus | | synonym | +384895 | yellow-striped poison-arrow frog | | common name | +384895 | yellow-striped poison frog | | genbank common name | +384899 | Epipedobates espinosai (Funkhouser, 1956) | | authority | +384899 | Epipedobates espinosai | | scientific name | +384899 | Phyllobates espinosai Funkhouser, 1956 | | authority | +384899 | Phyllobates espinosai | | synonym | +384899 | turquoise-bellied poison-arrow frog | | common name | +384899 | turquoise-bellied poison frog | | genbank common name | +384902 | Ameerega petersi | | scientific name | +384902 | Ameerega petersi (Silverstone, 1976) | | authority | +384902 | Ameerega smaragdina (Silverstone, 1976) | | authority | +384902 | Ameerega smaragdina | | synonym | +384902 | Ameerega smarigdinus | | synonym | +384902 | Dendrobates smaragdinus | | synonym | +384902 | emerald poison-arrow frog | | common name | +384902 | emerald poison frog | | common name | +384902 | Epipedobates petersi (Silverstone, 1976) | | authority | +384902 | Epipedobates petersi | | synonym | +384902 | Epipedobates smaragdinus (Silverstone, 1976) | | authority | +384902 | Epipedobates smaragdinus | | synonym | +384902 | Peru poison frog | | common name | +384902 | Peruvian poison-arrow frog | | common name | +384902 | Peruvian poison frog | | genbank common name | +384902 | Phyllobates petersi Silverstone, 1976 | | authority | +384902 | Phyllobates petersi | | synonym | +384902 | Phyllobates smaragdinus | | synonym | +384907 | Allobates | | scientific name | +385652 | Echinotriton | | scientific name | +385652 | mountain newts | | genbank common name | +385654 | Chinhai newt | | common name | +385654 | Chinhai spiny newt | | genbank common name | +385654 | Echinotriton chinhaiensis (Chang, 1932) | | authority | +385654 | Echinotriton chinhaiensis | | scientific name | +385654 | Tylototriton chinhaiensis Chang, 1932 | | authority | +385654 | Tylototriton chinhaiensis | | synonym | +385657 | black-spotted newt | | genbank common name | +385657 | Diemyctylus miniatus meridionalis Cope, 1880 | | authority | +385657 | Diemyctylus miniatus meridionalis | | synonym | +385657 | Notophthalmus meridionalis (Cope, 1880) | | authority | +385657 | Notophthalmus meridionalis | | scientific name | +385657 | Texas triton | | common name | +385674 | black knobby newt | | genbank common name | +385674 | Mount Yao newt | | common name | +385674 | Tylototriton asperrimus | | scientific name | +385674 | Tylototriton asperrimus Unterstein, 1930 | | authority | +385674 | Yaotriton asperrimus | | synonym | +385676 | Kweichow crocodile newt | | common name | +385676 | Pleurodeles kweichowensis | | synonym | +385676 | Pleurodeles (Tylototriton) kweichowensis | | synonym | +385676 | red-tailed knobby newt | | genbank common name | +385676 | Tylototriton kweichowensis Fang and Chang, 1932 | | authority | +385676 | Tylototriton kweichowensis | | scientific name | +385676 | Tylototriton (Tylototriton) kweichowensis | | synonym | +385678 | Echinotriton asperrimus wenxianensis | | synonym | +385678 | Pleurodeles asperrimus wenxianensis | | synonym | +385678 | Pleurodeles (Tylototrion) asperrimus wenxianensis | | synonym | +385678 | Tylototriton asperrimus wenxianensis | | synonym | +385678 | Tylototriton wenxianensis Fei, Ye & Yang, 1984 | | authority | +385678 | Tylototriton wenxianensis | | scientific name | +385678 | Tylototriton (Yaotriton) wenxianensis | | synonym | +385678 | Wenxian knobby newt | | genbank common name | +385678 | Wenxian knobby salamander | | common name | +386281 | Brassica campestris subsp. chinensis var. pupurea | | synonym | +386281 | Brassica campestris var. purpurea L.H.Bailey | | synonym | +386281 | Brassica campestris var. purpurea | | synonym | +386281 | Brassica compestris subsp. chinensis var. pupurea | | synonym | +386281 | Brassica rapa (Purpuraria Group) | | equivalent name | +386281 | Brassica rapa subsp. campestris var. purpuraria | | synonym | +386281 | Brassica rapa subsp. chinensis var. purpuraria | | synonym | +386281 | Brassica rapa var. purpuraria (L.H.Bailey) Kitam., 1950 | | authority | +386281 | Brassica rapa var. purpuraria | | scientific name | +386281 | purple stem mustard | | genbank common name | +386281 | saishin | | common name | +386281 | zi cai tai | | common name | +389261 | Alexandrian shrew | | common name | +389261 | Crocidura aleksandrisi | | scientific name | +389261 | Crocidura aleksandrisi Vesmanis, 1977 | | authority | +389261 | Crocidura suaveolens aleksandrisi | | synonym | +389261 | Cyrenaica shrew | | genbank common name | +389288 | African green toad | | genbank common name | +389288 | Bufo boulengeri Lataste, 1879 | | authority | +389288 | Bufo boulengeri | | synonym | +389288 | Bufo siculus | Bufo siculus | synonym | +389288 | Bufo siculus Stoeck et al., 2008 | | authority | +389288 | Bufo sp. MS-2006 | Bufo sp. MS-2006 | equivalent name | +389288 | Bufotes boulengeri | | scientific name | +389288 | Bufotes siculus | | synonym | +389288 | Pseudepidalea boulengeri (Lataste, 1879) | | authority | +389288 | Pseudepidalea boulengeri | | synonym | +389288 | Pseudepidalea sicula (Stock, Sicilia, Belfiore, Buckley, Lo Brutto, Lo Valvo & Arculeo, 2008) | | authority | +389288 | Pseudepidalea sicula | | synonym | +389288 | Sicilian green toad | | common name | +389293 | Bufo latastii Boulenger, 1882 | | authority | +389293 | Bufo latastii | | synonym | +389293 | Bufotes latastii | | scientific name | +389293 | Ladakh toad | | genbank common name | +389293 | Lataste's toad | | common name | +389293 | Pseudepidalea latastii (Boulenger, 1882) | | authority | +389293 | Pseudepidalea latastii | | synonym | +389293 | vertebral-banded toad | | common name | +389298 | Bufo pseudoraddei Mertens, 1971 | | authority | +389298 | Bufo pseudoraddei pseudoraddei | | synonym | +389298 | Bufo pseudoraddei | | synonym | +389298 | Bufotes pseudoraddei | | scientific name | +389298 | Bufotes zamdaensis | | synonym | +389298 | Bufo viridis pseudoraddei Mertens, 1971 | | authority | +389298 | Bufo viridis pseudoraddei | | synonym | +389298 | Bufo zamdaensis Fei, Ye & Huang, 1999 | | authority | +389298 | Bufo zamdaensis | | synonym | +389298 | Pseudepidalea pseudoraddei (Mertens, 1971) | | authority | +389298 | Pseudepidalea pseudoraddei | | synonym | +389298 | Pseudepidalea zamdaensis (Fei, Ye & Huang, 1999) | | authority | +389298 | Pseudepidalea zamdaensis | | synonym | +389298 | Swat green toad | | genbank common name | +389298 | Swati gauk | | common name | +389299 | Batura glacier toad | | genbank common name | +389299 | Batura toad | | common name | +389299 | Bufo baturae Stoeck, Schmidt, Steinlein & Grosse, 1999 | | synonym | +389299 | Bufo pseudoraddei baturae Stock, Schmid, Steinlein, and Grosse, 1999 | | authority | +389299 | Bufo pseudoraddei baturae Stoeck, Schmid, Steinlein & Grosse, 1999 | | authority | +389299 | Bufo pseudoraddei baturae | | synonym | +389299 | Bufotes baturae | | scientific name | +389299 | Pseudepidalea baturae (Stoeck, Schmidt, Steinlein & Grosse, 1999) | | authority | +389299 | Pseudepidalea baturae | | synonym | +389303 | Bufo surdus Boulenger, 1891 | | authority | +389303 | Bufo surdus | | synonym | +389303 | Bufotes surdus | | scientific name | +389303 | Iranian toad | | common name | +389303 | Luristan toad | | genbank common name | +389303 | Pakistan toad | | common name | +389303 | Pseudepidalea surda (Boulenger, 1891) | | authority | +389303 | Pseudepidalea surda | | synonym | +389874 | Balu spadefoot toad | | common name | +389874 | Kinabulu horned frog | | genbank common name | +389874 | Leptobrachium baluense Boulenger, 1899 | | authority | +389874 | Leptobrachium baluense | | synonym | +389874 | Megophrys baluensis (Boulenger, 1899) | | authority | +389874 | Megophrys baluensis | | scientific name | +389874 | Xenophrys baluensis | | synonym | +390297 | Agonostomus | | scientific name | +390297 | Dajaus | | synonym | +390299 | Ambassis | | scientific name | +390299 | common glassfishes | | genbank common name | +390299 | glassies | | common name | +390299 | perchlets | | common name | +390307 | Centropogon australis | Centropogon australis | synonym | +390307 | Centropogon australis (White, 1790) | | scientific name | +390307 | Cottus australis | | synonym | +390307 | Cottus australis White, 1790 | | authority | +390307 | eastern fortescue | | common name | +390307 | fortesque | | common name | +390307 | fortesque waspfish | | genbank common name | +390307 | southern bullrout | | common name | +390307 | southern fortescue | | common name | +390342 | Inimicus | | scientific name | +390363 | Chaetodon alepidotus Linnaeus, 1766 | | authority | +390363 | Chaetodon alepidotus Linnaeus ex Garden, 1766 | | authority | +390363 | Chaetodon alepidotus | | synonym | +390363 | harvestfish | | common name | +390363 | Peprilus alepidotus (Linnaeus, 1766) | | authority | +390363 | Peprilus alepidotus | | scientific name | +390363 | star butterfish | | genbank common name | +390369 | Plagiotremus | | scientific name | +390464 | Bagrus | | scientific name | +390465 | Bagrus docmac | | synonym | +390465 | Bagrus docmak (Fabricius, 1775) | | authority | +390465 | Bagrus docmak | | scientific name | +390465 | Porcus docmac | | synonym | +390465 | Porcus docmak | | synonym | +390465 | semutundu | | genbank common name | +390465 | Silurus docmac | | synonym | +390465 | Silurus docmak Fabricius, 1775 | | authority | +390465 | Silurus docmak Forsskal, 1775 | | authority | +390465 | Silurus docmak | | synonym | +390465 | silver catfish | silver catfish | common name | +390465 | Sudan catfish | | common name | +390484 | black catfish | | common name | +390484 | black eel catfish | | common name | +390484 | Lambertia atra Perugia, 1894 | | authority | +390484 | Lambertia atra | | synonym | +390484 | narrowfoot tandan | | genbank common name | +390484 | narrow-fronted catfish | | common name | +390484 | narrow-fronted tandan | | common name | +390484 | Neosilurus ater (Perugia, 1894) | | authority | +390484 | Neosilurus ater | | scientific name | +390718 | Amolops amoropalamus Matsui, 1986 | | authority | +390718 | Amolops amoropalamus | | synonym | +390718 | Borneo mountain frog | | common name | +390718 | Meristogenys amoropalamus (Matsui, 1986) | | authority | +390718 | Meristogenys amoropalamus | | scientific name | +390718 | Meristogenys cf. amoropalamus TS-2008a | | includes | +390718 | Meristogenys sp. 05B245 | | synonym | +390718 | mountain Borneo frog | | genbank common name | +390976 | Diaphania | | scientific name | +390977 | cucumber moth | | genbank common name | +390977 | Diaphania indica (Saunders, 1851) | | authority | +390977 | Diaphania indica | | scientific name | +390977 | Eudioptes indica Saunders, 1851 | | authority | +390977 | Eudioptes indica | | synonym | +390977 | pumpkin caterpillar | | common name | +391187 | Scolecenchelys | | scientific name | +391205 | Heteroconger | | scientific name | +391206 | black spotted garden eel | | common name | +391206 | Heteroconger hassi (Klausewitz & Eibl-Eibesfeldt, 1959) | | authority | +391206 | Heteroconger hassi | | scientific name | +391206 | spotted garden eel | | common name | +391206 | spotted garden-eel | | genbank common name | +391206 | Taenioconger hassi | | synonym | +391206 | Xarifania hassi Klausewitz & Eibl-Eibesfeldt, 1959 | | authority | +391206 | Xarifania hassi | | synonym | +391220 | Ichthyophis tigrinus Lesson, 1828 | | authority | +391220 | Ichthyophis tigrinus | | synonym | +391220 | Scuticaria tigrina (Lesson, 1828) | | authority | +391220 | Scuticaria tigrina | | scientific name | +391220 | spotted snake moray | | genbank common name | +391220 | tiger moray | | common name | +391220 | tiger moray eel | | common name | +391220 | tiger reef-eel | | common name | +391220 | Uropterygius tigrinus | | synonym | +391223 | Aphthalmichthys javanicus Kaup, 1856 | | authority | +391223 | Aphthalmichthys javanicus | | synonym | +391223 | black-tailed thrush eel | | common name | +391223 | Javan worm eel | | common name | +391223 | Java spaghetti eel | | genbank common name | +391223 | Java thrush-eel | | common name | +391223 | Java worm eel | | common name | +391223 | Moringua javanica (Kaup, 1856) | | authority | +391223 | Moringua javanica | | scientific name | +391864 | Chalcorana raniceps (Peters, 1871) | | authority | +391864 | Chalcorana raniceps | | scientific name | +391864 | hydrophylax raniceps | | common name | +391864 | Hylarana raniceps (Peters, 1871) | | authority | +391864 | Hylarana raniceps | | synonym | +391864 | Peters' Malaysian frog | | genbank common name | +391864 | Polypedates raniceps Peters, 1871 | | synonym | +391864 | Polypedates raniceps | | synonym | +391864 | Rana raniceps (Peters, 1871) | | authority | +391864 | Rana raniceps | | synonym | +391866 | Hylarana cubitalis | | synonym | +391866 | Rana cubitalis Smith, 1917 | | authority | +391866 | Rana cubitalis | | synonym | +391866 | Siam frog | | common name | +391866 | Sylvirana cubitalis | | scientific name | +391866 | yellow stream frog | | genbank common name | +392815 | Chlorocebus | | scientific name | +392903 | Balistes flavimarginatus Rueppell, 1829 | | authority | +392903 | Balistes flavimarginatus Ruppell, 1829 | | authority | +392903 | Balistes flavimarginatus | | synonym | +392903 | Pseudobalistes flavimarginatus (Rueppell, 1829) | | authority | +392903 | Pseudobalistes flavimarginatus | | scientific name | +392903 | yellowface triggerfish | | common name | +392903 | yellowmargin triggerfish | | genbank common name | +392922 | Paramonacanthus | | scientific name | +394460 | Gastrotheca ovifera (Lichtenstein & Weinland, 1854) | | authority | +394460 | Gastrotheca ovifera | | scientific name | +394460 | giant marsupial frog | | genbank common name | +394460 | Notodelphys ovifera Lichtenstein & Weinland, 1854 | | authority | +394460 | Notodelphys ovifera | | synonym | +394460 | Nototrema oviferum | | synonym | +394460 | Opisthodelphys ovifera | | synonym | +394460 | pouched frog | pouched frog | common name | +396790 | Macolor | | scientific name | +396791 | black and white snapper | | genbank common name | +396791 | black beauty | | common name | +396791 | black snapper | black snapper | common name | +396791 | Macolor niger (Fabricius, 1775) | | authority | +396791 | Macolor niger | | scientific name | +396791 | Sciaena nigra Forsskal, 1775 | | authority | +396791 | Sciaena nigra | | synonym | +397597 | Siphamia | | scientific name | +399177 | Abavorana luctuosa (Peters, 1871) | | authority | +399177 | Abavorana luctuosa | | scientific name | +399177 | Hylarana luctuosa | | synonym | +399177 | Limnodytes luctuosus Peters, 1871 | | authority | +399177 | Limnodytes luctuosus | | synonym | +399177 | mahogany frog | | genbank common name | +399177 | Malaysian frog | | common name | +399177 | Pulchrana luctuosa | | synonym | +399177 | purple frog | purple frog | common name | +399177 | Rana luctuosa (Peters, 1871) | | authority | +399177 | Rana luctuosa | | synonym | +399316 | Necromys | | scientific name | +400053 | Sylvaemus group | | scientific name | +400187 | Erynnis propertius | | scientific name | +400187 | Erynnis propertius (Scudder & Burgess, 1870) | | authority | +400187 | Nisoniades propertius Scudder & Burgess, 1870 | | authority | +400187 | Nisoniades propertius | | synonym | +400187 | propertius duskywing | | genbank common name | +400187 | western oak dusky wing | | common name | +400502 | autumn meadowhawk | | genbank common name | +400502 | Diplax vicina | | synonym | +400502 | Sympetrum vicinum (Hagen, 1861) | | authority | +400502 | Sympetrum vicinum | | scientific name | +400502 | yellow-legged meadowhawk | | common name | +401547 | banded leaf-toed gecko | | genbank common name | +401547 | carrot-tailed viper gecko | | common name | +401547 | Hemidactylus fasciatus Gray, 1842 | | authority | +401547 | Hemidactylus fasciatus | | scientific name | +401547 | Teratolepis fasciata | | synonym | +402710 | Bagrus oculatus | | synonym | +402710 | Bagrus oculatus Valenciennes, 1840 | | authority | +402710 | koorie | | common name | +402710 | Malabar mystus | | genbank common name | +402710 | Mystus oculatus | | scientific name | +402710 | Mystus oculatus (Valenciennes, 1840) | | authority | +403223 | Clupanodon | | scientific name | +403224 | Chinese gizzard shad | | genbank common name | +403224 | Clupanodon thrissa (Linnaeus, 1758) | | authority | +403224 | Clupanodon thrissa | | scientific name | +403224 | Clupea thrissa | | synonym | +403224 | gizzard shad | | common name | +404976 | Japanese brown frog | | genbank common name | +404976 | Napparagawa frog | | common name | +404976 | Rana (Rana) sakuraii | | synonym | +404976 | Rana sakuraii Matsui & Matsui, 1990 | | authority | +404976 | Rana sakuraii | | scientific name | +404976 | stream brown frog | | common name | +405016 | Argynnis laodice | | scientific name | +405016 | Argyronome laodice (Pallas, 1771) | | authority | +405016 | Argyronome laodice | | synonym | +405016 | eastern silverstripe | | genbank common name | +405016 | Pallas' fritillary | | common name | +405016 | Papilio laodice Pallas, 1771 | | authority | +405016 | Papilio laodice | | synonym | +405018 | Argynnis pandora (Denis & Schiffermuller, 1775) | | authority | +405018 | Argynnis pandora | | scientific name | +405018 | cardinal | | common name | +405018 | cardinal fritillary | | genbank common name | +405018 | Papilio pandora Schiffermuller, 1775 | | authority | +405018 | Papilio pandora | | synonym | +405022 | bog fritillary | | genbank common name | +405022 | Boloria eunomia (Esper, 1800) | | authority | +405022 | Boloria eunomia | | scientific name | +405022 | ocellate bog fritillary | | common name | +405022 | Papilio eunomia Esper, 1800 | | authority | +405022 | Papilio eunomia | | synonym | +405022 | Proclossiana eunomia | | synonym | +405189 | brown-tailed bar-lipped skink | | common name | +405189 | Glaphyromorphus fuscicaudis (Greer, 1979) | | authority | +405189 | Glaphyromorphus fuscicaudis | | scientific name | +405189 | grey-tailed skink | | genbank common name | +405189 | Sphenomorphus fuscicaudis Greer, 1979 | | authority | +405189 | Sphenomorphus fuscicaudis | | synonym | +410297 | Gerbilliscus | | scientific name | +410301 | Gerbilliscus kempi | | scientific name | +410301 | Kemp's gerbil | | common name | +410301 | Northern savanna gerbil | | genbank common name | +410301 | Tatera kempii | | synonym | +410301 | Tatera kempii Wroughton, 1906 | | authority | +410301 | Tatera kempi | | synonym | +410303 | fringe-tailed gerbil | | common name | +410303 | Fringe-tailed gerbil | | genbank common name | +410303 | Gerbilliscus robustus (Cretzschmar, 1826) | | authority | +410303 | Gerbilliscus robustus | | scientific name | +410303 | Tatera robusta | | synonym | +411568 | Setipinna | | scientific name | +411962 | Schrankia | | scientific name | +411963 | Cledeobia costaestrigalis | | synonym | +411963 | pinion-streaked snout | | common name | +411963 | pinion-streaked snout moth | | genbank common name | +411963 | Schrankia costaestrigalis | | scientific name | +411963 | Schrankia costaestrigalis (Stephens, 1834) | | authority | +412675 | Cucumis melo subsp. melo f. melo | | synonym | +412675 | Cucumis melo subsp. melo | | scientific name | +415320 | Euchloe | Euchloe | scientific name | +415322 | Elphinstonia | | scientific name | +415322 | Euchloe (Elphinstonia) | | synonym | +415323 | Anthocharis charlonia Donzel, 1842 | | authority | +415323 | Anthocharis charlonia | | synonym | +415323 | Elphinstonia charlonia | | synonym | +415323 | Euchloe charlonia (Donzel, 1842) | | authority | +415323 | Euchloe charlonia | | scientific name | +415323 | Euchloe (Elphinstonia) charlonia | | synonym | +415323 | greenish black-tip | | genbank common name | +415323 | lemon white | | common name | +415331 | dappled white | | genbank common name | +415331 | Euchloe ausonia Hubner, 1803 | | authority | +415331 | Euchloe ausonia | | scientific name | +415331 | Euchloe (Euchloe) ausonia | | synonym | +415331 | Papilio ausonia Hubner, 1803 | | authority | +415331 | Papilio ausonia | | synonym | +415331 | pearl white | | common name | +416556 | Chinese pine caterpillar | | common name | +416556 | Chinese pine moth | | genbank common name | +416556 | Dendrolimus punctatus tabulaeformis | | synonym | +416556 | Dendrolimus tabulaeformis | | scientific name | +416556 | Dendrolimus tabulaeformis Tsai & Liu, 1962 | | authority | +416559 | Galerucella nymphaeae complex | | scientific name | +417459 | Heterophallus | | scientific name | +417944 | Brotula | | scientific name | +418657 | broad-striped dasyure | | common name | +418657 | Murexia rothschildi | | scientific name | +418657 | Murexia rothschildi Tate, 1866 | | authority | +418657 | Paramurexia rothschildi | | synonym | +418657 | Paramurexia rothschildi (Tate, 1938) | | authority | +418657 | short-haired marsupial mouse | | genbank common name | +418659 | Antechinus naso | | synonym | +418659 | long-nosed antechinus | | common name | +418659 | Long-nosed dasyure | | genbank common name | +418659 | Murexia naso (Jentink, 1911) | | authority | +418659 | Murexia naso | | scientific name | +418659 | Phascogale naso Jentink, 1911 | | authority | +418659 | Phascogale naso | | synonym | +418659 | Phascomurexia naso (Jentink, 1911) | | authority | +418659 | Phascomurexia naso | | synonym | +418663 | Antechinus melanurus | | synonym | +418663 | black-tailed antechinus | | common name | +418663 | Black-tailed dasyure | | genbank common name | +418663 | broad-footed marsupial mouse | broad-footed marsupial mouse | common name | +418663 | Murexechinus melanurus | | synonym | +418663 | Murexechinus melanurus (Thomas, 1899) | | authority | +418663 | Murexia melanurus | | scientific name | +418663 | Murexia melanurus Thomas, 1866 | | authority | +418663 | Phascogale melanura | | synonym | +419645 | Borneo chorus frog | | common name | +419645 | Borneo narrow-mouthed frog | | common name | +419645 | Borneo rice frog | | genbank common name | +419645 | Microhyla borneensis Parker, 1928 | | authority | +419645 | Microhyla borneensis | | scientific name | +419645 | Microhyla sp. KUHE 53020 | | includes | +419645 | Microhyla sp. KUHE:53020 | | includes | +419645 | Microhyla sp. KUHE 53033 | | includes | +419645 | Microhyla sp. KUHE:53033 | | includes | +419645 | Microhyla sp. KUHE 53165 | | includes | +419645 | Microhyla sp. KUHE:53165 | | includes | +419645 | Microhyla sp. KUHE NNL M13 | | includes | +419645 | Microhyla sp. KUHE NNL M14 | | includes | +419645 | Microhyla sp. SM 081126 | | includes | +419645 | Microhyla sp. SM:081126 | | includes | +419646 | Eluru dot frog | | common name | +419646 | Hylaedactylus carnaticus | | synonym | +419646 | Ramanella variegata | | scientific name | +419646 | Ramanella variegata (Stoliczka, 1872) | | authority | +419646 | termite nest frog | | genbank common name | +419956 | Agrabia sicardi Nunenmacher, 1912 | | authority | +419956 | Agrabia sicardi | | synonym | +419956 | Calvia 14-guttata | | synonym | +419956 | Calvia quattuordecimguttata (Linnaeus, 1758) | | authority | +419956 | Calvia quattuordecimguttata | | scientific name | +419956 | Calvia quatuordecimguttata | | synonym | +419956 | Coccinella 14-guttata | | synonym | +419956 | cream-spotted lady beetle | | genbank common name | +419956 | fourteen-spotted lady beetle | | common name | +420420 | Cyclorana maini | | scientific name | +420420 | Cyclorana maini Tyler & Martin, 1977 | | authority | +420420 | Litoria maini | | synonym | +420420 | Litoria maini (Tyler & Martin, 1977) | | authority | +420420 | Mains frog | | common name | +420420 | Main's water-holding frog | | common name | +420420 | Mains water-holding frog | | common name | +420420 | sheep frog | sheep frog | common name | +420420 | western collared-frog | | genbank common name | +420422 | Carolina water dog | | common name | +420422 | dwarf waterdog | | genbank common name | +420422 | Menobranchus punctatus Gibbes, 1850 | | authority | +420422 | Menobranchus punctatus | | synonym | +420422 | Necturus punctatus (Gibbes, 1850) | | authority | +420422 | Necturus punctatus | | scientific name | +420422 | southern water dog | | common name | +420445 | Leptophryne | | scientific name | +420446 | bourbon toad | | common name | +420446 | Bufo borbonicus | | synonym | +420446 | Cacophryne borbonica | | synonym | +420446 | hour-glass toad | | common name | +420446 | Hysaplesia borbonica Boie, 1826 | | authority | +420446 | Hysaplesia borbonica | | synonym | +420446 | Java tree toad | | genbank common name | +420446 | Leptophryne borbonica | | scientific name | +420446 | Leptophryne borbonica (Tschudi, 1838) | | authority | +420446 | slender-legged toad | | common name | +420447 | Bufo (Mertensophryne) | | synonym | +420447 | Mertensophryne | | scientific name | +420460 | blue grey skate | | common name | +420460 | blue skate | blue skate | genbank common name | +420460 | common skate | | common name | +420460 | Dipturus batis 1 SPI-2007 | | equivalent name | +420460 | Dipturus batis (Linnaeus, 1758) | | authority | +420460 | Dipturus batis | | scientific name | +420460 | Dipturus flossada Risso, 1827 | | authority | +420460 | Dipturus flossada | | synonym | +420460 | flapper skate | | common name | +420460 | gray skate | | common name | +420460 | grey skate | grey skate | common name | +420460 | Raja batis Linnaeus, 1758 | | authority | +420460 | Raja batis | | synonym | +420460 | Raja flossada Risso, 1827 | | authority | +420460 | Raja flossada | | synonym | +420590 | Dendrolimus superans (Butler, 1877) | | authority | +420590 | Dendrolimus superans | | scientific name | +420590 | Japanese hemlock caterpillar | | genbank common name | +420590 | Odonestis superans Butler, 1877 | | authority | +420590 | Odonestis superans | | synonym | +420590 | Sakhalin silk moth | | common name | +420590 | white-lined silk moth | | common name | +423320 | Catocala nupta (Linnaeus, 1767) | | authority | +423320 | Catocala nupta | | scientific name | +423320 | Phalaena nupta Linnaeus, 1767 | | authority | +423320 | Phalaena nupta | | synonym | +423320 | red underwing | | genbank common name | +423320 | red underwing moth | | common name | +423492 | Mecistops | | scientific name | +423606 | Fukomys Kock et al. 2006 | | authority | +423606 | Fukomys | | scientific name | +423607 | Angolan giant mole-rat | | common name | +423607 | Coetomys mechowi (Peters, 1881) | | authority | +423607 | Coetomys mechowi | | synonym | +423607 | Cryptomys mechowii | | synonym | +423607 | Cryptomys mechowi | | synonym | +423607 | Fukomys mechowii | | scientific name | +423607 | Fukomys mechowi | | synonym | +423607 | Mechow's mole rat | | genbank common name | +425200 | Lycalopex Burmeister, 1854 | | authority | +425200 | Lycalopex | | scientific name | +426091 | Enchelycore | | scientific name | +427924 | Dreissena bugensis | | synonym | +427924 | Dreissena bugensis var. profunda | | synonym | +427924 | Dreissena rostriformis bugensis Andrusov, 1897 | | authority | +427924 | Dreissena rostriformis bugensis | | scientific name | +427924 | Dreissena rostriformis bugensis var. profunda | | synonym | +427924 | guagga mussel | | common name | +427924 | quagga mussel | | genbank common name | +428035 | Lumpenus | | scientific name | +428445 | Datnioides | | scientific name | +428446 | Chaetodon quadrifasciatus Sevastianoff, 1809 | | authority | +428446 | Chaetodon quadrifasciatus | | synonym | +428446 | Coius polota Hamilton, 1822 | | authority | +428446 | Coius polota | | synonym | +428446 | Datnioides polota (Hamilton, 1822) | | authority | +428446 | Datnioides polota | | scientific name | +428446 | Datnioides quadrifasciatus (Sevastianof, 1809) | | authority | +428446 | Datnioides quadrifasciatus | | synonym | +428446 | four-banded tigerfish | | genbank common name | +428446 | four-banded triple-tail | | common name | +428446 | four-barred tigerfish | | common name | +428466 | Ailao moustache toad | | common name | +428466 | Ailao spiny toad | | common name | +428466 | Leptobrachium ailaonicum echinatum | | synonym | +428466 | Leptobrachium ailaonicum | | scientific name | +428466 | Leptobrachium ailaonicum (Yang, Chen & Ma, 1983) | | authority | +428466 | Leptobrachium echinatum Dubois & Ohler, 1998 | | authority | +428466 | Leptobrachium echinatum | | synonym | +428466 | Leptobrachium (Leptobrachium) ailaonicum | | synonym | +428466 | Leptobrachium (Vibrissaphora) ailaonicum | | synonym | +428466 | Leptobrachium (Vibrissaphora) echinatum Dubois & Ohler, 1998 | | authority | +428466 | Leptobrachium (Vibrissaphora) echinatum | | synonym | +428466 | Vibrissaphora ailaonica | | synonym | +428466 | Vibrissaphora ailaonica Yang, Chen & Ma, 1983 | | authority | +428466 | Vibrissaphora echinata (Dubois & Ohler, 1998) | | authority | +428466 | Vibrissaphora echinata | | synonym | +428466 | Yunnan mustache toad | | genbank common name | +430793 | Beddome's night frog | | common name | +430793 | Nannobatrachus beddomii Boulenger, 1882 | | authority | +430793 | Nannobatrachus beddomii | | synonym | +430793 | Nyctibatrachus beddomii (Boulenger, 1882) | | authority | +430793 | Nyctibatrachus beddomii | | scientific name | +430793 | pigmy wrinkled frog | | genbank common name | +430793 | Tirunvelveli's hill frog | | common name | +431941 | Huia megatympanum | | synonym | +431941 | megatympanum frog | | genbank common name | +431941 | Odorrana megatympanum (Bain, Lathrop, Murphy, Orlov & Ho, 2003) | | authority | +431941 | Odorrana megatympanum | | synonym | +431941 | Rana megatympanum Bain, Lathrop, Murphy, Orlov & Ho, 2003 | | authority | +431941 | Rana megatympanum | | scientific name | +431941 | Rana (Odorrana) megatympanum | | synonym | +431941 | Rana tabaca | | synonym | +431941 | tobacco frog | | common name | +432164 | Atlantic bearded brotula | | common name | +432164 | Atlantic seasnail | Atlantic seasnail | common name | +432164 | bearded brotula | | genbank common name | +432164 | Brotula barbata (Bloch & Schneider, 1801) | | authority | +432164 | Brotula barbata | | scientific name | +432164 | deep water soapfish | | common name | +432164 | Enchelyopus barbatus Bloch & Schneider, 1801 | | authority | +432164 | Enchelyopus barbatus | | synonym | +432528 | Chilean red-back | | common name | +432528 | Chilean rose tarantula | | genbank common name | +432528 | Eurypelma rosea | | synonym | +432528 | Grammostola cala | | synonym | +432528 | Grammostola rosea | | scientific name | +432528 | Grammostola rosea (Walckenaer, 1837) | | authority | +432528 | Grammostola spatulata | | synonym | +432528 | Lasiodora rosea | | synonym | +432528 | Mygale rosea | | synonym | +433684 | Fugu flavidus Li, Wang & Wang, 1975 | | authority | +433684 | Fugu flavidus | | synonym | +433684 | sansaifugu | | genbank common name | +433684 | Takifugu flavidus (Li, Wang & Wang, 1975) | | authority | +433684 | Takifugu flavidus | | scientific name | +433684 | towny puffer | | common name | +433688 | Fugu alboplumbeus | | synonym | +433688 | Fugu niphobles | | synonym | +433688 | grass puffer | | common name | +433688 | komon-damashi | | genbank common name | +433688 | kusafugu | | common name | +433688 | Spheroides niphobles | | synonym | +433688 | Takifugu alboplumbeus (Richardson, 1845) | | authority | +433688 | Takifugu alboplumbeus | | scientific name | +433688 | Takifugu niphobles (Jordan & Snyder, 1901) | | authority | +433688 | Takifugu niphobles | | synonym | +433688 | Tetrodon alboplumbeus | | synonym | +435003 | Plicofollis | | scientific name | +435155 | Bombay duck | | common name | +435155 | Bombay-duck | | common name | +435155 | Bombay duck fish | | genbank common name | +435155 | Harpadon nehereus (Hamilton, 1822) | | authority | +435155 | Harpadon nehereus | | scientific name | +435155 | Osmerus nehereus Hamilton, 1822 | | authority | +435155 | Osmerus nehereus | | synonym | +435225 | Atherina sihama Fabricius, 1775 | | authority | +435225 | Atherina sihama | | synonym | +435225 | northern whiting | | genbank common name | +435225 | Sillago sihama (Fabricius, 1775) | | authority | +435225 | Sillago sihama | | scientific name | +435225 | silver sillago | | common name | +435228 | Thryssa | | scientific name | +435239 | Osteomugil | | scientific name | +435239 | Valamugil | | synonym | +435638 | flamingo | | common name | +435638 | Greater flamingo | | genbank common name | +435638 | Phoenicopterus roseus Pallas, 1811 | | authority | +435638 | Phoenicopterus roseus | | scientific name | +435638 | Phoenicopterus ruber roseus (Pallas, 1811) | | authority | +435638 | Phoenicopterus ruber roseus | | synonym | +435638 | red flamingo | | common name | +435999 | Caesiomorus blochii Lacepede, 1801 | | authority | +435999 | Caesiomorus blochii | | synonym | +435999 | golden pompano | | common name | +435999 | snubnose pompano | | genbank common name | +435999 | Trachinotus blochii (Lacepede, 1801) | | authority | +435999 | Trachinotus blochii | | scientific name | +436885 | blackbelly pearleye | | common name | +436885 | deep-sea pearleye | | common name | +436885 | Dissomma anale Brauer, 1902 | | authority | +436885 | Dissomma anale | | synonym | +436885 | Scopelarchus analis (Brauer, 1902) | | authority | +436885 | Scopelarchus analis | | scientific name | +436885 | short fin pearleye | | genbank common name | +437330 | Burma danio | | common name | +437330 | Danio feegradei Hora, 1937 | | authority | +437330 | Danio feegradei | | scientific name | +437330 | Danio sp. 'yoma' | | includes | +437330 | Yoma danio | | genbank common name | +439704 | Notornis hochstetteri Meyer, 1883 | | authority | +439704 | Notornis hochstetteri | | synonym | +439704 | Porphyrio hochstetteri (Meyer, 1883) | | authority | +439704 | Porphyrio hochstetteri | | scientific name | +439704 | Porphyrio mantelli hochstetteri | | synonym | +439704 | southern takahe | | common name | +439704 | South Island takahe | | genbank common name | +439704 | takahe | takahe | common name | +439832 | Devario | | scientific name | +439892 | Amphacanthus sutor | | synonym | +439892 | Amphacanthus sutor Valenciennes, 1835 | | authority | +439892 | cordonnier | | common name | +439892 | shoemaker spinefoot | | genbank common name | +439892 | Siganus sutor | | scientific name | +439892 | Siganus sutor (Valenciennes, 1835) | | authority | +441319 | Catopsilia scylla (Linnaeus, 1763) | | authority | +441319 | Catopsilia scylla | | scientific name | +441319 | orange emigrant | | common name | +441319 | Papilio scylla Linnaeus, 1763 | | authority | +441319 | Papilio scylla | | synonym | +441319 | yellow migrant | | genbank common name | +441366 | blunt-snouted clingfish | | genbank common name | +441366 | chafaroccas | | common name | +441366 | Gouania willdenowi (Risso, 1810) | | authority | +441366 | Gouania willdenowi | | scientific name | +441366 | Lepadogaster willdenowi Risso, 1810 | | authority | +441366 | Lepadogaster willdenowi | | synonym | +441663 | Astronotus friedrichsthalii | | synonym | +441663 | Cichlasoma friedrichsthalii | | synonym | +441663 | Heros friedrichsthalii | | synonym | +441663 | Parachromis friedrichsthalii (Heckel, 1840) | | authority | +441663 | Parachromis friedrichsthalii | | scientific name | +441663 | Parapetenia friedrichsthalii | | synonym | +441663 | yellow jacket cichlid | | common name | +441663 | yellow-jacket cichlid | | common name | +441663 | yellowjacket cichlid | | genbank common name | +442324 | Nymphalis | Nymphalis | scientific name | +442325 | Euvanessa | | scientific name | +442327 | Roddia | | scientific name | +443710 | blue cod | | common name | +443710 | Enchelyopus colias Forster, 1801 | | authority | +443710 | Enchelyopus colias | | synonym | +443710 | New Zealand blue cod | | genbank common name | +443710 | Parapercis colias (Forster, 1801) | | authority | +443710 | Parapercis colias | | scientific name | +443716 | African barrelfish | African barrelfish | genbank common name | +443716 | blue eye cod | | common name | +443716 | ocean blue-eye | | common name | +443716 | ocean blue-eyed trevalla | | common name | +443716 | Schedophilus labyrinthica | | synonym | +443716 | Schedophilus labyrinthicus McAllister & Randall, 1975 | | authority | +443716 | Schedophilus labyrinthicus | | scientific name | +443751 | Bidyanus | | scientific name | +443761 | Chiloscyllium colax (Meuschen, 1781) | | authority | +443761 | Chiloscyllium colax | | synonym | +443761 | Chiloscyllium indicum (Gmelin, 1789) | | authority | +443761 | Chiloscyllium indicum | | scientific name | +443761 | lip shark | | common name | +443761 | slender bamboo shark | | genbank common name | +443761 | Squalus colax | | synonym | +443761 | Squalus indicus | | synonym | +443773 | Chrysochir | | scientific name | +443774 | Chrysochir aureus (Richardson, 1846) | | authority | +443774 | Chrysochir aureus | | scientific name | +443774 | golden corvina | | common name | +443774 | Otolithus aureus Richardson, 1846 | | authority | +443774 | Otolithus aureus | | synonym | +443774 | yellow croaker | yellow croaker | common name | +443774 | yellowfin corvina | | genbank common name | +443787 | Hephaestus | | scientific name | +443788 | Hephaestus jenkinsi | | scientific name | +443788 | Hephaestus jenkinsi (Whitley, 1945) | | authority | +443788 | Jenkins' grunter | | common name | +443788 | Mesopristes jenkinsi | | synonym | +443788 | Mesopristes jenkinsi Whitley, 1945 | | authority | +443788 | western sooty grunter | | genbank common name | +443809 | Rhombosolea | | scientific name | +445152 | Hypopachus | | scientific name | +445153 | Engystoma variolosum Cope, 1866 | | authority | +445153 | Engystoma variolosum | | synonym | +445153 | Hypopachus variolosus (Cope, 1866) | | authority | +445153 | Hypopachus variolosus | | scientific name | +445153 | Mexican narrow-mouthed toad | | common name | +445153 | sheep frog | sheep frog | genbank common name | +445153 | Systoma variolosum | | synonym | +445438 | Vespa simillima | | scientific name | +445438 | Vespa simillima Smith, 1868 | | authority | +445506 | bumblebee mbuna | | common name | +445506 | bumblebee mouthbrooder | | genbank common name | +445506 | Melanochromis crabro | | synonym | +445506 | Pseudotropheus crabro (Ribbink & Lewis, 1982) | | authority | +445506 | Pseudotropheus crabro | | scientific name | +445771 | Chuanbei toothed toad | | common name | +445771 | Oreolalax chuanbeiensis | | scientific name | +445771 | Oreolalax chuanbeiensis Tian, 1983 | | authority | +445771 | Scutiger chuanbeiensis | | synonym | +445771 | Sichuan lazy toad | | genbank common name | +445772 | Jingdong lazy toad | | genbank common name | +445772 | Jingdong toothed toad | | common name | +445772 | Oreolalax jingdongensis Ma, Yang, and Li, 1983 | | authority | +445772 | Oreolalax jingdongensis | | scientific name | +445772 | Scutiger jingdongensis | | synonym | +445774 | common lazy toad | | genbank common name | +445774 | large toothed toad | | common name | +445774 | Oreolalax major (Liu and Hu, 1960) | | authority | +445774 | Oreolalax major | | scientific name | +445774 | Scutiger major Liu & Hu, 1960 | | authority | +445774 | Scutiger major | | synonym | +445777 | Omei lazy toad | | genbank common name | +445777 | Omei toothed toad | | common name | +445777 | Oreolalax omeimontis (Liu and Hu, 1960) | | authority | +445777 | Oreolalax omeimontis | | scientific name | +445777 | Scutiger omeimontis Liu & Hu, 1960 | | authority | +445777 | Scutiger omeimontis | | synonym | +445778 | Chinese lazy toad | | genbank common name | +445778 | Oreolalax pingii (Liu, 1943) | | authority | +445778 | Oreolalax pingii | | scientific name | +445778 | Ping's toothed toad | | common name | +445778 | Scutiger pingii Liu, 1943 | | authority | +445778 | Scutiger pingii | | synonym | +445779 | Chaochiao lazy toad | | common name | +445779 | Oreolalax rugosus (Liu, 1943) | | authority | +445779 | Oreolalax rugosus | | scientific name | +445779 | Scutiger rugosus Liu, 1943 | | authority | +445779 | Scutiger rugosus | | synonym | +445779 | warty toothed toad | | genbank common name | +445780 | Oreolalax schmidti (Liu, 1947) | | authority | +445780 | Oreolalax schmidti | | scientific name | +445780 | Schmidt's lazy toad | | common name | +445780 | Scutiger schmidti Liu, 1947 | | authority | +445780 | Scutiger schmidti | | synonym | +445780 | webless toothed toad | | genbank common name | +445782 | Oreolalax xiangchengensis Fei and Huang, 1983 | | authority | +445782 | Oreolalax xiangchengensis | | scientific name | +445782 | Scutiger xiangchengensis | | synonym | +445782 | Xiangcheng lazy toad | | genbank common name | +445782 | Xiangcheng toothed toad | | common name | +445783 | Aelurophryne glandulata Liu, 1950 | | authority | +445783 | Aelurophryne glandulata | | synonym | +445783 | chest gland cat-eyed toad | | genbank common name | +445783 | Hopachai lazy toad | | common name | +445783 | Scutiger glandulatus (Liu, 1950) | | authority | +445783 | Scutiger glandulatus | | scientific name | +445784 | Aelurophryne mammata | | synonym | +445784 | Bufo mammatus Gunther, 1896 | | authority | +445784 | Bufo mammatus | | synonym | +445784 | chest spiny cat-eyed toad | | genbank common name | +445784 | Cophophryne mammata | | synonym | +445784 | Scutiger mammatus (Guenther, 1896) | | authority | +445784 | Scutiger mammatus | | scientific name | +445784 | Tungsolo lazy toad | | common name | +445787 | Leishan moustache toad | | common name | +445787 | Leishan spiny toad | | genbank common name | +445787 | Leptobrachium leishanense (Liu & Hu, 1973) | | authority | +445787 | Leptobrachium leishanense | | scientific name | +445787 | Vibrissaphora leishanensis Liu & Hu, 1973 | | authority | +445787 | Vibrissaphora leishanensis | | synonym | +446415 | Argentina silus (Ascanius, 1775) | | authority | +446415 | Argentina silus | | scientific name | +446415 | Atlantic argentine | | common name | +446415 | greater argentine | | genbank common name | +446415 | Salmo silus Ascanius, 1775 | | authority | +446415 | Salmo silus | | synonym | +446489 | Australocrinia riparia | | synonym | +446489 | Crinia riparia Littlejohn and Martin, 1965 | | authority | +446489 | Crinia riparia | | scientific name | +446489 | Flinders Range froglet | | genbank common name | +446489 | Littlejohnophryne riparia | | synonym | +446489 | Ranidella riparia | | synonym | +446489 | streambank froglet | | common name | +446501 | Plataplochilus | | scientific name | +446502 | Aplocheilichthys ngaensis | | synonym | +446502 | aplochilichthys ngaensis | | common name | +446502 | Haplochilichthys ngaensis Ahl, 1924 | | authority | +446502 | Haplochilichthys ngaensis | | synonym | +446502 | Nga lampeye | | genbank common name | +446502 | Plaplochilus ngaensis | | synonym | +446502 | Plataplochilus ngaensis (Ahl, 1924) | | authority | +446502 | Plataplochilus ngaensis | | scientific name | +446502 | Procatopus ngaensis | | synonym | +447134 | Myodes Pallas, 1811 | | authority | +447134 | Myodes | | scientific name | +447135 | bank vole | | common name | +447135 | Bank vole | | genbank common name | +447135 | Clethrionomys glareolus | | synonym | +447135 | Clethrionomys glareolus (von Schreber, 1780) | | authority | +447135 | Mus glareolus Schreber, 1780 | | authority | +447135 | Mus glareolus | | synonym | +447135 | Myodes glareolus | | scientific name | +447236 | Parnassius | Parnassius | scientific name | +447236 | Parnassius (Parnassius) | | synonym | +447920 | Andropadus nigriceps (Shelley, 1889) | | authority | +447920 | Andropadus nigriceps | | synonym | +447920 | Andropadus tephrolaemus nigriceps | | synonym | +447920 | Arizelocichla nigriceps | | scientific name | +447920 | Eastern mountain greenbul | | genbank common name | +447920 | Mountain greenbul | | common name | +447920 | Xenocichla nigriceps Shelley, 1889 | | authority | +447920 | Xenocichla nigriceps | | synonym | +448029 | Argyrosomus japonicus | | scientific name | +448029 | Argyrosomus japonicus (Temminck & Schlegel, 1843) | | authority | +448029 | dusky kob | dusky kob | common name | +448029 | dusky meagre | | common name | +448029 | Japanese meagre | | common name | +448029 | kingfish | | common name | +448029 | mulloway | | genbank common name | +448029 | Nibea japonica | | synonym | +448029 | Sciaena japonica | | synonym | +448039 | Gobius echinocephalus Ruppell, 1830 | | authority | +448039 | Gobius echinocephalus | | synonym | +448039 | Paragobiodon echinocephalus (Ruppell, 1830) | | authority | +448039 | Paragobiodon echinocephalus | | scientific name | +448039 | redhead coral goby | | common name | +448039 | redhead goby | | genbank common name | +448039 | warty-headed goby | | common name | +448113 | Dawei frog | | genbank common name | +448113 | Huia tiannanensis | | synonym | +448113 | Odorrana tiannanensis | | scientific name | +448113 | Odorrana tiannanensis (Yang and Li, 1980) | | acronym | +448113 | Rana tiannanensis | | synonym | +448113 | Rana tiannanensis Yang & Li, 1980 | | authority | +448113 | Tiannan odorous frog | | common name | +448114 | Amolops tormotus | | synonym | +448114 | Amolops tormotus (Wu, 1977) | | authority | +448114 | Anhui sucker frog | | common name | +448114 | concave-eared torrent frog | | genbank common name | +448114 | Odorrana tormota | | scientific name | +448114 | Odorrana tormota (Wu, 1977) | | authority | +448114 | Rana tormotus | | synonym | +448114 | Rana tormotus Wu, 1977 | | authority | +448114 | Wurana tormota | | synonym | +448381 | chevron skink | | genbank common name | +448381 | Lygosoma homalonotum Boulenger, 1906 | | authority | +448381 | Lygosoma homalonotum | | synonym | +448381 | New Zealand chevron skink | | common name | +448381 | Oligosoma homalonotum Boulenger, 1906 | | authority | +448381 | Oligosoma homalonotum | | scientific name | +448438 | black whiskered frog | | common name | +448438 | Eleutherodactylus dimidiatus (Cope, 1862) | | authority | +448438 | Eleutherodactylus dimidiatus | | scientific name | +448438 | Euhyas dimidiata | | synonym | +448438 | Hylodes dimidiatus Cope, 1862 | | authority | +448438 | Hylodes dimidiatus | | synonym | +448438 | miniature robber frog | | genbank common name | +448469 | Eleutherodactylus luteolus | | scientific name | +448469 | Euhyas luteola | | synonym | +448469 | Hylodes luteolus | | synonym | +448469 | light robber frog | | genbank common name | +448469 | Litoria luteola Gosse, 1851 | | authority | +448469 | Litoria luteola | | synonym | +448469 | little yellow tree-frog | | common name | +448482 | Eleutherodactylus pinarensis Dunn, 1926 | | authority | +448482 | Eleutherodactylus pinarensis | | scientific name | +448482 | Euhyas pinarensis | | synonym | +448482 | Isla de Pinos robber frog | | genbank common name | +448482 | Pinos robber frog | | common name | +448486 | Bahamian frog | | common name | +448486 | Eleutherodactylus ricordii (Dumeril & Bibron, 1841) | | authority | +448486 | Eleutherodactylus ricordii | | scientific name | +448486 | Euhyas ricordii | | synonym | +448486 | Hylodes ricordii Dumeril & Bibron, 1841 | | authority | +448486 | Hylodes ricordii | | synonym | +448486 | Ricordi's robber frog | | genbank common name | +448676 | Eleutherodactylus guentheri | | synonym | +448676 | Guenther's frog | | common name | +448676 | Hylodes guentheri | | synonym | +448676 | Hylodes guntheri Steindachner, 1864 | | authority | +448676 | Hylodes guntheri | | synonym | +448676 | Ischnocnema guentheri | | scientific name | +448676 | Ischnocnema guentheri (Steindachner, 1864) | | authority | +448676 | Steindachner's robber frog | | genbank common name | +449102 | Mucubatrachus | | synonym | +449102 | Paramophrynella | | synonym | +449102 | Pristimantis | | scientific name | +449221 | Craugastor sandersoni (Schmidt, 1941) | | authority | +449221 | Craugastor sandersoni | | scientific name | +449221 | Eleutherodactylus sandersoni Schmidt, 1941 | | authority | +449221 | Eleutherodactylus sandersoni | | synonym | +449221 | Sanderson's rainfrog | | common name | +449221 | Sanderson's streamfrog | | genbank common name | +451696 | Opsaridium | | scientific name | +452076 | Annamese snakehead | | common name | +452076 | Channa stewartii (Playfair, 1867) | | authority | +452076 | Channa stewartii | | scientific name | +452076 | golden snakehead | | genbank common name | +452076 | Ophiocephalus stewartii Playfair, 1867 | | authority | +452076 | Ophiocephalus stewartii | | synonym | +452081 | Channa diplogramma (Day, 1865) | | authority | +452081 | Channa diplogramma | | scientific name | +452081 | Channa diplogramme (Day, 1865) | | authority | +452081 | Channa diplogramme | | synonym | +452081 | Indian giant snakehead | | common name | +452081 | Malabar snakehead | | genbank common name | +452081 | Ophiocephalus diplogramma Day, 1865 | | authority | +452081 | Ophiocephalus diplogramma | | synonym | +452646 | American mink | | genbank common name | +452646 | mink | mink | common name | +452646 | Mustela vison | | synonym | +452646 | Mustela vison von Schreber, 1776 | | authority | +452646 | Neogale vison | | scientific name | +452646 | Neogale vison (von Schreber, 1776) | | authority | +452646 | Neovison vison | | synonym | +453924 | Colorado cutthroat trout | | genbank common name | +453924 | Colorado River cutthroat trout | | common name | +453924 | Oncorhynchus clarkii pleuriticus (Cope, 1872) | | authority | +453924 | Oncorhynchus clarkii pleuriticus | | scientific name | +453924 | Oncorhynchus clarki pleuriticus | | synonym | +454142 | Carribean red snapper | | common name | +454142 | Lutjanus purpureus (Poey, 1866) | | authority | +454142 | Lutjanus purpureus | | scientific name | +454142 | Mesoprion purpureus Poey, 1866 | | authority | +454142 | Mesoprion purpureus Poey, 1876 | | authority | +454142 | Mesoprion purpureus | | synonym | +454142 | southern red snapper | | genbank common name | +454751 | Ommatotriton | | scientific name | +455156 | Chilean flounder | | common name | +455156 | fine flounder | | genbank common name | +455156 | Paralichthys adspersus | | scientific name | +455156 | Paralichthys adspersus (Steindachner, 1867) | | authority | +455156 | Pseudorhombus adspersus | | synonym | +457511 | Choi's spiny loach | | genbank common name | +457511 | Cobitis choii Kim & Son, 1984 | | authority | +457511 | Cobitis choii | | scientific name | +457511 | Iksookimia choii | | synonym | +457511 | Miho spine loach | | common name | +458026 | flatiron fish | | common name | +458026 | Grimaldia grimaldii | | synonym | +458026 | Grimaldia grimaldi | | synonym | +458026 | Grimaldi's barreleye | | common name | +458026 | mirrorbelly | | genbank common name | +458026 | Monacoa grimaldii | | scientific name | +458026 | Monacoa grimaldii (Zugmayer, 1911) | | authority | +458026 | Monacoa grimaldi | | synonym | +458026 | Opisthoproctus grimaldii | | synonym | +458026 | Opisthoproctus grimaldii Zugmayer, 1911 | | authority | +458604 | Raneya | | scientific name | +458605 | banded cusk-eel | | common name | +458605 | banded cusk eel | | genbank common name | +458605 | congro | congro | common name | +458605 | minami-shimaashiro | | common name | +458605 | Ophidium brasiliense Kaup, 1856 | | authority | +458605 | Ophidium brasiliense | | synonym | +458605 | Raneya brasiliensis (Kaup, 1856) | | authority | +458605 | Raneya brasiliensis | | scientific name | +460200 | Corn bunting | | genbank common name | +460200 | Emberiza calandra Linnaeus, 1758 | | authority | +460200 | Emberiza calandra | | scientific name | +460200 | Grauammer | | common name | +460200 | Miliaria calandra | | synonym | +460622 | Gonatodes albogularis Dumeril & Bibron, 1836 | | authority | +460622 | Gonatodes albogularis | | scientific name | +460622 | Gymnodactylus albogularis Dumeril & Bibron, 1836 | | authority | +460622 | Gymnodactylus albogularis | | synonym | +460622 | white-throated gecko | | common name | +460622 | yellow-headed gecko | | genbank common name | +461231 | Colluricincla tenebrosa | | scientific name | +461231 | Colluricincla umbrina (Reichenow, 1915) | | authority | +461231 | Colluricincla umbrina | | synonym | +461231 | Melanorhectes umbrinus Reichenow, 1915 | | authority | +461231 | Melanorhectes umbrinus | | synonym | +461231 | morningbird | | common name | +461231 | Pachycephala tenebrosa Rothschild, 1911 | | authority | +461231 | Pachycephala tenebrosa | | synonym | +461231 | Palau morningbird | | genbank common name | +461231 | Pitohui tenebrosus (Hartlaub & Finsch, 1868) | | authority | +461231 | Pitohui tenebrosus | | synonym | +461231 | Sooty shrike-thrush | | common name | +461241 | Psophodes | | scientific name | +461284 | Fujian Asian toad | | genbank common name | +461284 | Fujian metacarpal-tubercled toad | | common name | +461284 | Leptobrachella liui (Fei & Ye, 1990) | | authority | +461284 | Leptobrachella liui | | scientific name | +461284 | Leptolalax liui Fei & Ye, 1990 | | authority | +461284 | Leptolalax liui Fei & Ye, 1991 | | authority | +461284 | Leptolalax liui | | synonym | +461400 | Aeorestes egregius (Peters, 1871) | | authority | +461400 | Aeorestes egregius | | scientific name | +461400 | Atalapha egregia Peters, 1870 | | authority | +461400 | Atalapha egregia | | synonym | +461400 | big red bat | | common name | +461400 | giant red bat | | genbank common name | +461400 | Lasiurus egregius | | synonym | +461409 | Marmosa invicta Goldman, 1912 | | authority | +461409 | Marmosa invicta | | synonym | +461409 | Marmosops invictus (Goldman, 1912) | | authority | +461409 | Marmosops invictus | | scientific name | +461409 | Panama slendeer opossum | | genbank common name | +461409 | slaty slender mouse opossum | | common name | +462318 | Gracixalus jinxiuensis (Hu, 1978) | | authority | +462318 | Gracixalus jinxiuensis | | scientific name | +462318 | Jingxiu small treefrog | | common name | +462318 | Jinxiu bubble-nest frog | | genbank common name | +462318 | Kurixalus jinxiuensis | | synonym | +462318 | Philautus jinxiuensis Hu, 1978 | | authority | +462318 | Philautus jinxiuensis | | synonym | +462319 | Chirixalus romeri | | synonym | +462319 | Chiromantis romeri | | synonym | +462319 | Liuixalus romeri | | scientific name | +462319 | Philautus romeri Smith, 1953 | | authority | +462319 | Philautus romeri | | synonym | +462319 | Romer's bubble-nest frog | | genbank common name | +462319 | Romer's small treefrog | | common name | +462321 | Baoxing treefrog | | common name | +462321 | Dugrite's whipping frog | | common name | +462321 | Ingerixalus dugritei | | synonym | +462321 | Polypedates dugritei David, 1872 | | authority | +462321 | Polypedates dugritei | | synonym | +462321 | Rhacophorus dugritei (David, 1872) | | authority | +462321 | Rhacophorus dugritei | | synonym | +462321 | Sichuan whipping frog | | genbank common name | +462321 | Zhangixalus dugritei (David, 1872) | | authority | +462321 | Zhangixalus dugritei | | scientific name | +462322 | brown-folded treefrog | | common name | +462322 | Fea's treefrog | | common name | +462322 | Ingerixalus feae | | synonym | +462322 | Polypedates feae | | synonym | +462322 | Rhacophorus feae Boulenger, 1893 | | authority | +462322 | Rhacophorus feae | | synonym | +462322 | Thao whipping frog | | genbank common name | +462322 | Zhangixalus feae (Boulenger, 1893) | | authority | +462322 | Zhangixalus feae | | scientific name | +462322 | Zhangixalus sp. f TTN-2020 | | includes | +462324 | Gunther's tree frog | | common name | +462324 | Nepal flying frog | | genbank common name | +462324 | Rhacophorus maximus Gunther, 1858 | | authority | +462324 | Rhacophorus maximus | | synonym | +462324 | yellow-spotted tree frog | yellow-spotted tree frog | common name | +462324 | Zhangixalus maximus (Gunther, 1858) | | authority | +462324 | Zhangixalus maximus | | scientific name | +462328 | Ingerixalus omeimontis | | synonym | +462328 | Omei treefrog | | common name | +462328 | Omei tree frog | | genbank common name | +462328 | Omei whipping frog | | common name | +462328 | Polypedates omeimontis Stejneger, 1924 | | authority | +462328 | Polypedates omeimontis | | synonym | +462328 | Rhacophorus omeimontis (Stejneger, 1924) | | authority | +462328 | Rhacophorus omeimontis | | synonym | +462328 | Zhangixalus omeimontis | | scientific name | +462328 | Zhangixalus omeimontis (Stejneger, 1924) | | authority | +463597 | Cichla argyrea Forster, 1801 | | authority | +463597 | Cichla argyrea | | synonym | +463597 | common mojarra | | common name | +463597 | common silver-biddy | | genbank common name | +463597 | Diapterus oyena | | synonym | +463597 | Gerres argyreus (Forster, 1801) | | authority | +463597 | Gerres argyreus | | synonym | +463597 | Gerres oyena (Fabricius, 1775) | | authority | +463597 | Gerres oyena | | scientific name | +463597 | Labrus oyena | | synonym | +463597 | Smaris oyena | | synonym | +463597 | Xystaema oyena | | synonym | +464359 | Apantesis doris (Boisduval, 1869) | | authority | +464359 | Apantesis doris | | scientific name | +464359 | Chelonia doris Boisduval, 1869 | | authority | +464359 | Chelonia doris | | synonym | +464359 | Doris tiger moth | | genbank common name | +464359 | Grammia doris (Boisduval, 1869) | | authority | +464359 | Grammia doris | | synonym | +464359 | Michabo moth | | common name | +464373 | Apantesis phyllira (Drury, [1773]) | | authority | +464373 | Apantesis phyllira | | scientific name | +464373 | Bombyx phyllira Drury, 1773 | | authority | +464373 | Bombyx phyllira | | synonym | +464373 | Grammia phyllira (Drury, 1773) | | authority | +464373 | Grammia phyllira | | synonym | +464373 | Phyllira moth | | common name | +464373 | Phyllira tiger moth | | genbank common name | +464718 | Apantesis Harris, 1841 | | authority | +464718 | Apantesis | | scientific name | +464718 | Grammia Rambur, 1866 | | authority | +464718 | Grammia | | synonym | +464718 | Holarctia | | synonym | +464718 | Mimarctia | | synonym | +464718 | Orodemnias | | synonym | +464720 | Diacrisia Hubner, 1819 | | authority | +464720 | Diacrisia | | scientific name | +464720 | Rhyparia Hubner, 1820 | | authority | +464720 | Rhyparia | | synonym | +464720 | Rhyparioides Butler, 1877 | | authority | +464720 | Rhyparioides | | synonym | +464721 | clouded buff | | genbank common name | +464721 | clouded ermine | | common name | +464721 | Diacrisia sannio (Linnaeus, 1758) | | authority | +464721 | Diacrisia sannio | | scientific name | +464721 | Phalaena sannio Linnaeus, 1758 | | authority | +464721 | Phalaena sannio | | synonym | +464756 | Schizopyge | | scientific name | +465452 | Neodon Horsfield, 1849 | | authority | +465452 | Neodon | Neodon | scientific name | +466149 | Prognathodes | | scientific name | +467031 | Ara ambigua | | synonym | +467031 | Ara ambiguus (Bechstein, 1811) | | authority | +467031 | Ara ambiguus | | scientific name | +467031 | Buffon's macaw | | common name | +467031 | great green macaw | | genbank common name | +467031 | Psittacus ambiguus Bechstein, 1811 | | authority | +467031 | Psittacus ambiguus | | synonym | +467706 | Adelphobates captivus (Myers, 1982) | | authority | +467706 | Adelphobates captivus | | synonym | +467706 | Dendrobates captivus Myers, 1982 | | authority | +467706 | Dendrobates captivus | | synonym | +467706 | Excidobates captivus | | scientific name | +467706 | Ranitomeya captiva | | synonym | +467706 | Rio Santiago poison frog | | genbank common name | +467706 | Santiago poison frog | | common name | +467740 | Arthroleptis parvulus Boulenger, 1905 | | authority | +467740 | Arthroleptis parvulus | | synonym | +467740 | dwarf puddle frog | dwarf puddle frog | genbank common name | +467740 | Loanda river frog | | common name | +467740 | Phrynobatrachus parvulus (Boulenger, 1905) | | authority | +467740 | Phrynobatrachus parvulus | | scientific name | +467741 | Arthroleptis rungwensis Loveridge, 1932 | | authority | +467741 | Arthroleptis rungwensis | | synonym | +467741 | Phrynobatrachus rungwensis (Loveridge, 1932) | | authority | +467741 | Phrynobatrachus rungwensis | | scientific name | +467741 | Rungwe puddle frog | | genbank common name | +467741 | Rungwe river frog | | common name | +467742 | Arthroleptis ukingensis Loveridge, 1932 | | authority | +467742 | Arthroleptis ukingensis | | synonym | +467742 | Phrynobatrachus ukingensis (Loveridge, 1932) | | authority | +467742 | Phrynobatrachus ukingensis | | scientific name | +467742 | Ukinga puddle frog | Ukinga puddle frog | common name | +467742 | Ukinga river frog | | genbank common name | +467775 | black-ball sponge | | genbank common name | +467775 | Ircinia strobilina (Lamarck, 1816) | | authority | +467775 | Ircinia strobilina | | scientific name | +467775 | pillow stinking sponge | | common name | +467775 | Spongia strobilina Lamarck, 1816 | | authority | +467775 | Spongia strobilina | | synonym | +469796 | Asiatic mouflon | | genbank common name | +469796 | Ovis aries orientalis | | synonym | +469796 | Ovis orientalis Gmelin, 1774 | | authority | +469796 | Ovis orientalis | | scientific name | +471713 | Cacatua leadbeateri | | synonym | +471713 | Cacatua leadbeateri (Vigors, 1831) | | authority | +471713 | Lophochroa leadbeateri | | scientific name | +471713 | Lophochroa leadbeateri (Vigors, 1831) | | authority | +471713 | Major Mitchell's cockatoo | | genbank common name | +471713 | pink cockatoo | | common name | +471713 | Plyctolophus leadbeateri | | synonym | +471713 | Plyctolophus leadbeateri Vigors, 1831 | | authority | +472225 | Acanthascus dawsoni (Lambe, 1892) | | authority | +472225 | Acanthascus dawsoni | | scientific name | +472225 | Acanthascus (Rhabdocalyptus) dawsoni (Lambe, 1892) | | authority | +472225 | Acanthascus (Rhabdocalyptus) dawsoni | | synonym | +472225 | Bathydorus dawsoni Lambe, 1892 | | synonym | +472225 | Bathydorus dawsoni Lambe, 1893 | | authority | +472225 | Bathydorus dawsoni | | synonym | +472225 | boot sponge | | genbank common name | +472225 | Rhabdocalyptus dawsoni (Lambe, 1892) | | authority | +472225 | Rhabdocalyptus dawsoni | | synonym | +472225 | sharp-lipped boot sponge | | common name | +472706 | Micaelamys | | scientific name | +472707 | Aethomys namaquensis | | synonym | +472707 | Micaelamys namaquensis | | scientific name | +472707 | Micaelamys namaquensis (Smith, 1834) | | authority | +472707 | Namaqua Micaelamys | | genbank common name | +472707 | Namaqua rock rat | | common name | +472711 | Hellwald's spiny rat | | common name | +472711 | Hellwald's Sulawesi Maxomys | | genbank common name | +472711 | Maxomys hellwaldii (Jentink, 1878) | | authority | +472711 | Maxomys hellwaldii | | scientific name | +472711 | Maxomys hellwaldi | | synonym | +473129 | Kerria | Kerria | scientific name | +473129 | Kerria Targioni-Tozzetti, 1884 | Kerria Targioni-Tozzetti, 1884 | authority | +473130 | Coccus lacca | | synonym | +473130 | commercial lac insect | | common name | +473130 | common lac insect | | common name | +473130 | common lac scale | | genbank common name | +473130 | Kerria lacca (Kerr, 1782) | | authority | +473130 | Kerria lacca | | scientific name | +473183 | Epichoristodes Diakonoff, 1960 | | authority | +473183 | Epichoristodes | | scientific name | +473184 | African carnation tortrix | | common name | +473184 | Depressaria acerbella | | synonym | +473184 | Depressaria acerbella Walker, 1864 | | authority | +473184 | Epichoristodes acerbella | | scientific name | +473184 | Epichoristodes acerbella (Walker, 1864) | | authority | +473184 | South African carnation tortrix | | genbank common name | +473345 | Antimora | | scientific name | +473346 | Antimora rostrata (Guenther, 1878) | | authority | +473346 | Antimora rostrata | | scientific name | +473346 | blue antimora | | genbank common name | +473346 | blue hake | | common name | +473346 | flatnose codling | | common name | +473346 | Haloporphyrus rostratus Gunther, 1878 | | authority | +473346 | Haloporphyrus rostratus | | synonym | +473346 | long-finned cod | | common name | +473346 | violet cod | | common name | +473458 | Guineafowl moray | | common name | +473458 | Gymnothorax meleagris | | scientific name | +473458 | Gymnothorax meleagris (Shaw, 1795) | | authority | +473458 | Lycodontis meleagris | | synonym | +473458 | Muraena meleagris | | synonym | +473458 | spotted moray | spotted moray | common name | +473458 | turkey moray | | genbank common name | +473458 | white-mouth moray | | common name | +474494 | Ceratalaspis | | scientific name | +475180 | Gymnapogon | | scientific name | +476017 | Hyperolius marmoratus aposematicus Laurent, 1951 | | authority | +476017 | Hyperolius marmoratus aposematicus | | synonym | +476017 | Hyperolius marmoratus Rapp, 1842 | | authority | +476017 | Hyperolius marmoratus | | scientific name | +476017 | Hyperolius viridiflavus aposematicus | | synonym | +476017 | Hyperolius viridiflavus marmoratus | | synonym | +476017 | Hyperolius viridiflavus verrucosus | | synonym | +476017 | marbled reed frog | | common name | +476017 | marbled rush frog | | genbank common name | +476017 | painted reed frog | | common name | +476017 | variegated rush frog | | common name | +476251 | Isodactylium schrenckii | | synonym | +476251 | Salamandrella keyserlingii tridactyla | | synonym | +476251 | Salamandrella keyserlingii var. tridactyla Nikolskii, 1906 | | authority | +476251 | Salamandrella keyserlingii var. tridactyla | | synonym | +476251 | Salamandrella schrenckii (Strauch, 1870) | | authority | +476251 | Salamandrella schrenckii | | synonym | +476251 | Salamandrella tridactyla Nikolskii, 1905 | | authority | +476251 | Salamandrella tridactyla (Nikolskii, 1906) | | authority | +476251 | Salamandrella tridactyla | | scientific name | +476251 | Schrenck Siberian newt | | common name | +476251 | Schrenck's Siberian newt | | genbank common name | +476506 | cave prickly gecko | | genbank common name | +476506 | desert cave gecko | | common name | +476506 | Heteronota spelea Kluge, 1963 | | authority | +476506 | Heteronota spelea | | synonym | +476506 | Heteronotia spelea Kluge, 1963 | | authority | +476506 | Heteronotia spelea | | scientific name | +477932 | Corvus capellanus Sclater, 1877 | | authority | +477932 | Corvus capellanus | | synonym | +477932 | Corvus cornix capellanus | | scientific name | +477932 | Corvus cornix capellanus Sclater, PL, 1877 | | authority | +477932 | Corvus corone capellanus | | synonym | +477932 | Iraqi pied crow | | common name | +477932 | Mesopotamian crow | | genbank common name | +478982 | Boulenger's burrowing toad | | common name | +478982 | Bufo fergusonii | | synonym | +478982 | Bufo scaber Schneider, 1799 | | authority | +478982 | Bufo scaber | | synonym | +478982 | Duttaphrynus scaber (Schneider, 1799) | | authority | +478982 | Duttaphrynus scaber | | scientific name | +478982 | Ferguson's toad | | genbank common name | +479651 | Chelon affinis | | synonym | +479651 | eastern keelback mullet | | genbank common name | +479651 | grey mullet | | common name | +479651 | Liza affinis (Gunther, 1861) | | authority | +479651 | Liza affinis | | synonym | +479651 | Mugil affinis | | synonym | +479651 | Planiliza affinis (Gunther, 1861) | | authority | +479651 | Planiliza affinis | | scientific name | +479705 | Antechinus bilarni Johnson, 1954 | | authority | +479705 | Antechinus bilarni | | synonym | +479705 | broad-footed marsupial mouse | broad-footed marsupial mouse | common name | +479705 | Parantechinus bilarni | | synonym | +479705 | Pseudantechinus bilarni | | scientific name | +479705 | Sandstone dibbler | | genbank common name | +480210 | Austrochaperina | | scientific name | +481308 | Loxostege | | scientific name | +481309 | beet webworm | | genbank common name | +481309 | diamond-spot pearl | | common name | +481309 | Loxostege sticticalis (Linnaeus, 1761) | | authority | +481309 | Loxostege sticticalis | | scientific name | +481309 | Pyralis sticticalis Linnaeus, 1761 | | authority | +481309 | Pyralis sticticalis | | synonym | +481309 | Pyrausta sticticalis | | synonym | +481462 | Gasterosteus aculeatus williamsoni Girard, 1854 | | authority | +481462 | Gasterosteus aculeatus williamsoni | | scientific name | +481462 | Gasterosteus williamsoni | | synonym | +481462 | unarmored three-spined stickleback | | common name | +481462 | unarmored threespine stickleback | | genbank common name | +482143 | Hydromantes strinatii Aellen, 1958 | | authority | +482143 | Hydromantes strinatii | | synonym | +482143 | Speleomantes strinatii (Aellen, 1958) | | authority | +482143 | Speleomantes strinatii | | scientific name | +482143 | Strinati's cave salamander | | genbank common name | +482143 | western cave salamander | | common name | +482374 | Ornipholidotos | | scientific name | +482375 | large glasswing | | genbank common name | +482375 | Ornipholidotos peucetia (Hewitson, 1866) | | authority | +482375 | Ornipholidotos peucetia | | scientific name | +482375 | Pentila peucetia Hewitson, 1866 | | authority | +482375 | Pentila peucetia | | synonym | +482375 | white mimic | | common name | +482536 | Galeopterus | | scientific name | +482537 | Cynocephalus variegatus | | synonym | +482537 | Galeopithecus variegatus Audebert, 1799 | | authority | +482537 | Galeopithecus variegatus | | synonym | +482537 | Galeopterus variegatus | | scientific name | +482537 | Malayan flying lemur | | common name | +482537 | Sunda flying lemur | | genbank common name | +482914 | fantail mullet | fantail mullet | common name | +482914 | Mugil gyrans (Jordan & Gilbert, 1884) | | authority | +482914 | Mugil gyrans | | scientific name | +482914 | Querimana gyrans Jordan & Gilbert, 1884 | | authority | +482914 | Querimana gyrans | | synonym | +482914 | whirligig mullet | | genbank common name | +483428 | Elephantulus revoilii (Huet, 1881) | | authority | +483428 | Elephantulus revoili | | includes | +483428 | Elephantulus revoilii | | synonym | +483428 | Galegeeska revoilii (Huet, 1881) | | authority | +483428 | Galegeeska revoilii | | scientific name | +483428 | Macrocelides revoilii Huet, 1881 | | authority | +483428 | Macrocelides revoilii | | synonym | +483428 | Somali elephant shrew | | genbank common name | +483428 | Somali sengi | | common name | +484165 | Caspian kutum | | genbank common name | +484165 | Caspian whitefish | | common name | +484165 | kutum | kutum | common name | +484165 | Leuciscus frisii kutum Kamensky, 1901 | | authority | +484165 | Leuciscus frisii kutum | | synonym | +484165 | Rutilus frisii kutum (Kamensky, 1901) | | authority | +484165 | Rutilus frisii kutum | | synonym | +484165 | Rutilus kutum | | scientific name | +485636 | Hethemia | | scientific name | +485637 | Hethemia pistasciaria (Guenee, 1857) | | authority | +485637 | Hethemia pistasciaria | | scientific name | +485637 | Nemoria pistasciaria Guenee, 1857 | | authority | +485637 | Nemoria pistasciaria | | synonym | +485637 | pistachio emerald | | common name | +485637 | pistachio emerald moth | | genbank common name | +486151 | Chromis notata | | scientific name | +486151 | Chromis notata (Temminck & Schlegel, 1843) | | authority | +486151 | Heliases notatus | | synonym | +486151 | Heliases notatus Temminck & Schlegel, 1843 | | authority | +486151 | pearl-spot chromis | | genbank common name | +486151 | whitesaddled reeffish | | common name | +486220 | Boulenger's platymantis | | common name | +486220 | Boulenger's wrinkled ground frog | | genbank common name | +486220 | Cornufer boulengeri Boettger, 1892 | | authority | +486220 | Cornufer boulengeri | | scientific name | +486220 | Platymantis boulengeri (Boettger, 1892) | | authority | +486220 | Platymantis boulengeri | | synonym | +486220 | Rana boulengeri | Rana boulengeri | synonym | +486220 | Rana (Platymantis) boulengeri | | synonym | +486473 | Speleomantes | | scientific name | +487618 | celestial pearl danio | | genbank common name | +487618 | Celestichthys margaritatus Roberts, 2007 | | authority | +487618 | Celestichthys margaritatus | | synonym | +487618 | Danio (Celestichthys) margaritatus | | synonym | +487618 | Danio margaritatus (Roberts, 2007) | | authority | +487618 | Danio margaritatus | | scientific name | +487618 | galaxy rasbora | | common name | +487618 | Microrasbora sp. Galaxy | | includes | +488224 | Java Indonesian treefrog | | common name | +488224 | Nyctixalus margaritifer Boulenger, 1882 | | authority | +488224 | Nyctixalus margaritifer | | scientific name | +488224 | Nyctixalus pictus margaritifer | | synonym | +488224 | pearly tree frog | | genbank common name | +488224 | Philautus pictus margaritifer | | synonym | +488246 | Baram whipping frog | | genbank common name | +488246 | Bongao bubble-nest frog | | common name | +488246 | dark-eared treefrog | | common name | +488246 | forest bush frog | | common name | +488246 | Polypedates macrotis (Boulenger, 1891) | | authority | +488246 | Polypedates macrotis | | scientific name | +488246 | Rhacophorus macrotis Boulenger, 1891 | | authority | +488246 | Rhacophorus macrotis | | synonym | +488249 | Ghatixalus | | scientific name | +488252 | Ghatixalus variabilis (Jerdon, 1854) | | authority | +488252 | Ghatixalus variabilis | | scientific name | +488252 | green frog of the Neelgherries | | common name | +488252 | green tree frog | green tree frog | genbank common name | +488252 | Polypedates variabilis Jerdon, 1853 | | authority | +488252 | Polypedates variabilis Jerdon, 1854 | | authority | +488252 | Polypedates variabilis | | synonym | +488252 | Rhacophorus variabilis (Jerdon, 1854) | | authority | +488252 | Rhacophorus variabilis | | synonym | +490056 | Cryptophyllobates | | synonym | +490056 | Hyloxalus | | scientific name | +490305 | Makalata | | scientific name | +490727 | Tandanus | | scientific name | +491159 | Eupsophus wettsteini Parker, 1932 | | authority | +491159 | Eupsophus wettsteini | | synonym | +491159 | LaPlaca's Andes frog | | common name | +491159 | Microkayla wettsteini (Parker, 1932) | | authority | +491159 | Microkayla wettsteini | | scientific name | +491159 | Niceforonia wettsteini | | synonym | +491159 | Phrynopus laplacai (Cei, 1968) | | authority | +491159 | Phrynopus laplacai | | synonym | +491159 | Phrynopus wettsteini (Parker, 1932) | | authority | +491159 | Phrynopus wettsteini | | synonym | +491159 | Psychrophrynella wettsteini (Parker, 1932) | | authority | +491159 | Psychrophrynella wettsteini | | synonym | +491159 | Wettstein's Andes frog | | genbank common name | +491200 | Anser fabalis middendorffii | | scientific name | +491200 | Anser fabalis middendorffii Severtsov, 1873 | | authority | +491200 | Anser middendorffii | | includes | +491200 | Eastern taiga bean goose | | genbank common name | +491200 | Middendorff's bean goose | | common name | +491871 | Chiromyscus | | scientific name | +491955 | Motacilla caprata Linnaeus, 1766 | | authority | +491955 | Motacilla caprata | | synonym | +491955 | pied bush chat | | common name | +491955 | pied bushchat | | genbank common name | +491955 | Saxicola caprata (Linnaeus, 1766) | | authority | +491955 | Saxicola caprata | | scientific name | +492764 | Leucania inferens | | synonym | +492764 | Leucania inferens Walker, 1856 | | authority | +492764 | pink stem borer | | common name | +492764 | purple stem borer | | genbank common name | +492764 | Sesamia inferens | | scientific name | +492764 | Sesamia inferens (Walker, 1856) | | authority | +492764 | sugarcane pink borer | | common name | +493409 | arrowfin gobies | | genbank common name | +493409 | Oxyurichthys | | scientific name | +493413 | frogface goby | | genbank common name | +493413 | Gobius papuensis | | synonym | +493413 | Oxyurichthys papuensis | | scientific name | +493413 | Oxyurichthys papuensis (Valenciennes, 1837) | | authority | +493413 | spangled arrowfin goby | | common name | +495042 | Cetengraulis | | scientific name | +495824 | Apristurus platyrhynchus | | scientific name | +495824 | Apristurus platyrhynchus (Tanaka, 1909) | | authority | +495824 | Apristurus sp. B PRL-1994 | | includes | +495824 | Apristurus sp. B RDW-2008 | | includes | +495824 | Borneo catshark | | genbank common name | +495824 | flatnose catshark | | common name | +495824 | Scyliorhinus platyrhynchus | | synonym | +495824 | Scyliorhinus platyrhynchus Tanaka, 1909 | | authority | +495863 | Bengal whipray | Bengal whipray | common name | +495863 | Brevitrygon walga | | scientific name | +495863 | dwarf whipray | | genbank common name | +495863 | Himantura walga (Mueller & Henle, 1841) | | authority | +495863 | Himantura walga | | synonym | +495863 | Trygon walga Mueller & Henle, 1841 | | authority | +495863 | Trygon walga | | synonym | +495865 | Hydrolagus n. sp. (aby MS) BOLD:AAB7269 | | includes | +495865 | Hydrolagus trolli Didier & Seret, 2002 | | authority | +495865 | Hydrolagus trolli | | scientific name | +495865 | pointy-nosed blue chimaera | | genbank common name | +495865 | Ray Troll's chimaera | | common name | +496013 | Glaucostegus | | scientific name | +496087 | Glyphis Agassiz, 1843 | | authority | +496087 | Glyphis | Glyphis | scientific name | +496089 | Hemipristis | | scientific name | +496090 | Dirrhizodon elongatus Klunzinger, 1871 | | authority | +496090 | Dirrhizodon elongatus | | synonym | +496090 | fossil shark | | common name | +496090 | Hemipristis elongata (Klunzinger, 1871) | | authority | +496090 | Hemipristis elongata | | scientific name | +496090 | snaggletooth shark | | genbank common name | +496415 | Dipturus maugeanus | | scientific name | +496415 | Dipturus maugenus (Last & Gledhill, 2007) | | authority | +496415 | Dipturus maugenus | | synonym | +496415 | Maugean skate | | common name | +496415 | Port Davey skate | | genbank common name | +496415 | Zearaja maugeana Last & Gledhill, 2007 | | authority | +496415 | Zearaja maugeana | | synonym | +497004 | Gonoproktopterus | | synonym | +497004 | Hypselobarbus | | scientific name | +498270 | Trimma | | scientific name | +498271 | Eviota caesiura okinawae Aoyagi, 1949 | | authority | +498271 | Eviota caesiura okinawae | | synonym | +498271 | Okinawa rubble goby | | genbank common name | +498271 | red-spotted dwarfgoby | | common name | +498271 | Trimma okinawae (Aoyagi, 1949) | | authority | +498271 | Trimma okinawae | | scientific name | +498517 | Clava | | scientific name | +498518 | Clava multicornis (Fabricius, 1775) | | authority | +498518 | Clava multicornis | | scientific name | +498518 | club-headed hydroid | | common name | +498518 | club hydroid | | genbank common name | +498518 | Hydra multicornis Fabricius, 1775 | | authority | +498518 | Hydra multicornis | | synonym | +499857 | Thyrsites | | scientific name | +499858 | barracouta | | common name | +499858 | Leionura atun | | synonym | +499858 | Scomber atun Euphrasen, 1791 | | authority | +499858 | Scomber atun | | synonym | +499858 | snoek | | genbank common name | +499858 | Thyrsites atun (Euphrasen, 1791) | | authority | +499858 | Thyrsites atun | | scientific name | +501720 | Baelama anchovy | | genbank common name | +501720 | Clupea baelama Fabricius, 1775 | | authority | +501720 | Clupea baelama | | synonym | +501720 | Engraulis baelama | | synonym | +501720 | hairfin anchovy | | common name | +501720 | little priest | | common name | +501720 | Scutengraulis baelama | | synonym | +501720 | Thrissina baelama | | synonym | +501720 | Thrissocles baelama | | synonym | +501720 | Thryssa baelama (Fabricius, 1775) | | authority | +501720 | Thryssa baelama | | scientific name | +505324 | Sigmops | | scientific name | +505396 | Callistoctopus | | scientific name | +505953 | Holomelina Herrich-Schaffer, 1855 | | authority | +505953 | Holomelina | | synonym | +505953 | Virbia | | scientific name | +505953 | Virbia Walker, 1854 | | authority | +505955 | Crocota ferruginosa | | synonym | +505955 | Crocota ferruginosa Walker, 1854 | | authority | +505955 | five-spotted holomelina | | common name | +505955 | Holomelina ferruginosa | | synonym | +505955 | Holomelina ferruginosa (Walker, 1854) | | authority | +505955 | rusty holomelina | | genbank common name | +505955 | Virbia ferruginosa | | scientific name | +505955 | Virbia ferruginosa (Walker, 1854) | | authority | +505961 | Big Mouth Cave salamander | | common name | +505961 | Gyrinophilus palleucus McCrady, 1954 | | authority | +505961 | Gyrinophilus palleucus | | scientific name | +505961 | pale salamander | | common name | +505961 | Pseudotriton palleucus | | synonym | +505961 | Sinking Cove cave salamander | | common name | +505961 | Tennessee cave salamander | | genbank common name | +507706 | Ameerega | | scientific name | +507971 | Ptilopsis | | scientific name | +507973 | Northern white-faced owl | | genbank common name | +507973 | Otus leucotis | | synonym | +507973 | Ptilopsis leucotis | | scientific name | +507973 | Ptilopsis leucotis (Temminck, 1820) | | authority | +507973 | Strix leucotis | | synonym | +507973 | Strix leucotis Temminck, 1820 | | authority | +507973 | white-faced scops-owl | | common name | +509078 | Baja California night snake | | common name | +509078 | Baja California nightsnake | | genbank common name | +509078 | Eridiphas slevini | | synonym | +509078 | Hypsiglena slevini | | scientific name | +509078 | Hypsiglena slevini Tanner, 1943 | | authority | +510768 | dwarf sucking catfish | | common name | +510768 | golden otocinclus | | common name | +510768 | Macrotocinclus affinis | | synonym | +510768 | midget sucker fish | | genbank common name | +510768 | Otocinclus affinis | | scientific name | +510768 | Otocinclus affinis Steindachner, 1877 | | authority | +512429 | Austrochaperina robusta Fry, 1912 | | authority | +512429 | Austrochaperina robusta | | scientific name | +512429 | chirping land frog | | genbank common name | +512429 | pealing chirper | | common name | +512429 | robust frog | robust frog | common name | +512429 | Sphenophryne robusta | | synonym | +512457 | Dendromanes achatinus | | synonym | +512457 | Hyla achatina | | synonym | +512457 | Hysaplesia achatina | | synonym | +512457 | Java chorus frog | | common name | +512457 | Javanese narrow-mouthed frog | | common name | +512457 | Java rice frog | | genbank common name | +512457 | Microhyla achatina | | scientific name | +512457 | Microhyla achatina Tschudi, 1838 | | authority | +512458 | Berdmore's chorus frog | | common name | +512458 | Berdmore's narrow-mouthed frog | | common name | +512458 | Diplopelma berdmorei | | synonym | +512458 | Engystoma berdmorei Blyth, 1856 | | authority | +512458 | Engystoma berdmorei | | synonym | +512458 | Microhyla berdmorei (Blyth, 1856) | | authority | +512458 | Microhyla berdmorei | | scientific name | +512458 | Microhyla malcolmi Cochran, 1927 | | authority | +512458 | Microhyla malcolmi | | synonym | +512458 | Pegu rice frog | | genbank common name | +512777 | dewfish | | common name | +512777 | eeltail catfish | | common name | +512777 | eel-tailed catfish | | genbank common name | +512777 | freshwater jewfish | | common name | +512777 | Plotosus tandanus | | synonym | +512777 | Tandan catfish | | common name | +512777 | Tandanus tandanus (Mitchell, 1838) | | authority | +512777 | Tandanus tandanus | | scientific name | +515824 | Callistoctopus minor (Sasaki, 1920) | | authority | +515824 | Callistoctopus minor | | scientific name | +515824 | Korean common octopus | | common name | +515824 | long arm octopus | | genbank common name | +515824 | Octopus minor | | synonym | +516037 | Sewellia Hora, 1932 | | authority | +516037 | Sewellia | Sewellia | scientific name | +516038 | Balitora lineolata | | synonym | +516038 | reticulated hillstream loach | | common name | +516038 | Sewellia lineolata | | scientific name | +516038 | Sewellia lineolata (Valenciennes, 1846) | | authority | +516038 | tiger hillstream loach | | genbank common name | +516811 | Barilius senegalensis Steindachner, 1870 | | authority | +516811 | Barilius senegalensis | | synonym | +516811 | Raiamas senegalensis | | scientific name | +516811 | Raiamas senegalensis (Steindachner, 1870) | | authority | +516811 | Senegal minnow | | genbank common name | +516811 | silver fish | | common name | +518105 | Culex pipiens complex | | scientific name | +520854 | glandular bush frog | | common name | +520854 | Ixalis glandulosa Jerdon, 1853 | | authority | +520854 | Ixalis glandulosa | | synonym | +520854 | Ixalus glandulosa | | synonym | +520854 | Philautus glandulosus (Jerdon, 1854) | | authority | +520854 | Philautus glandulosus | | synonym | +520854 | Raorchestes glandulosus | | scientific name | +520854 | Rhacophorus glandulosus | | synonym | +520854 | rough-skinned bush frog | | common name | +520854 | southern bubble-nest frog | | genbank common name | +520858 | Beddome's bubble-nest frog | | genbank common name | +520858 | Beddome's bush frog | | common name | +520858 | Ixalus beddomii Gunther, 1876 | | authority | +520858 | Ixalus beddomii | | synonym | +520858 | Philautus beddomii (Gunther, 1876) | | authority | +520858 | Philautus beddomii | | synonym | +520858 | Raorchestes beddomii | | scientific name | +520858 | Rhacophorus beddomii | | synonym | +520860 | Bombay bubble-nest frog | | genbank common name | +520860 | Castle Rock bush frog | | common name | +520860 | Ixalus bombayensis Annandale, 1919 | | authority | +520860 | Ixalus bombayensis | | synonym | +520860 | Konkan bush frog | | common name | +520860 | Maharashtra bush frog | | common name | +520860 | Philautus bombayensis (Annandale, 1919) | | authority | +520860 | Philautus bombayensis | | synonym | +520860 | Raorchestes bombayensis | | scientific name | +520860 | Rhacophorus bombayensis | | synonym | +520875 | Ixalus travancoricus Boulenger, 1891 | | authority | +520875 | Ixalus travancoricus | | synonym | +520875 | Philautus travancoricus (Boulenger, 1891) | | authority | +520875 | Philautus travancoricus | | synonym | +520875 | Raorchestes travancoricus | | scientific name | +520875 | Rhacophorus travancoricus | | synonym | +520875 | Travancore bubble-nest frog | | genbank common name | +520875 | Travancore bush frog | | common name | +520875 | Travancore tree frog | | common name | +521022 | Atlantic anchoveta | | genbank common name | +521022 | Cetengraulis edentulus (Cuvier, 1829) | | authority | +521022 | Cetengraulis edentulus | | scientific name | +521022 | Engraulis edentulus | | synonym | +521022 | tarpon fry | | common name | +521022 | toothless anchovy | | common name | +521022 | whalebone anchovy | | common name | +521099 | Calliurus punctulatus punctulatus Rafinesque, 1819 | | authority | +521099 | Calliurus punctulatus punctulatus | | synonym | +521099 | Micropterus punctulatus punctulatus (Rafinesque, 1819) | | authority | +521099 | Micropterus punctulatus punctulatus | | scientific name | +521099 | northern spotted bass | | genbank common name | +521099 | northern spotted blackbass | | common name | +521259 | Phoebastria | | scientific name | +521382 | Bolitoglossa robusta (Cope, 1894) | | authority | +521382 | Bolitoglossa robusta | | scientific name | +521382 | Magnadigita robusta | | synonym | +521382 | Oedipus robustus Cope, 1894 | | authority | +521382 | Oedipus robustus | | synonym | +521382 | ringtail salamander | | common name | +521382 | robust mushroomtongue salamander | | genbank common name | +521416 | Lampanyctus macdonaldi (Goode & Bean, 1896) | | authority | +521416 | Lampanyctus macdonaldi | | scientific name | +521416 | Nannobranchium macdonaldi Goode & Bean, 1896 | | authority | +521416 | Nannobranchium macdonaldi | | synonym | +521416 | Nanobrachium macdonaldi | | synonym | +521416 | rakery beaconlamp | | genbank common name | +521416 | rakery lanternfish | | common name | +521419 | brindled goby | brindled goby | common name | +521419 | Coryphopterus tortugae (Jordan, 1904) | | authority | +521419 | Coryphopterus tortugae | | scientific name | +521419 | Ctenogobius tortugae Jordan, 1904 | | authority | +521419 | Ctenogobius tortugae | | synonym | +521419 | patch-reef goby | | genbank common name | +525815 | Clossiana Reuss, 1920 | | authority | +525815 | Clossiana | | scientific name | +526129 | Centrolene ilex (Savage, 1967) | | authority | +526129 | Centrolene ilex | | synonym | +526129 | Centrolenella ilex Savage, 1967 | | authority | +526129 | Centrolenella ilex | | synonym | +526129 | ghost glass frog | | common name | +526129 | Limon giant glass frog | | genbank common name | +526129 | Sachatamia ilex (Savage, 1967) | | authority | +526129 | Sachatamia ilex | | scientific name | +526138 | Centrolenella albomaculata | | synonym | +526138 | Centrolenella albomaculata Taylor, 1949 | | authority | +526138 | Cochranella albomaculata | | synonym | +526138 | Cochranella albomaculata (Taylor, 1949) | | authority | +526138 | ranita de vidrio | | common name | +526138 | Sachatamia albomaculata | | scientific name | +526138 | Sachatamia albomaculata (Taylor, 1949) | | authority | +526138 | white-spotted cochran frog | | genbank common name | +526138 | yellow-flecked glassfrog | | common name | +530166 | Cerradomys | | scientific name | +532072 | Astrochelys Gray, 1873 | | authority | +532072 | Astrochelys | | scientific name | +532073 | angonoka | | common name | +532073 | Angonoka yniphora | | synonym | +532073 | Astrochelys yniphora | | scientific name | +532073 | Astrochelys yniphora (Vaillant 1885) | | authority | +532073 | Geochelone yniphora | | synonym | +532073 | Madagascan plowshare tortoise | | genbank common name | +532073 | Madagascar angulated tortoise | | synonym | +532073 | ploughshare tortoise | | common name | +532073 | Testudo yniphora | | synonym | +532073 | Testudo yniphora Vaillant, 1885 | | authority | +533315 | brown sweetlips | | common name | +533315 | dusky sweetlips | | common name | +533315 | gibbus sweetlips | | common name | +533315 | gibbus thicklip | | common name | +533315 | Harry hotlips | | genbank common name | +533315 | Holocentrus gibbosus Lacepede, 1802 | | authority | +533315 | Holocentrus gibbosus | | synonym | +533315 | Plectorhinchus gibbosus (Lacepede, 1802) | | authority | +533315 | Plectorhinchus gibbosus | | scientific name | +536571 | Arthroleptis gutturosus Chabanaud, 1921 | | authority | +536571 | Arthroleptis gutturosus | | synonym | +536571 | Chabanaud's river frog | | common name | +536571 | guttural river frog | | genbank common name | +536571 | Phrynobatrachus gutturosus (Chabanaud, 1921) | | authority | +536571 | Phrynobatrachus gutturosus | | scientific name | +542827 | Rhinopithecus | | scientific name | +544411 | Bower's parrotfish | | genbank common name | +544411 | Callyodon bowersi | | synonym | +544411 | Chlorurus bowersi | | scientific name | +544411 | Chlorurus bowersi (Snyder, 1909) | | authority | +544411 | orange-blotch parrotfish | | common name | +544413 | Chlorurus japanensis (Bloch, 1789) | | authority | +544413 | Chlorurus japanensis | | scientific name | +544413 | Japanese parrotfish | Japanese parrotfish | common name | +544413 | pale bullethead parrotfish | | common name | +544413 | palecheek parrotfish | | genbank common name | +544413 | Scarus japanensis | | synonym | +544415 | filament-finned parrotfish | | genbank common name | +544415 | highfinned parrotfish | | common name | +544415 | Pseudoscarus altipinnis | | synonym | +544415 | Scarus altipinnis | | scientific name | +544415 | Scarus altipinnis (Steindachner, 1879) | | authority | +545688 | Cypselurus poecilopterus | | scientific name | +545688 | Cypselurus poecilopterus (Valenciennes, 1847) | | authority | +545688 | Exocoetus poecilopterus | | synonym | +545688 | Exocoetus poecilopterus Valenciennes, 1847 | | authority | +545688 | yellowfin flying fish | | common name | +545688 | yellow-wing flyingfish | | genbank common name | +546548 | Helotes | | synonym | +546548 | Pelates | | scientific name | +546549 | four-lined grunter-perch | | common name | +546549 | four-lined terapon | | common name | +546549 | fourlined terapon | | genbank common name | +546549 | fourline grunter | | common name | +546549 | fourline striped grunter | | common name | +546549 | four-line trumpeter | | common name | +546549 | fourline trumpeter | | common name | +546549 | Holocentrus quadrilineatus Bloch, 1790 | | authority | +546549 | Holocentrus quadrilineatus | | synonym | +546549 | Pelates quadrilineatus (Bloch, 1790) | | authority | +546549 | Pelates quadrilineatus | | scientific name | +546549 | red-mouthed tigerfish | | common name | +546549 | squeaking perch | | common name | +546549 | Therapon quadrilineatus | | synonym | +546549 | trumpeter perch | | common name | +548164 | banded parrotfish | | common name | +548164 | Labrus fucicola Richardson, 1840 | | authority | +548164 | Labrus fucicola | | synonym | +548164 | Notolabrus fucicola (Richardson, 1840) | | authority | +548164 | Notolabrus fucicola | | scientific name | +548164 | purple wrasse | | common name | +548164 | yellow-saddled wrasse | | genbank common name | +548508 | Iridornis porphyrocephala Sclater, 1856 | | authority | +548508 | Iridornis porphyrocephala | | synonym | +548508 | Iridosornis porphyrocephala | | synonym | +548508 | Iridosornis porphyrocephalus | | scientific name | +548508 | Iridosornis porphyrocephalus (Sclater, PL, 1856) | | authority | +548508 | Purplish mantled tanager | | common name | +548508 | Purplish-mantled tanager | | genbank common name | +552877 | Chloropsis aurifrons | | scientific name | +552877 | Chloropsis aurifrons (Temminck, 1829) | | authority | +552877 | golden fronted leafbird | | common name | +552877 | gold-fronted leafbird | | genbank common name | +552877 | Phyllornis aurifrons | | synonym | +552877 | Phyllornis aurifrons Temminck, 1829 | | authority | +552897 | Bradypterus brunneus | | scientific name | +552897 | Bradypterus brunneus (Sharpe, 1877) | | authority | +552897 | brown emutail | | common name | +552897 | brown emu-tail | | genbank common name | +552897 | Dromaeocercus brunneus Sharpe, 1877 | | authority | +552897 | Dromaeocercus brunneus | | synonym | +552898 | Eremomela | | scientific name | +552899 | Eremomela gregalis | | scientific name | +552899 | Eremomela gregalis (Smith, 1829) | | authority | +552899 | karoo eremomela | | genbank common name | +552899 | Malcorus gregalis Smith, 1829 | | authority | +552899 | Malcorus gregalis | | synonym | +552899 | yellow-rumped eremomela | | common name | +552919 | Lioptilus | | scientific name | +552920 | blackcap mountain-babbler | | genbank common name | +552920 | bush blackcap | | common name | +552920 | Lioptilus nigricapillus | | scientific name | +552920 | Lioptilus nigricapillus (Vieillot, 1818) | | authority | +552920 | Turdus nigricapillus | | synonym | +552920 | Turdus nigricapillus Vieillot, 1818 | | authority | +552921 | Nesillas | | scientific name | +552922 | common tsikiriti | | common name | +552922 | Ellisia typica Hartlaub, 1860 | | authority | +552922 | Ellisia typica | | synonym | +552922 | Madagascan brush warbler | | genbank common name | +552922 | Malagasy brush warbler | | common name | +552922 | Nesillas typica (Hartlaub, 1860) | | authority | +552922 | Nesillas typica | | scientific name | +555355 | Thalasseus | | scientific name | +555356 | royal tern | | common name | +555356 | Royal tern | | genbank common name | +555356 | Sterna maxima | | synonym | +555356 | Thalasseus maximus Boddaert, 1783 | | authority | +555356 | Thalasseus maximus | | scientific name | +555602 | black-banded rockfish | | genbank common name | +555602 | black rockfish | black rockfish | common name | +555602 | Sebastes fuscescens (Houttuyn, 1782) | | authority | +555602 | Sebastes fuscescens | | scientific name | +555602 | Sebastodes fuscescens | | synonym | +555602 | Sparus fuscescens Houttuyn, 1782 | | authority | +555602 | Sparus fuscescens | | synonym | +557290 | Cypriot mouflon | | common name | +557290 | Cyprus mouflon | | genbank common name | +557290 | Ovis aries ophion Blyth, 1841 | | authority | +557290 | Ovis aries ophion | | synonym | +557290 | Ovis gmelini ophion | | synonym | +557290 | Ovis orientalis ophion | | scientific name | +561726 | Histiophryne | | scientific name | +563992 | Dermanura | | scientific name | +566292 | Selenka's sea cucumber | | common name | +566292 | Stichopus horrens | | scientific name | +566292 | Stichopus horrens Selenka, 1867 | | authority | +566292 | Stichopus variegatus Semper, 1868 | | authority | +566292 | Stichopus variegatus | | synonym | +566292 | warty sea cucumber | | genbank common name | +566407 | Brachysynodontis batensoda | | synonym | +566407 | knock-a-knock postmaster | | common name | +566407 | Synodontis batensoda Ruppell, 1832 | | authority | +566407 | Synodontis batensoda | | scientific name | +566407 | upside-down catfish | | common name | +566407 | upsidedown catfish | | genbank common name | +568896 | Eubleekeria Fowler, 1904 | | authority | +568896 | Eubleekeria | | scientific name | +568926 | Neoromicia Roberts, 1926 | | authority | +568926 | Neoromicia | | scientific name | +568927 | Afronycteris nana (Peters, 1852) | | authority | +568927 | Afronycteris nana | | scientific name | +568927 | Banana bat | | genbank common name | +568927 | banana pipistrelle | | common name | +568927 | Hypsugo nanus | | synonym | +568927 | Neoromicia nana | | synonym | +568927 | Neoromicia nanus (Peters, 1852) | | authority | +568927 | Neoromicia nanus | | synonym | +568927 | Pipistrellus nanus | | synonym | +568927 | Rhinolophus nana | | synonym | +568927 | Rhinolophus nana Thomas, 1901 | | authority | +570414 | Maclear's Christmas Island rat | | genbank common name | +570414 | Maclear's rat | | common name | +570414 | Mus macleari | | synonym | +570414 | Mus macleari Thomas, 1887 | | authority | +570414 | Rattus macleari | | scientific name | +570415 | bulldog rat | | common name | +570415 | Christmas Island burrowing rat | | common name | +570415 | Christmas Island rat | | genbank common name | +570415 | Mus nativitatis | | synonym | +570415 | Mus nativitatis Thomas, 1889 | | authority | +570415 | Rattus nativitatis | | scientific name | +571339 | Mesoclemmys | | scientific name | +571825 | Bizant River shark | | common name | +571825 | Carcharhinus glyphis | | synonym | +571825 | Carcharias glyphis Muller & Henle, 1839 | | authority | +571825 | Carcharias glyphis | | synonym | +571825 | freshwater speartooth shark | | common name | +571825 | Glyphis glyphis (Muller & Henle, 1839) | | authority | +571825 | Glyphis glyphis | | scientific name | +571825 | Glyphis sp. A 'freshwater speartooth shark' | | includes | +571825 | speartooth shark | | genbank common name | +573212 | Blepsias | | scientific name | +573213 | Blepsias cirrhosus (Pallas, 1814) | | authority | +573213 | Blepsias cirrhosus | | scientific name | +573213 | little dragon sculpin | | common name | +573213 | silver spot | | common name | +573213 | silverspotted sculpin | | genbank common name | +573213 | Trachinus cirrhosus Pallas, 1814 | | authority | +573213 | Trachinus cirrhosus | | synonym | +573377 | Arius maculatus | | scientific name | +573377 | Arius maculatus (Thunberg, 1792) | | authority | +573377 | Silurus maculatus | | synonym | +573377 | Silurus maculatus Thunberg, 1792 | | authority | +573377 | spotted catfish | | genbank common name | +573377 | spotted sea catfish | | common name | +573377 | Tachysurus maculatus | | synonym | +573891 | Natal upland frog | | common name | +573891 | plain stream frog | | common name | +573891 | Rana (Stronglylopus) wageri | | synonym | +573891 | Rana wageri | | synonym | +573891 | Rana wageri Wager, 1961 | | authority | +573891 | Strongylopus wageri | | scientific name | +573891 | Strongylopus wageri (Wager, 1961) | | authority | +573891 | Wager's stream frog | | genbank common name | +575557 | chottuvala | | common name | +575557 | Goan catfish | | genbank common name | +575557 | Ompok malabaricus | | scientific name | +575557 | Ompok malabaricus (Valenciennes, 1840) | | authority | +575557 | Silurus malabaricus | | synonym | +575557 | Silurus malabaricus Valenciennes, 1840 | | authority | +577198 | Abroscaphus adolfifriderici francei | | synonym | +577198 | Arthroleptis adolfifriederici francei | | synonym | +577198 | Arthroleptis francei Loveridge, 1953 | | authority | +577198 | Arthroleptis francei | | scientific name | +577198 | France's squeaker | | common name | +577198 | Ruo River screeching frog | | genbank common name | +577200 | Abroscaphus reichei | | synonym | +577200 | Arthroleptis reichei Nieden, 1911 | | authority | +577200 | Arthroleptis reichei | | scientific name | +577200 | large-toed squeaker | | common name | +577200 | Poroto Mountains screeching frog | | genbank common name | +577200 | Poroto screeching frog | | common name | +577200 | Reiche's squeaker | | common name | +577205 | Amani screeching frog | Amani screeching frog | genbank common name | +577205 | Arthroleptis xenodactylus Boulenger, 1909 | | authority | +577205 | Arthroleptis xenodactylus | | scientific name | +577205 | eastern squeaker | | common name | +577205 | Schoutedenella xenodactyla | | synonym | +578142 | Coluber rufulus Lichtenstein, 1823 | | authority | +578142 | Coluber rufulus | | synonym | +578142 | common brown water snake | | genbank common name | +578142 | Lycodonomorphus rufulus | | scientific name | +578142 | olive-brown water snake | | common name | +578143 | Glypholycus whytii Boulenger, 1897 | | authority | +578143 | Glypholycus whytii | | synonym | +578143 | Lycodonomorphus whytii | | scientific name | +578143 | Whyte's water-snake | | common name | +578143 | Whyte's water snake | | genbank common name | +582433 | Brachaelurus | | scientific name | +582434 | blind shark | | genbank common name | +582434 | Brachaelurus waddi (Bloch & Schneider, 1801) | | authority | +582434 | Brachaelurus waddi | | scientific name | +582434 | brown catshark | | common name | +582434 | dusky dogfish | | common name | +582434 | Squalus waddi | | synonym | +584662 | Kirtixalus menglaensis | | synonym | +584662 | Mengla small treefrog | | genbank common name | +584662 | Philautus menglaensis Kou, 1990 | | authority | +584662 | Philautus menglaensis | | synonym | +584662 | Philautus (Philautus) menglaensis | | synonym | +584662 | Pseudophilautus menglaensis | | synonym | +584662 | Raorchestes menglaensis | | scientific name | +584662 | Zhishihe's bubble-nest frog | | common name | +585466 | beach thick-knee | | common name | +585466 | Burhinus grallarius (Latham, 1802) | | authority | +585466 | Burhinus grallarius | | scientific name | +585466 | Burhinus magnirostris | | synonym | +585466 | Bush thick-knee | | genbank common name | +585466 | Charadrius grallarius Latham, 1801 | | authority | +585466 | Charadrius grallarius | | synonym | +586024 | Chaparana aenea (Smith, 1922) | | authority | +586024 | Chaparana aenea | | synonym | +586024 | Chaparana fansipani | | synonym | +586024 | Doi Chang frog | | common name | +586024 | keel-backed frog | | genbank common name | +586024 | Nanorana aenea | | scientific name | +586024 | Nanorana aenea (Smith, 1922) | | authority | +586024 | Paa aenea | | synonym | +586024 | Quasipaa aenea | | synonym | +586024 | Rana aenea Smith, 1922 | | authority | +586024 | Rana aenea | | synonym | +586024 | Rana (Chaparana) fansipani Bourret, 1939 | | synonym | +586785 | Centropyge bispinosa | | scientific name | +586785 | Holacanthus bispinosus Gunther, 1860 | | authority | +586785 | Holacanthus bispinosus | | synonym | +586785 | two-spined angelfish | | common name | +586785 | twospined angelfish | | genbank common name | +587054 | Istiblennius | | scientific name | +587066 | Pareques | | scientific name | +590941 | Leuciscus lateristriatus Bleeker, 1854 | | authority | +590941 | Leuciscus lateristriatus | | synonym | +590941 | Rasbora lateristriata (Bleeker, 1854) | | authority | +590941 | Rasbora lateristriata | | scientific name | +590941 | sidestrap rasbora | | common name | +590941 | yellow rasbora | | genbank common name | +591287 | Arius sagor | | synonym | +591287 | dusky catfish | dusky catfish | common name | +591287 | Hexanematichthys sagor | | scientific name | +591287 | Pimelodus sagor Hamilton, 1822 | | authority | +591287 | Pimelodus sagor | | synonym | +591287 | Sagor catfish | | genbank common name | +591287 | Sagor sea catfish | | common name | +591287 | Sciades sagor | | synonym | +591287 | Sunda sea catfish | | common name | +591287 | Tachysurus sagor | | synonym | +591288 | Arius sona | | synonym | +591288 | dusky catfish | dusky catfish | common name | +591288 | Hemiarius sona (Hamilton, 1822) | | authority | +591288 | Hemiarius sona | | scientific name | +591288 | Pimelodus sona Hamilton, 1822 | | authority | +591288 | Pimelodus sona | | synonym | +591288 | Sciades sona (Hamilton, 1822) | | authority | +591288 | Sciades sona | | synonym | +591288 | Sona sea catfish | | genbank common name | +591288 | Tachysurus sona | | synonym | +591301 | Hexanematichthys | | scientific name | +591302 | Hemiarius | | scientific name | +591932 | Piliocolobus | | scientific name | +591934 | Colobus rufomitratus Peters, 1879 | | authority | +591934 | Colobus rufomitratus | | synonym | +591934 | Eastern red Colobus | | common name | +591934 | Piliocolobus rufomitratus | | scientific name | +591934 | Procolobus badius rufomitratus | | synonym | +591934 | Tana river red Colobus | | genbank common name | +596107 | Bleeker's variegated whipray | | common name | +596107 | Himantura undulata (Bleeker, 1852) | | authority | +596107 | Himantura undulata | | scientific name | +596107 | honeycomb whipray | honeycomb whipray | common name | +596107 | leopard whipray | leopard whipray | genbank common name | +596107 | Trygon undulata Bleeker, 1852 | | authority | +596107 | Trygon undulata | | synonym | +596145 | Callichrous pabda | | synonym | +596145 | Ompok pabda (Hamilton, 1822) | | authority | +596145 | Ompok pabda | | scientific name | +596145 | Pabda catfish | | common name | +596145 | Pabdah catfish | | genbank common name | +596145 | Silurus pabda Hamilton, 1822 | | authority | +596145 | Silurus pabda | | synonym | +596145 | Wallago pabda | | synonym | +613076 | Crossodactylodes | | scientific name | +613087 | Calyptocephallela | | scientific name | +622367 | Amblypharyngodon melettina | | synonym | +622367 | Amblypharyngodon melettinus | | scientific name | +622367 | Amblypharyngodon melettinus (Valenciennes, 1844) | | authority | +622367 | attentive carplet | attentive carplet | genbank common name | +622367 | Leuciscus melettina | | synonym | +622367 | Leuciscus melettina Valenciennes, 1844 | | authority | +622367 | silver carplet | | common name | +622399 | Amblyeleotris periophthalma (Bleeker, 1853) | | authority | +622399 | Amblyeleotris periophthalma | | scientific name | +622399 | Amblyeleotris periopthalmus | | synonym | +622399 | broadbanded shrimpgoby | | common name | +622399 | broadbanded shrimp-goby | | genbank common name | +622399 | Eleotris periophthalmus Bleeker, 1853 | | authority | +622399 | Eleotris periophthalmus | | synonym | +622399 | periophthalma prawn-goby | | common name | +622413 | Istigobius regilius | | synonym | +622413 | Istigobius rigilius (Herre, 1953) | | authority | +622413 | Istigobius rigilius | | scientific name | +622413 | Istigobius rigillius | | synonym | +622413 | orange-spotted goby | | genbank common name | +622413 | Pallidogobius rigilius Herre, 1953 | | authority | +622413 | Pallidogobius rigilius | | synonym | +622413 | rigilius goby | | common name | +622600 | Euphlyctis pierrei | | synonym | +622600 | Fejervarya pierrei (Dubois, 1975) | | authority | +622600 | Fejervarya pierrei | | synonym | +622600 | Limnonectes pierrei | | synonym | +622600 | Minervarya pierrei (Dubois, 1975) | | authority | +622600 | Minervarya pierrei | | scientific name | +622600 | Pierre's cricket frog | | genbank common name | +622600 | Pierre's wart frog | | common name | +622600 | Rana pierrei Dubois, 1975 | | authority | +622600 | Rana pierrei | | synonym | +622600 | Zakerana pierrei | | synonym | +624848 | Gerres acinaces Bleeker, 1854 | | authority | +624848 | Gerres acinaces | | synonym | +624848 | Gerres longirostris (Lacepede, 1801) | | authority | +624848 | Gerres longirostris | | scientific name | +624848 | Labrus longirostris Lacepede, 1801 | | authority | +624848 | Labrus longirostris | | synonym | +624848 | longtail silverbiddy | | genbank common name | +624848 | strongspine silver-biddy | | common name | +627180 | Curimatus taeniurus | | synonym | +627180 | Curimatus taeniurus Valenciennes, 1821 | | authority | +627180 | flagtail characoid | | common name | +627180 | Prochilodus taeniurus | | synonym | +627180 | Semaprochilodus taeniurus | | scientific name | +627180 | Semaprochilodus taeniurus (Valenciennes, 1821) | | authority | +627180 | silver prochilodus | | genbank common name | +632609 | Babina chapaensis (Bourret, 1937) | | authority | +632609 | Babina chapaensis | | synonym | +632609 | Chapa frog | | common name | +632609 | glandular-sided frog | | genbank common name | +632609 | Hylarana chapaensis Bourret, 1937 | | authority | +632609 | Hylarana chapaensis | | synonym | +632609 | Nidirana chapaensis (Bourret, 1937) | | authority | +632609 | Nidirana chapaensis | | scientific name | +632609 | Rana chapaensis (Bourret, 1937) | | authority | +632609 | Rana chapaensis | | synonym | +633869 | Allegheny hellbender | | common name | +633869 | Cryptobranchus alleganiensis alleganiensis (Daudin, 1803) | | authority | +633869 | Cryptobranchus alleganiensis alleganiensis | | scientific name | +633869 | eastern hellbender | | genbank common name | +633869 | Salamandra alleganiensis alleganiensis Sonnini de Manoncourt and Latreille, 1801 | | authority | +633869 | Salamandra alleganiensis alleganiensis | | synonym | +635074 | Myotomys | | scientific name | +635075 | Myotomys sloggetti | | scientific name | +635075 | Otomys sloggetti | | synonym | +635075 | Otomys sloggetti Thomas, 1902 | | authority | +635075 | Rock karroo rat | | genbank common name | +635075 | Sloggett's vlei rat | | common name | +635150 | Ceratophrys appendiculata Guenther, 1873 | | authority | +635150 | Ceratophrys appendiculata Gunther, 1873 | | authority | +635150 | Ceratophrys appendiculata | | synonym | +635150 | Guenther's horned frog | | genbank common name | +635150 | Guenther's smooth horned frog | | common name | +635150 | Gunther's horned frog | | common name | +635150 | Gunther's smooth horned frog | | common name | +635150 | Proceratophrys appendiculata (Guenther, 1873) | | authority | +635150 | Proceratophrys appendiculata | | scientific name | +635150 | Stombus appendiculatus | | synonym | +637726 | American rockclimbing gobies | | genbank common name | +637726 | Sicydium | Sicydium | scientific name | +637726 | Sicydium Valenciennes in Cuvier & Valenciennes, 1837 | | authority | +638140 | Apogon lateralis | | synonym | +638140 | Apogon lateralis Valenciennes, 1832 | | authority | +638140 | Fibramia lateralis | | scientific name | +638140 | Fibramia lateralis (Valenciennes, 1832) | | authority | +638140 | humpback cardinal | | genbank common name | +638140 | inshore cardinalfish | | common name | +638140 | Ostorhinchus lateralis | | synonym | +638140 | Ostorhinchus lateralis (Valenciennes, 1832) | | authority | +638140 | Ostorhynchus lateralis | | synonym | +638272 | Apogon | Apogon | scientific name | +638290 | Ostorhinchus | | scientific name | +638290 | Ostorhynchus | | synonym | +642922 | Brachyplatystoma filamentosum (Lichtenstein, 1819) | | authority | +642922 | Brachyplatystoma filamentosum | | scientific name | +642922 | kumakuma | | genbank common name | +642922 | Pimelodes filamentosus | | synonym | +642922 | Pimelodus filamentosus Lichtenstein, 1819 | | authority | +642922 | Pimelodus filamentosus | | synonym | +642922 | piraiba | piraiba | common name | +643422 | Petroleuciscus | | scientific name | +643485 | Hallowell's sedge frog | | common name | +643485 | Hyperolius concolor (Hallowell, 1844) | | authority | +643485 | Hyperolius concolor | | scientific name | +643485 | Ixalus concolor Hallowell, 1844 | | authority | +643485 | Ixalus concolor | | synonym | +643485 | Rappia concolor | | synonym | +643485 | variable reed frog | | genbank common name | +643490 | Hyperolius montanus (Angel, 1924) | | authority | +643490 | Hyperolius montanus | | scientific name | +643490 | montane reed frog | montane reed frog | common name | +643490 | mountain reed frog | | genbank common name | +643490 | Rappia montana Angel, 1924 | | authority | +643490 | Rappia montana | | synonym | +643491 | Chabanaud's reed frog | | common name | +643491 | fantastic reed frog | | genbank common name | +643491 | Hyperolius phantasticus (Boulenger, 1899) | | authority | +643491 | Hyperolius phantasticus | | scientific name | +643491 | Rappia phantastica Boulenger, 1899 | | authority | +643491 | Rappia phantastica | | synonym | +643493 | Angola reed frog | | common name | +643493 | Benito River reed frog | | genbank common name | +643493 | Hyperolius platyceps (Boulenger, 1900) | | authority | +643493 | Hyperolius platyceps | | scientific name | +643493 | Megalixalus platyceps | | synonym | +643493 | Rappia platyceps Boulenger, 1900 | | authority | +643493 | Rappia platyceps | | synonym | +651656 | Bufo (Incilius) | | synonym | +651656 | Incilius | | scientific name | +651658 | Bufo (Ingerophrynus) | | synonym | +651658 | Ingerophrynus | | scientific name | +651664 | Phrynoidis | | scientific name | +651667 | beaked toads | | genbank common name | +651667 | Chaunus | | synonym | +651667 | Rhamphophryne | | synonym | +651667 | Rhinella | | scientific name | +651667 | Rio Viejo toads | | common name | +651669 | Vandijkophrynus | | scientific name | +651670 | Anaxyrus | | scientific name | +651670 | Bufo (Anaxyrus) | | synonym | +651673 | Bufotes | | scientific name | +651673 | Pseudepidalea | | synonym | +651674 | Bufo (Epidalea) | | synonym | +651674 | Epidalea | | scientific name | +651675 | Bufo (Nannophryne) | | synonym | +651675 | Nannophryne | | scientific name | +651676 | Poyntonophrynus | | scientific name | +651678 | Peltophryne | | scientific name | +651679 | Andinophryne | | synonym | +651679 | Rhaebo | | scientific name | +651680 | Bufo (Duttaphrynus) | | synonym | +651680 | Duttaphrynus | | scientific name | +651720 | Neotrygon | | scientific name | +651721 | blue-spotted maskray | | common name | +651721 | blues-potted stingray | | common name | +651721 | bluespotted stingray | | common name | +651721 | Dasyatis kuhlii (Muller & Henle, 1841) | | authority | +651721 | Dasyatis kuhlii | | synonym | +651721 | Dicerobatis kuhlii | | synonym | +651721 | Neotrygon kuhlii (Muller & Henle, 1841) | | authority | +651721 | Neotrygon kuhlii | | scientific name | +651721 | spotted stingray | | genbank common name | +651721 | Trygon kuhlii Muller & Henle, 1841 | | authority | +651721 | Trygon kuhlii | | synonym | +651724 | blotched fantail ray | | genbank common name | +651724 | round ribbontail ray | | common name | +651724 | Taeniura melanospilos Bleeker, 1853 | | authority | +651724 | Taeniura melanospilos | | synonym | +651724 | Taeniura meyeni Muller & Henle, 1841 | | authority | +651724 | Taeniura meyeni | | scientific name | +651724 | Taeniurops meyeni Garman, 1913 | | authority | +651724 | Taeniurops meyeni | | synonym | +652442 | devil stinger | | genbank common name | +652442 | Inimicus japonicus (Cuvier, 1829) | | authority | +652442 | Inimicus japonicus | | scientific name | +652442 | oni-okoze | | common name | +652442 | Pelor japonicum Cuvier, 1829 | | authority | +652442 | Pelor japonicum | | synonym | +655099 | Chrysoblephus puniceus (Gilchrist & Thompson, 1908) | | authority | +655099 | Chrysoblephus puniceus | | scientific name | +655099 | Chrysophrys puniceus Gilchrist & Thompson, 1908 | | authority | +655099 | Chrysophrys puniceus | | synonym | +655099 | red stumpnose | | common name | +655099 | slinger | | common name | +655099 | slinger sunbream | | genbank common name | +655831 | Morogoro tree toad | | genbank common name | +655831 | Nectophrynoides viviparus | | scientific name | +655831 | Nectophrynoides viviparus (Tornier, 1905) | | authority | +655831 | Pseudophryne vivipara | | synonym | +655831 | Pseudophryne vivipara Tornier, 1905 | | authority | +655831 | robust forest toad | | common name | +655831 | Tornierobates vivipara | | synonym | +655832 | Malabar tree toad | | genbank common name | +655832 | Nectophryne tuberculosa | | synonym | +655832 | Pedostibes tuberculosus Gunther, 1876 | | authority | +655832 | Pedostibes tuberculosus | | scientific name | +655832 | warty Asian tree toad | | common name | +655833 | Nectophryne signata Boulenger, 1895 | | authority | +655833 | Nectophryne signata | | synonym | +655833 | Pelophryne signata (Boulenger, 1895) | | authority | +655833 | Pelophryne signata | | scientific name | +655833 | Saint Andrew's Cross toadlet | | genbank common name | +655833 | short-legged dwarf toad | | common name | +655847 | Bufo bufo verrucosissima | | synonym | +655847 | Bufo verrucosissimus (Pallas, 1814) | | authority | +655847 | Bufo verrucosissimus | | scientific name | +655847 | Caucasian common toad | | common name | +655847 | Caucasian toad | | genbank common name | +655847 | Caucasus toad | | common name | +655847 | Rana verrucosissimus Pallas, 1814 | | authority | +655847 | Rana verrucosissimus | | synonym | +655848 | Calyptocephala gayi | | synonym | +655848 | Calyptocephalella gayi (Dumeril & Bibron, 1841) | | authority | +655848 | Calyptocephalella gayi | | synonym | +655848 | Calyptocephallela gayi | | scientific name | +655848 | Calyptocephalus gayi Dumeril & Bibron, 1841 | | authority | +655848 | Calyptocephalus gayi | | synonym | +655848 | Caudiverbera caudiverbera | | synonym | +655848 | Chilean giant toad | | common name | +655848 | Chilean toad | | common name | +655848 | Gays frog | | common name | +655848 | helmeted water toad | | genbank common name | +655848 | Lacerta caudiverbera Linnaeus, 1758 | | authority | +655848 | Lacerta caudiverbera | | synonym | +655852 | Bufo brevirostris Rao, 1937 | | authority | +655852 | Bufo brevirostris | | synonym | +655852 | Duttaphrynus brevirostris (Rao, 1937) | | authority | +655852 | Duttaphrynus brevirostris | | scientific name | +655852 | Kempholey toad | | common name | +655852 | Rao's pale brown toad | | genbank common name | +655852 | short-nosed toad | | common name | +655855 | Bufo hololius Gunther, 1876 | | authority | +655855 | Bufo hololius | | synonym | +655855 | Duttaphrynus hololius (Guenther, 1876) | | authority | +655855 | Duttaphrynus hololius | | scientific name | +655855 | Gunter's toad | | common name | +655855 | Malabar toad | | genbank common name | +655856 | Bufo parietalis Boulenger, 1882 | | authority | +655856 | Bufo parietalis | | synonym | +655856 | Duttaphrynus parietalis (Boulenger, 1882) | | authority | +655856 | Duttaphrynus parietalis | | scientific name | +655856 | Indian toad | | common name | +655856 | ridged toad | | common name | +655856 | timber forest toad | | genbank common name | +655869 | Loveridge's forest toad | | genbank common name | +655869 | Mahenge toad | | common name | +655869 | Mertensophryne loveridgei | | synonym | +655869 | Mertensophryne (Stephopaedes) loveridgei | | synonym | +655869 | Stephopaedes loveridgei Poynton, 1991 | | authority | +655869 | Stephopaedes loveridgei | | scientific name | +655891 | Bufo taitanus uzunguensis Loveridge, 1932 | | authority | +655891 | Bufo taitanus uzunguensis | | synonym | +655891 | Bufo uzunguensis Loveridge, 1932 | | authority | +655891 | Bufo uzunguensis | | synonym | +655891 | Mertensophryne uzunguensis (Loveridge, 1932) | | authority | +655891 | Mertensophryne uzunguensis | | scientific name | +655891 | Udzungwa toad | | common name | +655891 | Uzungwe toad | | genbank common name | +658163 | Babina holsti | | scientific name | +658163 | dagger frog | | genbank common name | +658163 | Holst's frog | | common name | +658163 | Okinawa shima frog | | common name | +658163 | Rana holsti Boulenger, 1892 | | authority | +658163 | Rana holsti | | synonym | +658176 | Arothron reticularis (Bloch & Schneider, 1801) | | authority | +658176 | Arothron reticularis | | scientific name | +658176 | reticulated blowfish | | common name | +658176 | reticulated puffer | | common name | +658176 | reticulated pufferfish | | genbank common name | +658176 | Tetraodon reticularis Bloch & Schneider, 1801 | | authority | +658176 | Tetraodon reticularis | | synonym | +658176 | Tetrodon reticularis Bloch & Schneider, 1801 | | authority | +658176 | Tetrodon reticularis | | synonym | +658181 | Cyclichthys | | scientific name | +658182 | birdbeak burrfish | | genbank common name | +658182 | Chilomycterus orbicularis | | synonym | +658182 | Cyclichthys orbicularis (Bloch, 1785) | | authority | +658182 | Cyclichthys orbicularis | | scientific name | +658182 | Diodon orbicularis Bloch, 1785 | | authority | +658182 | Diodon orbicularis | | synonym | +658182 | orbicular burrfish | | common name | +658182 | rounded porcupinefish | | common name | +659170 | Iduna | | scientific name | +661134 | great hammerhead | great hammerhead | common name | +661134 | smalleye hammerhead | | genbank common name | +661134 | Sphyrna tudes | | scientific name | +661134 | Sphyrna tudes (Valenciennes, 1822) | | authority | +661134 | Zygaena tudes | | synonym | +661134 | Zygaena tudes Valenciennes, 1822 | | authority | +661228 | Agonostomus monticola (Bancroft, 1834) | | authority | +661228 | Agonostomus monticola | | scientific name | +661228 | Dajaus monticola | | synonym | +661228 | Dajaus monticola Valenciennes, 1836 | | authority | +661228 | freshwater mullet | freshwater mullet | common name | +661228 | mountain mullet | | genbank common name | +661228 | Mugil monticola Bancroft, 1834 | | authority | +661228 | Mugil monticola | | synonym | +662560 | Rusa C. H. Smith, 1827 | | authority | +662560 | Rusa | | scientific name | +662561 | Cervus unicolor Kerr, 1792 | | authority | +662561 | Cervus unicolor | | synonym | +662561 | Rusa unicolor | | scientific name | +662561 | Sambar deer | | common name | +662561 | Sambar | | genbank common name | +663277 | Asian horned frog | | common name | +663277 | Asian spadefoot toad | | genbank common name | +663277 | Ceratophrys montana | | synonym | +663277 | Leptobrachium (Megalophrys) montana | | synonym | +663277 | Malayan leaf frog | | common name | +663277 | Megophrys montana Kuhl & Van Hasselt, 1822 | | authority | +663277 | Megophrys montana | | scientific name | +663277 | Megophrys monticola | | synonym | +663277 | nose-horned frog | | common name | +663277 | Xenophrys montana (Kuhl & Van Hasselt, 1822) | | authority | +663277 | Xenophrys montana | | synonym | +666058 | Chamaepsila | | scientific name | +666059 | carrot fly | | common name | +666059 | carrot rust fly | | genbank common name | +666059 | Chamaepsila hennigi | | synonym | +666059 | Chamaepsila hennigi Thompson & Pont, 1994 | | authority | +666059 | Chamaepsila rosae (Fabricius, 1794) | | authority | +666059 | Chamaepsila rosae | | scientific name | +666059 | Musca rosae Fabricius, 1794 | | synonym | +666059 | Psila rosae | | synonym | +666682 | Dryophytes immaculatus (Boettger, 1888) | | authority | +666682 | Dryophytes immaculatus | | scientific name | +666682 | Hyla arborea var. immaculata | | synonym | +666682 | Hyla chinensis var. immaculata Boettger, 1888 | | authority | +666682 | Hyla chinensis var. immaculata | | synonym | +666682 | Hyla immaculata Boettger, 1888 | | authority | +666682 | Hyla immaculata | | synonym | +666682 | North China tree toad | | common name | +666682 | spotless tree toad | | genbank common name | +666914 | Hyemoschus | | scientific name | +666915 | Fanged deer | | common name | +666915 | Hyemoschus aquaticus | | scientific name | +666915 | Moschus aquaticus Ogilby, 1841 | | authority | +666915 | Moschus aquaticus | | synonym | +666915 | Water chevrotain | | genbank common name | +670114 | bicolor loach | | common name | +670114 | Cobitis savona Hamilton, 1822 | | authority | +670114 | Cobitis savona | | synonym | +670114 | half-banded loach | | genbank common name | +670114 | Nemacheilus savona | | synonym | +670114 | Savona loach | | common name | +670114 | Schistura savona (Hamilton, 1822) | | authority | +670114 | Schistura savona | | scientific name | +670346 | Ardetta eurhythma Swinhoe, 1873 | | authority | +670346 | Ardetta eurhythma | | synonym | +670346 | Ixobrychus eurhythmus | | scientific name | +670346 | Ixobrychus eurhythmus (Swinhoe, 1873) | | authority | +670346 | Schrenck's bittern | | common name | +670346 | von Schrenck's bittern | | genbank common name | +670488 | bluespeckled pipefish | | common name | +670488 | blue-spotted pipefish | | genbank common name | +670488 | Hippichthys cyanospilos (Bleeker, 1854) | | authority | +670488 | Hippichthys cyanospilos | | scientific name | +670488 | Hippichthys cyanospilus | | synonym | +670488 | Syngnathus cyanospilos Bleeker, 1854 | | authority | +670488 | Syngnathus cyanospilos | | synonym | +670488 | Ward's pipefish | | common name | +670521 | Acanthurus bariene Lesson, 1831 | | authority | +670521 | Acanthurus bariene | | scientific name | +670521 | black-spot surgeonfish | | genbank common name | +670521 | eye-spot surgeon | | common name | +670521 | Hepatus bariene | | synonym | +670521 | roundspot surgeonfish | | common name | +670918 | Aquixalus longchuanensis | | synonym | +670918 | Kirtixalus longchaunensis | | synonym | +670918 | Longchuan bubble-nest frog | | common name | +670918 | Longchuan small treefrog | | genbank common name | +670918 | Philautus longchuanensis | | synonym | +670918 | Philautus longchuanensis Yang & Li, 1978 | | authority | +670918 | Pseudophilautus longchuanensis | | synonym | +670918 | Raorchestes longchuanensis | | scientific name | +670918 | Raorchestes longchuanensis (Yang & Li, 1978) | | authority | +670925 | Assam Indonesian treefrog | | common name | +670925 | black-spotted frog | black-spotted frog | genbank common name | +670925 | eerie tree frog | | common name | +670925 | Nyctixalus moloch | | synonym | +670925 | Phrynoderma moloch Annandale, 1912 | | authority | +670925 | Phrynoderma moloch | | synonym | +670925 | Rhacophorus moloch | | synonym | +670925 | Theloderma moloch (Annandale, 1912) | | authority | +670925 | Theloderma moloch | | scientific name | +670925 | Xizang warty treefrog | | common name | +670929 | Feihyla | | scientific name | +670929 | Rohanixalus | | synonym | +671158 | bronze whaler | | common name | +671158 | Carcharhinus brachyurus (Guenther, 1870) | | authority | +671158 | Carcharhinus brachyurus | | scientific name | +671158 | Carcharias brachyurus Guenther, 1870 | | authority | +671158 | Carcharias brachyurus Gunther, 1870 | | authority | +671158 | Carcharias brachyurus | | synonym | +671158 | cocktail shark | | common name | +671158 | copper shark | | genbank common name | +671158 | narrow-tooth shark | | common name | +671161 | Nasolamia | | scientific name | +671162 | Carcharhinus velox Gilbert, 1898 | | authority | +671162 | Carcharhinus velox | | synonym | +671162 | Nasolamia velox (Gilbert, 1898) | | authority | +671162 | Nasolamia velox | | scientific name | +671162 | requiem shark | | common name | +671162 | whitenose shark | | genbank common name | +672773 | Pseudopus | | scientific name | +672774 | European glass lizard | | common name | +672774 | Lacerta apoda Pallas, 1775 | | authority | +672774 | Lacerta apoda | | synonym | +672774 | Ophisaurus apodus | | synonym | +672774 | Pseudopus apodus (Pallas, 1775) | | authority | +672774 | Pseudopus apodus | | scientific name | +672774 | scheltopusik | | genbank common name | +672787 | Chiromyscus langbianis | | scientific name | +672787 | Indochinese arboreal Niviventer | | common name | +672787 | Lang Bian white-bellied rat | | genbank common name | +672787 | Niviventer langbianis (Robinson & Kloss, 1922) | | authority | +672787 | Niviventer langbianis | | synonym | +673032 | Cichlasoma bifasciatum | | synonym | +673032 | Heros bifasciatus Steindachner, 1864 | | authority | +673032 | Heros bifasciatus | | synonym | +673032 | Paraneetroplus bifasciatus | | synonym | +673032 | red speck cichlid | | common name | +673032 | Theraps bifasciatum | | synonym | +673032 | twoband cichlid | | genbank common name | +673032 | Vieja bifasciata | | scientific name | +673032 | Vieja bifasciata (Steindachner, 1864) | | authority | +673854 | blue stingray | blue stingray | common name | +673854 | common stingray | | genbank common name | +673854 | Dasyatis pastinaca (Linnaeus, 1758) | | authority | +673854 | Dasyatis pastinaca | | scientific name | +673854 | Dasybatus pastinaca | | synonym | +673854 | Raja pastinaca Linnaeus, 1758 | | authority | +673854 | Raja pastinaca | | synonym | +673854 | Trygon pastinaca | | synonym | +673854 | Trygon vulgaris pastinaca | | synonym | +681189 | Drepanornis | | scientific name | +681214 | Cyclorana cryptotis | | scientific name | +681214 | Cyclorana cryptotis Tyler & Martin, 1977 | | authority | +681214 | earless water-holding frog | | common name | +681214 | hidden-ear frog | | genbank common name | +681214 | Litoria cryptotis | | synonym | +681214 | Litoria (Cyclorana) cryptotis | | synonym | +681215 | Cyclorana cultripes Parker, 1940 | | authority | +681215 | Cyclorana cultripes | | scientific name | +681215 | desert collared-frog | | common name | +681215 | knife-footed frog | | genbank common name | +681215 | Litoria cultripes | | synonym | +681215 | Litoria (Cyclorana) cultripes | | synonym | +681215 | olive water-holding frog | olive water-holding frog | common name | +681216 | Cyclorana maculosus | | synonym | +681216 | Cyclorana maculosus Tyler & Martin, 1977 | | authority | +681216 | Daly Waters frog | | genbank common name | +681216 | Litoria (Cyclorana) maculosa | | synonym | +681216 | Litoria maculosa | | synonym | +681216 | olive water-holding frog | olive water-holding frog | common name | +681216 | Ranoidea maculosa | | scientific name | +681216 | Ranoidea maculosa (Tyler & Martin, 1977) | | authority | +681217 | Cyclorana novaehollandiae | | scientific name | +681217 | Cyclorana novaehollandiae Steindachner, 1867 | | authority | +681217 | Cyclorana novae-hollandiae | | synonym | +681217 | eastern snapping-frog | | common name | +681217 | Litoria (Cyclorana) novaehollandiae | | synonym | +681217 | Litoria novaehollandiae | | synonym | +681217 | New Holland frog | | genbank common name | +681218 | Chiroleptes platycephalus Guenther, 1873 | | authority | +681218 | Chiroleptes platycephalus | | synonym | +681218 | common water-holding frog | | common name | +681218 | Cyclorana platycephala (Guenther, 1873) | | authority | +681218 | Cyclorana platycephala | | synonym | +681218 | flat-headed frog | flat-headed frog | common name | +681218 | Litoria (Cyclorana) platycephala | | synonym | +681218 | Litoria platycephala | | synonym | +681218 | Neophractops platycephalus | | synonym | +681218 | Phractops platycephalus | | synonym | +681218 | Ranoidea platycephala (Gunther, 1873) | | authority | +681218 | Ranoidea platycephala | | scientific name | +681218 | water-holding frog | | genbank common name | +681219 | crying water-holding frog | | common name | +681219 | Cyclorana vagita | | synonym | +681219 | Cyclorana vagitus | | scientific name | +681219 | Cyclorana vagitus Tyler, Davies & Martin, 1981 | | authority | +681219 | Litoria (Cyclorana) vagitus | | synonym | +681219 | Litoria vagitus | | synonym | +681219 | wailing frog | | genbank common name | +681220 | Cyclorana verrucosa | | scientific name | +681220 | Cyclorana verrucosa Tyler & Martin, 1977 | | authority | +681220 | Cyclorana verrucosus | | synonym | +681220 | Litoria (Cyclorana) verrucosa | | synonym | +681220 | Litoria verrucosa | | synonym | +681220 | rough frog | | genbank common name | +681220 | woodland water-holding frog | | common name | +681221 | Coggerdonia adelaidensis | | synonym | +681221 | Hyla adelaidensis Gray, 1841 | | authority | +681221 | Hyla adelaidensis | | synonym | +681221 | Litoria adelaidensis (Gray, 1841) | | authority | +681221 | Litoria adelaidensis | | scientific name | +681221 | slender treefrog | | common name | +681221 | slender tree frog | | genbank common name | +681226 | Burrows' tree frog | | common name | +681226 | Hyla burrowsi Scott, 1942 | | authority | +681226 | Hyla burrowsi | | synonym | +681226 | Litoria burrowsae | | synonym | +681226 | Litoria burrowsi | | scientific name | +681226 | Litoria burrowsi (Scott, 1942) | | authority | +681226 | Saganura burrowsi | | synonym | +681226 | Tasmanian treefrog | | common name | +681226 | Tasmanian tree frog | | genbank common name | +681227 | cave-dwelling frog | | genbank common name | +681227 | Litoria cavernicola | | scientific name | +681227 | Litoria cavernicola Tyler & Davies, 1979 | | authority | +681227 | long cave treefrog | | common name | +681227 | Pelodryas cavernicola | | synonym | +681237 | Hyla aurea var. cyclorhynchus Boulenger, 1882 | | authority | +681237 | Hyla aurea var. cyclorhynchus | | synonym | +681237 | Hyla cyclorhynchus | | synonym | +681237 | Litoria cyclorhyncha (Boulenger, 1882) | | authority | +681237 | Litoria cyclorhyncha | | synonym | +681237 | Ranoidea cyclorhyncha | | synonym | +681237 | Ranoidea cyclorhynchus (Boulenger, 1882) | | authority | +681237 | Ranoidea cyclorhynchus | | scientific name | +681237 | spotted-thighed frog | | common name | +681237 | spotted-thighed treefrog | | genbank common name | +681241 | bleating treefrog | | common name | +681241 | bleating tree frog | | genbank common name | +681241 | Hyla dentata Keferstein, 1868 | | authority | +681241 | Hyla dentata | | synonym | +681241 | Keferstein's tree frog | | common name | +681241 | Litoria dentata (Keferstein, 1868) | | authority | +681241 | Litoria dentata | | scientific name | +681241 | Rawlinsonia dentata | | synonym | +681251 | Australian variable treefrog | | common name | +681251 | broad-palmed frog | | genbank common name | +681251 | Hyla latopalmata | | synonym | +681251 | Litoria latopalmata Guenter, 1867 | | authority | +681251 | Litoria latopalmata | | scientific name | +681254 | Litoria longirostris | | scientific name | +681254 | Litoria longirostris Tyler & Davies, 1977 | | authority | +681254 | Llewellynura longirostris | | synonym | +681254 | longnose treefrog | | common name | +681254 | long-snouted frog | | common name | +681254 | sharp-snouted frog | | genbank common name | +681258 | black-striped treefrog | | common name | +681258 | bridle frog | | genbank common name | +681258 | Hyla nigrofrenata Guenter, 1867 | | authority | +681258 | Hyla nigrofrenata Guenther, 1867 | | authority | +681258 | Hyla nigrofrenata | | synonym | +681258 | Litoria nigrofrenata (Guenter, 1867) | | authority | +681258 | Litoria nigrofrenata | | scientific name | +681258 | tawny rocketfrog | | common name | +681259 | Henrietta Creek treefrog | | common name | +681259 | Litoria nyakalensis Liem, 1974 | | authority | +681259 | Litoria nyakalensis | | scientific name | +681259 | Mosleyia nyakalensis | | synonym | +681259 | mountain mistfrog | | genbank common name | +681259 | Nyakala frog | | common name | +681262 | Litoria paraewingi | | scientific name | +681262 | Litoria paraewingi Watson, Loftus-Hills & Littlejohn, 1971 | | authority | +681262 | plains brown tree frog | | genbank common name | +681262 | Rawlinsonia paraewingi | | synonym | +681262 | red cryptic treefrog | | common name | +681262 | Victorian frog | | common name | +681263 | Dryopsophus personata | | synonym | +681263 | escarpment frog | | common name | +681263 | Litoria personata | | scientific name | +681263 | Litoria personata Tyler, Davies & Martin, 1978 | | authority | +681263 | masked cave-frog | | common name | +681263 | masked frog | masked frog | genbank common name | +681263 | masked rock-frog | | common name | +681263 | masked scarp frog | | common name | +681263 | sandstone treefrog | | common name | +681274 | laughing treefrog | | common name | +681274 | Litoria tyleri Martin, Watson, Gartside, Littlejohn & Loftus-Hills, 1979 | | authority | +681274 | Litoria tyleri | | scientific name | +681274 | Pengilleyia tyleri | | synonym | +681274 | Tyler's Australian treefrog | | common name | +681274 | Tyler's tree frog | | genbank common name | +683850 | Christy's grassland frog | | genbank common name | +683850 | Christy's ridged frog | | common name | +683850 | Ptychadena christyi (Boulenger, 1919) | | authority | +683850 | Ptychadena christyi | | scientific name | +683850 | Rana christyi Boulenger, 1919 | | authority | +683850 | Rana christyi | | synonym | +685118 | Limnonectes namiyei | | scientific name | +685118 | Limnonectes namiyei (Stejneger, 1901) | | authority | +685118 | Namie's frog | | common name | +685118 | Okinawa wart frog | | genbank common name | +685118 | Rana (Limnonectes) namiyei | | synonym | +685118 | Rana namiyei Stejneger, 1901 | | authority | +685118 | Rana namiyei | | synonym | +685121 | Batrachylodes | | synonym | +685121 | Ceratobatrachus | | synonym | +685121 | Cornufer | | scientific name | +685121 | Discodeles | | synonym | +685121 | Palmatorappia | | synonym | +685169 | Pterorana | | scientific name | +687230 | black-eyed litter frog | | genbank common name | +687230 | Leptobrachium nigrops Berry & Hendrickson, 1963 | | authority | +687230 | Leptobrachium nigrops | | scientific name | +687230 | Megophrys nigrops | | synonym | +687230 | Singapore spadefoot toad | | common name | +687235 | Leptobrachella heteropus (Boulenger, 1900) | | authority | +687235 | Leptobrachella heteropus | | scientific name | +687235 | Leptobrachium heteropus Boulenger, 1900 | | authority | +687235 | Leptobrachium heteropus | | synonym | +687235 | Malaysian Asian toad | | common name | +687235 | Megalophrys heteropus | | synonym | +687235 | Megophrys heteropus | | synonym | +687235 | variable litter frog | | genbank common name | +687869 | Hapalogenys nigripinnis (Schlegel, 1843) | | authority | +687869 | Hapalogenys nigripinnis (Schlegel in Temminck & Schlegel, 1843) | | authority | +687869 | Hapalogenys nigripinnis | | scientific name | +687869 | Hapalogenys nitens Richardson, 1844 | | authority | +687869 | Hapalogenys nitens | | synonym | +687869 | higesoridai | | common name | +687869 | short barbeled grunter | | genbank common name | +687869 | short barbeled velvetchin | | common name | +689408 | Accra river frog | | common name | +689408 | Ahl's river frog | | genbank common name | +689408 | Phrynobatrachus accraensis (Ahl, 1925) | | authority | +689408 | Phrynobatrachus accraensis | | synonym | +689408 | Phrynobatrachus latifrons Ahl, 1924 | | authority | +689408 | Phrynobatrachus latifrons | | scientific name | +691798 | Clupea thibaudeaui Durand, 1940 | | authority | +691798 | Clupea thibaudeaui | | synonym | +691798 | Hilsa thibaudeaui | | synonym | +691798 | Laotian shad | | common name | +691798 | Mekong herring | | genbank common name | +691798 | Tenualosa thibaudeaui (Durand, 1940) | | authority | +691798 | Tenualosa thibaudeaui | | scientific name | +693458 | Phycodurus | | scientific name | +693459 | Glauert's sea-dragon | | common name | +693459 | leafy sea dragon | | common name | +693459 | leafy seadragon | | genbank common name | +693459 | Phycodurus eques (Guenther, 1865) | | authority | +693459 | Phycodurus eques | | scientific name | +693459 | Phyllopteryx eques Guenther, 1865 | | authority | +693459 | Phyllopteryx eques Gunther, 1865 | | authority | +693459 | Phyllopteryx eques | | synonym | +693640 | Brasilian mullet | | common name | +693640 | Chelon dumerili | | scientific name | +693640 | Chelon dumerili (Steindachner, 1870) | | authority | +693640 | grooved mullet | | genbank common name | +693640 | groovy mullet | | common name | +693640 | Liza dumerilii | | synonym | +693640 | Liza dumerili (Steindachner, 1870) | | authority | +693640 | Liza dumerili | | synonym | +693640 | Mugil dumerili Steindachner, 1870 | | authority | +693640 | Mugil dumerili | | synonym | +693642 | largescaled mullet | | genbank common name | +693642 | large-scale mullet | | common name | +693642 | Liza grandisquamis | | synonym | +693642 | Liza grandisquamis (Valenciennes, 1836) | | authority | +693642 | Mugil grandisquamis | | synonym | +693642 | Mugil grandisquamis Valenciennes, 1836 | | authority | +693642 | Parachelon grandisquamis | | scientific name | +693644 | leaping African mullet | | common name | +693644 | Mugil capurii | | synonym | +693644 | Mugil capurrii (Perugia, 1892) | | authority | +693644 | Mugil capurrii | | scientific name | +693644 | Myxus capurrii Perugia, 1892 | | authority | +693644 | Myxus capurrii | | synonym | +693644 | narrowhead grey mullet | | genbank common name | +693712 | gray-shanked douc | | common name | +693712 | gray-shanked douc langur | | genbank common name | +693712 | Pygathrix cinerea Nadler, 1997 | | authority | +693712 | Pygathrix cinerea | | scientific name | +693712 | Pygathrix cinereus | | synonym | +693712 | Pygathrix nemaeus cinerea | | synonym | +694279 | Aphyosemion jeanpoli | | synonym | +694279 | Archiaphyosemion jeanpoli (Berkenkamp & Etzel, 1979) | | authority | +694279 | Archiaphyosemion jeanpoli | | synonym | +694279 | Jeanpol's killi | | common name | +694279 | Jeanpol's killifish | | genbank common name | +694279 | Nimbapanchax jeanpoli (Berkenkamp & Etzel, 1979) | | authority | +694279 | Nimbapanchax jeanpoli | | scientific name | +694279 | Roloffia jeanpoli Berkenkamp & Etzel, 1979 | | authority | +694279 | Roloffia jeanpoli | | synonym | +694306 | Arthroleptis graueri Nieden, 1911 | | authority | +694306 | Arthroleptis graueri | | synonym | +694306 | Grauer's puddle frog | | common name | +694306 | Hylarthroleptis graueri | | synonym | +694306 | Phrynobatrachus graueri (Nieden, 1911) | | authority | +694306 | Phrynobatrachus graueri | | scientific name | +694306 | Rugege river frog | | genbank common name | +694311 | green puddle frog | | common name | +694311 | Phrynobatrachus (Natalobatrachus) versicolor | | synonym | +694311 | Phrynobatrachus versicolor Ahl, 1924 | | authority | +694311 | Phrynobatrachus versicolor | | scientific name | +694311 | Rwanda river frog | | genbank common name | +694503 | big-headed frog | | common name | +694503 | Euphlyctis plicatella | | synonym | +694503 | Limnonectes (Bourretia) plicatellus | | synonym | +694503 | Limnonectes (Elachyglossa) plicatellus | | synonym | +694503 | Limnonectes plicatellus | | scientific name | +694503 | Limnonectes plicatellus (Stoliczka, 1873) | | authority | +694503 | Penang wart frog | | genbank common name | +694503 | Rana plicatella Stoliczka, 1873 | | authority | +694503 | Rana plicatella | | synonym | +694503 | rhinoceros frog | | common name | +694504 | black torrent frog | | common name | +694504 | Ixalus saxicola | | synonym | +694504 | Jerdon's olive-brown frog | | common name | +694504 | Malabar tropical frog | | common name | +694504 | Micrixalus saxicola (Jerdon, 1854) | | authority | +694504 | Micrixalus saxicola | | scientific name | +694504 | Polypedates saxicola Jerdon, 1853 | | authority | +694504 | Polypedates saxicola Jerdon, 1854 | | authority | +694504 | Polypedates saxicola | | synonym | +694504 | small torrent frog | | genbank common name | +694506 | Malacca spadefoot toad | | genbank common name | +694506 | Megalophrys longipes Boulenger, 1886 | | authority | +694506 | Megalophrys longipes | | synonym | +694506 | Megophrys longipes Boulenger, 1886 | | authority | +694506 | Megophrys longipes | | scientific name | +694506 | red-legged horn frog | | common name | +694506 | red legged spine-eyed frog | | common name | +694506 | slender-legged horned frog | | common name | +694506 | Xenophrys longipes (Boulenger, 1886) | | authority | +694506 | Xenophrys longipes | | synonym | +694510 | Bufo parvus Boulenger, 1887 | | authority | +694510 | Bufo parvus | | synonym | +694510 | Indochinese dwarf toad | | common name | +694510 | Ingerophrynus parvus (Boulenger, 1887) | | authority | +694510 | Ingerophrynus parvus | | scientific name | +694510 | keel-headed toad | | common name | +694510 | lesser Malacca toad | | common name | +694510 | lesser toad | | genbank common name | +694510 | red small toad | | common name | +694510 | straight-ridge toad | | common name | +696752 | Nimbapanchax | | scientific name | +697147 | central foam-nest tree frog | | genbank common name | +697147 | Chiromantis petersii Boulenger, 1882 | | authority | +697147 | Chiromantis petersii | | scientific name | +697147 | Chiromantis petersi | | synonym | +697147 | Peters' foam-nest treefrog | | common name | +697160 | Chirixalus nongkhorensis (Cochran, 1927) | | authority | +697160 | Chirixalus nongkhorensis | | synonym | +697160 | Chiromantis nongkhorensis (Cochran, 1927) | | authority | +697160 | Chiromantis nongkhorensis | | scientific name | +697160 | Nong Khor bushfrog | | common name | +697160 | Nongkhor pigmy tree frog | | genbank common name | +697160 | Philautus nongkhorensis Cochran, 1927 | | authority | +697160 | Philautus nongkhorensis | | synonym | +697160 | Rhacophorus (Chirixalus) nongkhorensis | | synonym | +697160 | Rhacophorus nongkhorensis | | synonym | +698420 | marbled sand frog | | genbank common name | +698420 | Rana breviceps rolandae Dubois, 1983 | | authority | +698420 | Rana breviceps rolandae | | synonym | +698420 | Rana (Tomopterna) breviceps rolandae Dubois, 1983 | | authority | +698420 | Rana (Tomopterna) breviceps rolandae | | synonym | +698420 | Roland's burrowing frog | | common name | +698420 | southern burrowing frog | | common name | +698420 | Sphaerotheca rolandae (Dubois, 1983) | | authority | +698420 | Sphaerotheca rolandae | | scientific name | +698420 | Sri Lanka bullfrog | | common name | +698420 | Tomopterna rolandae | | synonym | +698420 | Tomopterna (Sphaerotheca) rolandae | | synonym | +700175 | Neodactria | | scientific name | +700176 | black grass | | common name | +700176 | black grass-veneer | | common name | +700176 | black grass-veneer moth | | genbank common name | +700176 | Neodactria caliginosella (Clemens, 1860) | | authority | +700176 | Neodactria caliginosella | | scientific name | +700176 | Neodactria caliginosellus | | synonym | +700637 | Melamphaes suborbitalis (Gill, 1883) | | authority | +700637 | Melamphaes suborbitalis | | scientific name | +700637 | Plectromus suborbitalis Gill, 1883 | | authority | +700637 | Plectromus suborbitalis | | synonym | +700637 | ridgehead | ridgehead | common name | +700637 | shoulderspine bigscale | | genbank common name | +700668 | devil scorpionfish | | common name | +700668 | false stonefish | | genbank common name | +700668 | Scorpaena diabolus Cuvier, 1829 | | authority | +700668 | Scorpaena diabolus | | synonym | +700668 | Scorpaenopsis diabolus (Cuvier, 1829) | | authority | +700668 | Scorpaenopsis diabolus | | scientific name | +700796 | Clupea humeralis Cuvier, 1829 | | authority | +700796 | Clupea humeralis | | synonym | +700796 | Harengula humeralis (Cuvier, 1829) | | authority | +700796 | Harengula humeralis | | scientific name | +700796 | redear herring | | genbank common name | +700796 | redear sardine | | common name | +702266 | Asian badger | | genbank common name | +702266 | Meles leucurus (Hodgson, 1847) | | authority | +702266 | Meles leucurus | | scientific name | +702266 | Meles meles leucurus | | synonym | +702266 | sand badger | | common name | +702266 | Taxidea leucurus Hodgson, 1847 | | authority | +702266 | Taxidea leucurus | | synonym | +703910 | Cirripectes | | scientific name | +704175 | lesser flamingo | | genbank common name | +704175 | Phoeniconaias minor Geoffroy Saint-Hilaire, 1798 | | authority | +704175 | Phoeniconaias minor | | scientific name | +704175 | Phoenicopterus minor Geoffroy Saint-Hilaire, 1798 | | authority | +704175 | Phoenicopterus minor | | synonym | +704175 | Zwergflamingo | | common name | +705554 | Bombinator baleatus Mueller, 1833 | | authority | +705554 | Bombinator baleatus Muller, 1836 | | authority | +705554 | Bombinator baleatus | | synonym | +705554 | brown bullfrog | | genbank common name | +705554 | Callula baleata | | synonym | +705554 | flower pot toad | | common name | +705554 | Javanese bullfrog | | common name | +705554 | Kaloula baleata (Mueller, 1833) | | authority | +705554 | Kaloula baleata | | scientific name | +705554 | Mueller's narrowmouth toad | | common name | +705554 | Muller's narrowmouth toad | | common name | +705554 | Plectropus baleatus | | synonym | +709362 | Afrocaecilia changamwensis | | synonym | +709362 | Boulengerula changamwensis Loveridge, 1932 | | authority | +709362 | Boulengerula changamwensis | | scientific name | +709362 | Changamwe caecilian | | common name | +709362 | Changamwe lowland caecilian | | genbank common name | +711521 | Crossocheilus siamensis | | scientific name | +711521 | Crossocheilus siamensis (Smith, 1931) | | authority | +711521 | Epalzeorhynchos siamensis Smith, 1931 | | authority | +711521 | Epalzeorhynchos siamensis | | synonym | +711521 | Epalzeorhynchus siamensis Smith, 1931 | | authority | +711521 | Epalzeorhynchus siamensis | | synonym | +711521 | Siamese algae eater | Siamese algae eater | common name | +711521 | Siamese algae-eater | Siamese algae-eater | common name | +711521 | Siamese flying fox | Siamese flying fox | genbank common name | +712047 | Cistugo | | scientific name | +712048 | Angolan hairy bat | | common name | +712048 | Angolan wing-gland bat | | genbank common name | +712048 | Cistugo seabrae | | scientific name | +712048 | Cistugo seabrae Thomas, 1912 | | authority | +712048 | Cistugo seabrai | | synonym | +712048 | Myotis seabrai | | synonym | +713925 | Andean Cat | | common name | +713925 | Andean mountain cat | | genbank common name | +713925 | Felis jacobita Cornalia, 1865 | | authority | +713925 | Felis jacobita | | synonym | +713925 | Leopardus jacobita (Cornalia, 1865) | | authority | +713925 | Leopardus jacobita | | scientific name | +713925 | Leopardus jacobitus | | synonym | +713925 | Oreailurus jacobita | | synonym | +714659 | Cetengraulis mysticetus (Guenter, 1867) | | authority | +714659 | Cetengraulis mysticetus | | scientific name | +714659 | Engraulis mysticetus Guenter, 1867 | | authority | +714659 | Engraulis mysticetus Gunther, 1867 | | authority | +714659 | Engraulis mysticetus | | synonym | +714659 | Pacific anchoveta | | genbank common name | +714659 | Pacific anchovy | | common name | +715368 | Espadarana | | scientific name | +715370 | Sachatamia | | scientific name | +716691 | Bornean agile gibbon | | common name | +716691 | Bornean white-bearded gibbon | | genbank common name | +716691 | Hylobates agilis albibarbis | | synonym | +716691 | Hylobates albibarbis Lyon, 1911 | | authority | +716691 | Hylobates albibarbis | | scientific name | +716691 | Hylobates alibarbis Lyon, 1911 | | authority | +717467 | Nimbaphrynoides | | scientific name | +717468 | Liberia Nimba toad | | common name | +717468 | Liberian Nimba toad | | common name | +717468 | Mt. Nimba viviparous toad | | common name | +717468 | Nectophrynoides liberiensis | | synonym | +717468 | Nectophrynoides liberiensis Xavier, 1979 | | authority | +717468 | Nectophrynoides occidentalis Angel, 1943 | | authority | +717468 | Nectophrynoides occidentalis | | synonym | +717468 | Nimbaphrynoides liberiensis | | synonym | +717468 | Nimbaphrynoides liberiensis (Xavier, 1979) | | authority | +717468 | Nimbaphrynoides occidentalis (Angel, 1943) | | authority | +717468 | Nimbaphrynoides occidentalis liberiensis | | synonym | +717468 | Nimbaphrynoides occidentalis | | scientific name | +717468 | western Nimba toad | | genbank common name | +721938 | bristlemouth | bristlemouth | common name | +721938 | deepsea fangjaw | | common name | +721938 | deepsea lightfish | | common name | +721938 | Gonostoma bathyphilum | | synonym | +721938 | Gonostoma bathyphilum (Vaillant, 1884) | | authority | +721938 | Neostoma bathyphilum | | synonym | +721938 | Neostoma bathyphilum Vaillant, 1884 | | authority | +721938 | Sigmops bathyphilus | | scientific name | +721938 | Sigmops bathyphilus (Vaillant, 1884) | | authority | +721938 | spark anglemouth | | genbank common name | +721939 | diamond lizardfish | | genbank common name | +721939 | Esox synodus Linnaeus, 1758 | | authority | +721939 | Esox synodus | | synonym | +721939 | red lizardfish | | common name | +721939 | rockspear | | common name | +721939 | Saurus synodus | | synonym | +721939 | Synodus synodus (Linnaeus, 1758) | | authority | +721939 | Synodus synodus | | scientific name | +722432 | Conodon | | scientific name | +722433 | barred grunt | | genbank common name | +722433 | Conodon nobilis (Linnaeus, 1758) | | authority | +722433 | Conodon nobilis | | scientific name | +722433 | cro-cro grunt | | common name | +722433 | Perca nobilis Linnaeus, 1758 | | authority | +722433 | Perca nobilis | | synonym | +722433 | yellow cro-cro | | common name | +722435 | Enneanectes | | scientific name | +723540 | Atlantic devil ray | | common name | +723540 | Cephalopterus hypostomus Bancroft, 1831 | | authority | +723540 | Cephalopterus hypostomus | | synonym | +723540 | lesser devil ray | lesser devil ray | genbank common name | +723540 | Mobula hypostoma (Bancroft, 1831) | | authority | +723540 | Mobula hypostoma | | scientific name | +723540 | small devilfish | | common name | +740927 | Chesnonia | | scientific name | +740928 | Brachyopsis verrucosus Lockington, 1880 | | authority | +740928 | Brachyopsis verrucosus | | synonym | +740928 | Chesnonia verrucosa (Lockington, 1880) | | authority | +740928 | Chesnonia verrucosa | | scientific name | +740928 | Occa verrucosa | | synonym | +740928 | Occella verrucosa | | synonym | +740928 | warty poacher | | genbank common name | +740928 | warty sea-poacher | | common name | +741976 | Malayan horned frog | Malayan horned frog | common name | +741976 | Megalophrys aceras | | synonym | +741976 | Megalophrys montana var. aceras Boulenger, 1903 | | authority | +741976 | Megalophrys montana var. aceras | | synonym | +741976 | Megophrys aceras | | scientific name | +741976 | Panophrys aceras | | synonym | +741976 | Perak spadefoot toad | | genbank common name | +741976 | white breastgland spine-eyed frog | | common name | +741976 | Xenophrys aceras | | synonym | +741976 | yello horn frog | | common name | +743423 | Nasuella Hollister, 1915 | | authority | +743423 | Nasuella | | scientific name | +743424 | Mountain coati | | common name | +743424 | Nasua olivacea Gray, 1865 | | authority | +743424 | Nasua olivacea | | synonym | +743424 | Nasuella olivacea (Gray, 1865) | | authority | +743424 | Nasuella olivacea | | scientific name | +743424 | Western mountain coati | | genbank common name | +744555 | Chaetodon falcifer Hubbs & Rechnitzer, 1958 | | authority | +744555 | Chaetodon falcifer | | synonym | +744555 | Prognathodes falcifer (Hubbs & Rechnitzer, 1958) | | authority | +744555 | Prognathodes falcifer | | scientific name | +744555 | scythe butterflyfish | | common name | +744555 | scythemarked butterflyfish | | genbank common name | +745121 | Cilus | | scientific name | +745122 | Cilus gilberti (Abbott, 1899) | | authority | +745122 | Cilus gilberti | | scientific name | +745122 | Cilus montti Delfin, 1900 | | authority | +745122 | Cilus montti | | synonym | +745122 | corvina drum | | common name | +745122 | corvina | | genbank common name | +745122 | Sciaena gilberti Abbott, 1899 | | authority | +745122 | Sciaena gilberti | | synonym | +745261 | Phrynobatrachus natalensis species complex | | scientific name | +745779 | Raorchestes | | scientific name | +745779 | Rhacophorinae gen. SDB-2010 | | equivalent name | +746842 | Anthias bilineatus Bloch, 1793 | | authority | +746842 | Anthias bilineatus | | synonym | +746842 | brindled monocle break | | common name | +746842 | brindled spine-cheek | | common name | +746842 | double lined coral bream | | common name | +746842 | Scolopsis bilineata (Bloch, 1793) | | authority | +746842 | Scolopsis bilineata | | scientific name | +746842 | two-lined monocle bream | | genbank common name | +746842 | twoline spinecheek | | common name | +746842 | yellow-finned spine-cheek | | common name | +747526 | Amphichthys | | scientific name | +747527 | Amphichthys cryptocentrus | | scientific name | +747527 | Amphichthys cryptocentrus (Valenciennes, 1837) | | authority | +747527 | Batrachus cryptocentrus | | synonym | +747527 | Batrachus cryptocentrus Valenciennes, 1837 | | authority | +747527 | Bocon toadfish | | genbank common name | +747527 | sapo bocon | | common name | +747772 | Calophysus | | scientific name | +747773 | Calophysus macropterus (Lichtenstein, 1819) | | authority | +747773 | Calophysus macropterus | | scientific name | +747773 | mota | | common name | +747773 | Pimelodus macropterus Lichtenstein, 1819 | | authority | +747773 | Pimelodus macropterus | | synonym | +747773 | piracatinga | | common name | +747773 | pirate catfish | | common name | +747773 | zamurito | | genbank common name | +749526 | Eigenmannia virescens | | scientific name | +749526 | Eigenmannia virescens (Valenciennes, 1836) | | authority | +749526 | glass knifefish | | genbank common name | +749526 | green knifefish | | common name | +749526 | Gymnotiformes sp. BOLD:AAB7523 | | includes | +749526 | Sternachus virescens | | synonym | +749526 | Sternachus virescens Valenciennes, 1836 | | authority | +753481 | Leucoptera Hubner, 1825 | | authority | +753481 | Leucoptera | Leucoptera | scientific name | +753481 | Paraleucoptera | | synonym | +753488 | apple leaf miner | | common name | +753488 | Leucoptera malifoliella (Costa, 1836) | | authority | +753488 | Leucoptera malifoliella | | scientific name | +753488 | Leucoptera scitella | | synonym | +753488 | pear leaf blister moth | | genbank common name | +753488 | ribbed apple leaf miner | | common name | +753639 | Adioryx tiereoides | | synonym | +753639 | Holocentrum tiereoides Bleeker, 1853 | | authority | +753639 | Holocentrum tiereoides | | synonym | +753639 | pink-spotted squirrelfish | | common name | +753639 | pink squirrelfish | | genbank common name | +753639 | Sargocentron tiereoides (Bleeker, 1853) | | authority | +753639 | Sargocentron tiereoides | | scientific name | +753643 | Acanthurus achilles | | scientific name | +753643 | Acanthurus achilles Shaw, 1803 | | authority | +753643 | Achilles tang | | genbank common name | +753643 | Hepatus achilles | | synonym | +753643 | redspot surgeonfish | | common name | +753643 | redtail surgeonfish | | common name | +753643 | Teuthis achilles | | synonym | +753644 | Acanthurus gahm nigricauda | | synonym | +753644 | Acanthurus nigricauda Duncker & Mohr, 1929 | | authority | +753644 | Acanthurus nigricauda | | scientific name | +753644 | black-barred surgeonfish | black-barred surgeonfish | common name | +753644 | blackstreak surgeonfish | | common name | +753644 | epaulette surgeon | | common name | +753644 | epaulette surgeonfish | | genbank common name | +753644 | shoulderbar surgeonfish | | common name | +753646 | big-eye soldierfish | | common name | +753646 | Myripristis pralinia Cuvier, 1829 | | authority | +753646 | Myripristis pralinia | | scientific name | +753646 | Myripristis pralinius Cuvier, 1829 | | authority | +753646 | Myripristis pralinius | | synonym | +753646 | Ostichthys pralinius | | synonym | +753646 | Port Praslin squirrelfish | | common name | +753646 | reef soldierfish | | common name | +753646 | scarlet soldier | | common name | +753646 | scarlet soldierfish | | genbank common name | +753647 | blackblotch squirrelfish | | genbank common name | +753647 | blackspot squirrelfish | | common name | +753647 | Holocentrum melanospilos Bleeker, 1858 | | authority | +753647 | Holocentrum melanospilos | | synonym | +753647 | Sargocentron melanospilos (Bleeker, 1858) | | authority | +753647 | Sargocentron melanospilos | | scientific name | +753647 | three-spot squirrelfish | | common name | +753649 | Acanthurus rostratum Guenther, 1875 | | authority | +753649 | Acanthurus rostratum | | synonym | +753649 | Acanthurus rostratus Gunther, 1875 | | authority | +753649 | Acanthurus rostratus | | synonym | +753649 | longnose surgeonfish | | genbank common name | +753649 | longnose tang | | common name | +753649 | Zebrasoma rostrata | | synonym | +753649 | Zebrasoma rostratum (Guenther, 1875) | | authority | +753649 | Zebrasoma rostratum | | scientific name | +753650 | Plectrypops | | scientific name | +753651 | cardinal soldierfish | cardinal soldierfish | common name | +753651 | fleshy squirrelfish | | common name | +753651 | Holotrachys lima | | synonym | +753651 | Myripristis lima | | synonym | +753651 | Myripristis lima Valenciennes, 1831 | | authority | +753651 | Plectrypops lima | | scientific name | +753651 | Plectrypops lima (Valenciennes, 1831) | | authority | +753651 | roughscale soldierfish | | common name | +753651 | shy soldierfish | | common name | +753651 | shy soldier | | genbank common name | +753897 | Atherina vaigiensis Quoy & Gaimard, 1825 | | authority | +753897 | Atherina vaigiensis | | synonym | +753897 | Atherinomorus vaigiensis (Quoy & Gaimard, 1825) | | authority | +753897 | Atherinomorus vaigiensis | | scientific name | +753897 | common hardyhead | | genbank common name | +753897 | Hypoatherina vaigiensis | | synonym | +753897 | marine hardyhead | | common name | +753897 | Pranesus vaigiensis | | synonym | +753902 | Atherinichthys eyresii Steindachner, 1883 | | authority | +753902 | Atherinichthys eyresii | | synonym | +753902 | Central Australian hardyhead | | common name | +753902 | Craterocephalus eyresii | | scientific name | +753902 | Craterocephalus eyresii (Steindachner, 1883) | | authority | +753902 | desert hardyhead | | common name | +753902 | Lake Eyre hardyhead | | genbank common name | +753902 | Murray hardyhead | Murray hardyhead | common name | +753902 | western crat | | common name | +753902 | western freshwater hardyhead | | common name | +753914 | blackmast | | common name | +753914 | Craterocephalus stramineus | | scientific name | +753914 | Craterocephalus stramineus (Whitley, 1950) | | authority | +753914 | Quirichthys stramineus | | synonym | +753914 | Quiris stramineus | | synonym | +753914 | Quiris stramineus Whitley, 1950 | | authority | +753914 | strawman | | genbank common name | +753915 | Atherina harringtonensis Goode, 1877 | | authority | +753915 | Atherina harringtonensis | | synonym | +753915 | bullhead fry | | common name | +753915 | Hypoatherina harringtonensis (Goode, 1877) | | authority | +753915 | Hypoatherina harringtonensis | | scientific name | +753915 | reef silverside | | genbank common name | +753915 | slender silverside | slender silverside | common name | +753916 | Atherina temmincki Bleeker, 1854 | | authority | +753916 | Atherina temminckii Bleeker, 1853 | | authority | +753916 | Atherina temminckii | | synonym | +753916 | Atherina temmincki | | synonym | +753916 | Hypoatherina temminckii (Bleeker, 1853) | | authority | +753916 | Hypoatherina temminckii (Bleeker, 1854) | | authority | +753916 | Hypoatherina temminckii | | scientific name | +753916 | Samoan hardyhead | | common name | +753916 | Samoan silverside | | genbank common name | +753916 | Stenatherina temminckii | | synonym | +753916 | Temminck's hardyhead | | common name | +753916 | whitebait | | common name | +753916 | whitebait silverside | | common name | +758446 | Irania de Filippi 1863 | | authority | +758446 | Irania | Irania | scientific name | +758447 | Cossypha gutturalis Guerin-Meneville, 1843 | | authority | +758447 | Cossypha gutturalis | | synonym | +758447 | Irania gutturalis (Guerin-Meneville, 1843) | | authority | +758447 | Irania gutturalis | | scientific name | +758447 | White throated robin | | common name | +758447 | White-throated robin | | genbank common name | +762043 | black sand skate | | common name | +762043 | Boeseman's skate | | genbank common name | +762043 | Okamejei boesemani (Ishihara, 1987) | | authority | +762043 | Okamejei boesemani | | scientific name | +762043 | Raja boesemani | | synonym | +762045 | common hairfin anchovy | | genbank common name | +762045 | Engraulis tenuifilis | | synonym | +762045 | Engraulis tenuifilis Valenciennes, 1848 | | authority | +762045 | longfin anchovy | | common name | +762045 | scaly hairfin anchovy | scaly hairfin anchovy | common name | +762045 | Setipinna tenuifilis | | scientific name | +762045 | Setipinna tenuifilis (Valenciennes, 1848) | | authority | +762045 | Thryssa sp. FBGN-SAU-Dhaka F1R1-5 | | includes | +762047 | banded sole | banded sole | common name | +762047 | many-banded sole | | genbank common name | +762047 | Solea fasciata Basilewsky, 1855 | | authority | +762047 | Solea fasciata | | synonym | +762047 | Zebrias fasciatus (Basilewsky, 1855) | | authority | +762047 | Zebrias fasciatus | | scientific name | +762061 | African jewelfish | | common name | +762061 | Hemichromis letourneuxi Sauvage, 1880 | | authority | +762061 | Hemichromis letourneuxi | | synonym | +762061 | jewel fish | | genbank common name | +762061 | Nile jewel cichlid | | common name | +762061 | Rubricatochromis letourneuxi (Sauvage, 1880) | | authority | +762061 | Rubricatochromis letourneuxi | | scientific name | +762504 | parakeet leaf frog | | genbank common name | +762504 | Phasmahyla jandaia (Bokermann & Sazima, 1978) | | authority | +762504 | Phasmahyla jandaia | | scientific name | +762504 | Phyllomedusa jandaia Bokermann & Sazima, 1978 | | authority | +762504 | Phyllomedusa jandaia | | synonym | +762504 | Sazima's leaf frog | | common name | +762637 | Cryptoheros | Cryptoheros | scientific name | +764543 | Acontias lineatus Peters, 1879 | | authority | +764543 | Acontias lineatus | | scientific name | +764543 | lined lanced skink | | genbank common name | +764543 | Microacontias lineatus (Peters, 1879) | | authority | +764543 | Microacontias lineatus | | synonym | +764543 | striped legless lizard | | common name | +764832 | Glossogobius olivaceus | | scientific name | +764832 | Glossogobius olivaceus (Temminck & Schlegel, 1845) | | authority | +764832 | Gobius olivaceus | | synonym | +764832 | Gobius olivaceus Temminck & Schlegel, 1845 | | authority | +764832 | urohaze | | common name | +764832 | urohaze-goby | | genbank common name | +764833 | blue dartfish | | common name | +764833 | blue goby | | genbank common name | +764833 | Ioglossus calliurus Jordan & Gilbert, 1882 | | authority | +764833 | Ioglossus calliurus | | synonym | +764833 | Ptereleotris calliura (Jordan & Gilbert, 1882) | | authority | +764833 | Ptereleotris calliura | | scientific name | +764836 | Gobius plumieri Bloch, 1786 | | authority | +764836 | Gobius plumieri | | synonym | +764836 | Plumier's stone-biting goby | | common name | +764836 | Sicydium plumieri (Bloch, 1786) | | authority | +764836 | Sicydium plumieri | | scientific name | +764836 | sirajo | | genbank common name | +764836 | sirajo goby | | common name | +764836 | titiri | | common name | +765185 | Harriotta | | scientific name | +765186 | bentnose rabbitfish | | common name | +765186 | bigspine spookfish | | common name | +765186 | Harriotta haeckeli | | synonym | +765186 | Harriotta raleighana Goode & Bean, 1895 | | authority | +765186 | Harriotta raleighana | | scientific name | +765186 | longnose chimaera | | common name | +765186 | narrownose chimaera | | common name | +765186 | Pacific longnose chimaera | | genbank common name | +765186 | ratfish | ratfish | common name | +767251 | Clupea sternicla Linnaeus, 1758 | | authority | +767251 | Clupea sternicla | | synonym | +767251 | common hatchetfish | | common name | +767251 | Gasteropelecus sternicla (Linnaeus, 1758) | | authority | +767251 | Gasteropelecus sternicla | | scientific name | +767251 | river hatchetfish | | genbank common name | +767251 | silver hatchetfish | | common name | +767411 | Acanthopagrus bifasciatus (Fabricius, 1775) | | authority | +767411 | Acanthopagrus bifasciatus | | scientific name | +767411 | Chaetodon bifasciatus Forsskal, 1775 | | authority | +767411 | Chaetodon bifasciatus | | synonym | +767411 | doublebar bream | | common name | +767411 | Mylio bifasciatus | | synonym | +767411 | Sparus bifasciatus | | synonym | +767411 | two-banded porgy | | common name | +767411 | twobar bream | | common name | +767411 | twobar seabream | | genbank common name | +797091 | Limnonectes kuhlii species complex | | scientific name | +797160 | Hesperia venata | | synonym | +797160 | large skipper butterfly | | common name | +797160 | large skipper | | genbank common name | +797160 | Ochlodes venata (Bremer & Grey, 1853) | | authority | +797160 | Ochlodes venata | | scientific name | +797160 | Ochlodes venatus | | synonym | +798166 | Chinese scrub vole | | common name | +798166 | Irene's mountain vole | | genbank common name | +798166 | Microtus irene | | synonym | +798166 | Neodon irene | | scientific name | +798166 | Neodon irene (Thomas, 1911) | | authority | +798166 | Pitymys irene | | synonym | +798169 | Microtus sikimensis | | synonym | +798169 | Neodon sikimensis Hodgson, 1849 | | authority | +798169 | Neodon sikimensis (Horsfield, 1841) | | authority | +798169 | Neodon sikimensis | | scientific name | +798169 | Sikkim mountain vole | | genbank common name | +798169 | Sikkim vole | | common name | +857615 | Amblypharyngodon mola (Hamilton, 1822) | | authority | +857615 | Amblypharyngodon mola | | scientific name | +857615 | Cyprinus mola Hamilton, 1822 | | authority | +857615 | Cyprinus mola | | synonym | +857615 | Leuciscus mola | | synonym | +857615 | mola carplet | | genbank common name | +857615 | pale carplet | | common name | +857645 | Chela oxygastroides | | synonym | +857645 | glass barb | | genbank common name | +857645 | glass fish | | common name | +857645 | Leuciscus oxygastroides Bleeker, 1852 | | authority | +857645 | Leuciscus oxygastroides | | synonym | +857645 | Oxygaster oxygastroides | | synonym | +857645 | Parachela oxygastroides (Bleeker, 1852) | | authority | +857645 | Parachela oxygastroides | | scientific name | +857658 | Leuciscus dusonensis Bleeker, 1850 | | authority | +857658 | Leuciscus dusonensis Bleeker, 1851 | | authority | +857658 | Leuciscus dusonensis | | synonym | +857658 | Myer's silver rasbora | | common name | +857658 | Parluciosoma dusonensis | | synonym | +857658 | Rasbora dusonensis (Bleeker, 1851) | | authority | +857658 | Rasbora dusonensis | | scientific name | +857658 | rosefin rasbora | | genbank common name | +857658 | silver rasbora | silver rasbora | common name | +857658 | yellowtail rasbora | | common name | +857659 | blue line rasbora | | common name | +857659 | brilliant rasbora | | genbank common name | +857659 | Leuciscus einthovenii Bleeker, 1851 | | authority | +857659 | Leuciscus einthovenii | | synonym | +857659 | Rasbora einthovenii (Bleeker, 1851) | | authority | +857659 | Rasbora einthovenii | | scientific name | +857659 | Trigonopoma einthovenii (Bleeker, 1851) | | authority | +857659 | Trigonopoma einthovenii | | includes | +857662 | Cyprinus rasbora Hamilton, 1822 | | authority | +857662 | Cyprinus rasbora | | synonym | +857662 | Gangetic scissortail rasbora | | genbank common name | +857662 | Leuciscus rasbora | | synonym | +857662 | Rasbora rasbora (Hamilton, 1822) | | authority | +857662 | Rasbora rasbora | | scientific name | +857662 | scissortail barb | | common name | +858229 | Ambassis macleayi (Castelnau, 1878) | | authority | +858229 | Ambassis macleayi | | scientific name | +858229 | Chanda macleayi | | synonym | +858229 | Macleay's glassfish | | common name | +858229 | Macleay's glass perchlet | | genbank common name | +858229 | Macleay's perchlet | | common name | +858229 | network perchlet | | common name | +858229 | Pseudoambassis macleayi Castelnau, 1878 | | authority | +858229 | Pseudoambassis macleayi | | synonym | +858229 | reticulated glassfish | | common name | +858229 | reticulated perchlet | | common name | +858497 | Cheilopogon atrisignis (Jenkins, 1903) | | authority | +858497 | Cheilopogon atrisignis | | scientific name | +858497 | Cypsilurus atrisignis Jenkins, 1903 | | authority | +858497 | Cypsilurus atrisignis | | synonym | +858497 | glider flyingfish | | genbank common name | +858497 | greater spotted flyingfish | | common name | +858497 | Jenkin's flying fish | | common name | +858497 | volador planeador | | common name | +859894 | Nabarlek | | genbank common name | +859894 | Peradorcas concinna | | synonym | +859894 | Petrogale concinna Gould, 1842 | | authority | +859894 | Petrogale concinna | | scientific name | +859894 | pygmy rock-wallaby | | common name | +861345 | Lepidosaphes pini (Maskell, 1897) | | authority | +861345 | Lepidosaphes pini | | scientific name | +861345 | Oriental pine scale | | common name | +861345 | pine oystershell scale | | genbank common name | +861345 | Poliaspis pini Maskell, 1897 | | authority | +861345 | Poliaspis pini | | synonym | +862141 | Quasipaa | | scientific name | +862141 | Yerana | | synonym | +862142 | Eripaa fasciculispina | | synonym | +862142 | Nanorana fasciculispina | | synonym | +862142 | Paa fasciculispina | | synonym | +862142 | Quasipaa fasciculispina (Inger, 1970) | | authority | +862142 | Quasipaa fasciculispina | | scientific name | +862142 | Rana fasciculispina Inger, 1970 | | authority | +862142 | Rana fasciculispina | | synonym | +862142 | Rana (Paa) fasciculispina | | synonym | +862142 | spine-glanded mountain frog | | common name | +862142 | spiny-breasted frog | | genbank common name | +862507 | Mus | Mus | scientific name | +862508 | Coelomys | | scientific name | +862791 | Amblyrhynchotes hypselogeneion | | synonym | +862791 | cheek-barred toadfish | | common name | +862791 | dwarf blowfish | | common name | +862791 | orange-spotted toadfish | | genbank common name | +862791 | Ostracion hypselogeneion | | synonym | +862791 | Spheroides hypselogeneion | | synonym | +862791 | Sphoeroides hypselogeneion | | synonym | +862791 | Tetraodon hypselogeneion Bleeker, 1852 | | authority | +862791 | Tetraodon hypselogeneion | | synonym | +862791 | Torquigener hyposelongeneion | | synonym | +862791 | Torquigener hypselogeneion (Bleeker, 1852) | | authority | +862791 | Torquigener hypselogeneion | | scientific name | +862798 | Auriglobus | | scientific name | +862799 | Auriglobus modestus (Bleeker, 1851) | | authority | +862799 | Auriglobus modestus | | scientific name | +862799 | bronze puffer | bronze puffer | genbank common name | +862799 | Chonerhinos modestus | | synonym | +862799 | golden puffer | golden puffer | common name | +862799 | Tetraodon modestus Bleeker, 1850 | | authority | +862799 | Tetraodon modestus Bleeker, 1851 | | authority | +862799 | Tetraodon modestus | | synonym | +862800 | Omegophora | | scientific name | +862800 | Omegophora Whitley 1934 | | authority | +862801 | Omegophora armilla | | scientific name | +862801 | Omegophora armilla (Waite & McCulloch, 1915) | | authority | +862801 | ringed pufferfish | | common name | +862801 | ringed toadfish | | genbank common name | +862801 | Sphaeroides armilla | | synonym | +862801 | Tetraodon armilla | | synonym | +862801 | Tetraodon armilla Waite & McCulloch, 1915 | | authority | +862826 | bramble shark | | genbank common name | +862826 | Echinorhinus brucus (Bonnaterre, 1788) | | authority | +862826 | Echinorhinus brucus | | scientific name | +862826 | spinous shark | spinous shark | common name | +862826 | spiny shark | | common name | +862826 | Squalus brucus Bonnaterre, 1788 | | authority | +862826 | Squalus brucus | | synonym | +862897 | Isistius | | scientific name | +862898 | cigar shark | | common name | +862898 | cookie cutter shark | | genbank common name | +862898 | Isistius brasiliensis (Quoy & Gaimard, 1824) | | authority | +862898 | Isistius brasiliensis | | scientific name | +862898 | luminous shark | | common name | +862898 | Scymnus brasiliensis Quoy & Gaimard, 1824 | | authority | +862898 | Scymnus brasiliensis | | synonym | +862898 | smalltooth cookiecutter shark | | common name | +862899 | Oxynotus | | scientific name | +864176 | Pseudhymenochirus | | scientific name | +864177 | Hymenochirus merlini | | synonym | +864177 | Hymenochirus (Pseudhymenochirus) merlini | | synonym | +864177 | Merlin's African dwarf clawed frog | | common name | +864177 | Merlin's clawed frog | | genbank common name | +864177 | Merlin's dwarf gray frog | | common name | +864177 | Pseudhymenochirus merlini Chabanaud, 1920 | | authority | +864177 | Pseudhymenochirus merlini | | scientific name | +866009 | Ale snowtrout | | common name | +866009 | Alghad snowtrout | | common name | +866009 | Chush snowtrout | | genbank common name | +866009 | Schizocypris niger | | synonym | +866009 | Schizopyge niger (Heckel, 1838) | | authority | +866009 | Schizopyge niger | | scientific name | +866009 | Schizothoraichthys niger | | synonym | +866009 | Schizothorax niger Heckel. 1838 | | authority | +866009 | Schizothorax niger | | synonym | +866635 | Thylamys pusillus species complex | | scientific name | +868862 | churchill | | genbank common name | +868862 | Mormyrus catostoma Guenther, 1866 | | authority | +868862 | Mormyrus catostoma Gunther, 1866 | | authority | +868862 | Mormyrus catostoma | | synonym | +868862 | northern churchill | | common name | +868862 | Petrocephalus catastoma (Guenther, 1866) | | authority | +868862 | Petrocephalus catostoma | | scientific name | +870552 | golden wrasse | | genbank common name | +870552 | Halichoeres melanotis (Gilbert, 1890) | | authority | +870552 | Halichoeres melanotis | | scientific name | +870552 | Pseudojulis melanotis Gilbert, 1890 | | authority | +870552 | Pseudojulis melanotis | | synonym | +870552 | senorita dorada | | common name | +873202 | Bachmann's warbler | | common name | +873202 | Bachman's warbler | | genbank common name | +873202 | Helminthophila bachmanii | | synonym | +873202 | Helminthophila bachmani | | synonym | +873202 | Sylvia bachmanii Audubon, 1833 | | authority | +873202 | Sylvia bachmanii | | synonym | +873202 | Vermivora bachmanii (Audubon, 1833) | | authority | +873202 | Vermivora bachmanii | | scientific name | +876122 | Bythaelurus Compagno, 1988 | | authority | +876122 | Bythaelurus | | scientific name | +876627 | Gymnothorax albimarginatus | | scientific name | +876627 | Gymnothorax albimarginatus (Temminck & Schlegel, 1846) | | authority | +876627 | liver-colored moray | | common name | +876627 | Muraena albomarginata | | synonym | +876627 | Muraena albomarginata Temminck & Schlegel, 1846 | | authority | +876627 | whitemargin moray | | genbank common name | +877584 | Babina daunchina | | synonym | +877584 | Emei music frog | | genbank common name | +877584 | Hungchun-ping frog | | common name | +877584 | Hylarana daunchina | | synonym | +877584 | Hylarana (Nidirana) daunchina | | synonym | +877584 | Nidirana daunchina (Chang, 1933) | | authority | +877584 | Nidirana daunchina | | scientific name | +877584 | Rana daunchina Chang, 1933 | | authority | +877584 | Rana daunchina | | synonym | +877584 | Rana (Hylarana) daunchina | | synonym | +877586 | Indian flying frog | | common name | +877586 | Khare's frog | | genbank common name | +877586 | Khare's gliding frog | | common name | +877586 | Pterorana khare Kiyasetuo & Khare, 1986 | | authority | +877586 | Pterorana khare | | scientific name | +877586 | Rana khare | | synonym | +877586 | Rana (Pterorana) khare | | synonym | +877586 | winged frog | | common name | +879473 | chestnut blenny | | common name | +879473 | chestnut eyelash-blenny | | genbank common name | +879473 | Cirripectes castaneus | | scientific name | +879473 | Cirripectes castaneus (Valenciennes, 1836) | | authority | +879473 | Salarias castaneus | | synonym | +879473 | Salarias castaneus Valenciennes, 1836 | | authority | +879476 | Cirripectes quagga (Fowler & Ball, 1924) | | authority | +879476 | Cirripectes quagga | | scientific name | +879476 | dotted-line blenny | | common name | +879476 | Rupiscartes quagga Fowler & Ball, 1924 | | authority | +879476 | Rupiscartes quagga | | synonym | +879476 | squiggly blenny | | genbank common name | +879476 | zebra blenny | | common name | +879482 | Axoclinus carminalis | | synonym | +879482 | carmine triplefin | | genbank common name | +879482 | delicate triplefin | | common name | +879482 | Enneanectes carminalis (Jordan & Gilbert, 1882) | | authority | +879482 | Enneanectes carminalis | | scientific name | +879482 | Tripterygium carminale Jordan & Gilbert, 1882 | | authority | +879482 | Tripterygium carminale | | synonym | +879483 | Enneanectes pectoralis (Fowler, 1941) | | authority | +879483 | Enneanectes pectoralis | | scientific name | +879483 | Enneapterygius pectoralis Fowler, 1941 | | authority | +879483 | Enneapterygius pectoralis | | synonym | +879483 | redeye blenny | | common name | +879483 | redeye triplefin | | genbank common name | +879491 | blackspotted rockskipper | | common name | +879491 | Entomacrodus striatus | | scientific name | +879491 | Entomacrodus striatus (Valenciennes, 1836) | | authority | +879491 | pearly rockskipper | | common name | +879491 | reef margin blenny | | genbank common name | +879491 | Salarias striatus | | synonym | +879491 | Salarias striatus Valenciennes, 1836 | | authority | +879491 | streaked blenny | | common name | +879501 | Dussumier's blenny | | common name | +879501 | Dussumier's rockskipper | | common name | +879501 | Halmablennius dussumieri | | synonym | +879501 | Istiblennius dussumieri | | scientific name | +879501 | Istiblennius dussumieri (Valenciennes, 1836) | | authority | +879501 | Salarias dussumieri | | synonym | +879501 | Salarias dussumieri Valenciennes, 1836 | | authority | +879501 | streaky rockskipper | | genbank common name | +879502 | black-lined blenny | | common name | +879502 | Halmablennius lineatus | | synonym | +879502 | Istiblennius lineatus | | scientific name | +879502 | Istiblennius lineatus (Valenciennes, 1836) | | authority | +879502 | lined blenny | | common name | +879502 | lined rockskipper | lined rockskipper | genbank common name | +879502 | Salarias lineatus | | synonym | +879502 | Salarias lineatus Valenciennes, 1836 | | authority | +879502 | thin-lined rockskipper | | common name | +879513 | mangrove blenny | | common name | +879513 | Omobranchus obliquus (Garman, 1903) | | authority | +879513 | Omobranchus obliquus | | scientific name | +879513 | Omobranchus rotundiceps obliquus | | synonym | +879513 | Petroscirtes obliquus Garman, 1903 | | authority | +879513 | Petroscirtes obliquus | | synonym | +879513 | roundhead blenny | | genbank common name | +879519 | Aspidontus rhinorhynchos | | synonym | +879519 | bluestriped blenny | | common name | +879519 | bluestriped fangblenny | | genbank common name | +879519 | cleaner mimic | | common name | +879519 | Petroskirtes amblyrhynchos Bleeker, 1857 | | authority | +879519 | Petroskirtes amblyrhynchos | | synonym | +879519 | Plagiotremus rhinorhynchos (Bleeker, 1852) | | authority | +879519 | Plagiotremus rhinorhynchos | | scientific name | +879519 | Runula rhinorhynchos | | synonym | +879519 | twostripe blenny | | common name | +879520 | Aspidontus tapeinosoma | | synonym | +879520 | hit and run blenny | | common name | +879520 | Petroscirtes tapeinosoma Bleeker, 1857 | | authority | +879520 | Petroscirtes tapeinosoma | | synonym | +879520 | Petroskirtes tapeinosoma Bleeker, 1857 | | authority | +879520 | Petroskirtes tapeinosoma | | synonym | +879520 | piano blenny | | common name | +879520 | piano fangblenny | | genbank common name | +879520 | Plagiotremus tapeinosoma (Bleeker, 1857) | | authority | +879520 | Plagiotremus tapeinosoma | | scientific name | +879520 | Runula tapeinosoma | | synonym | +879520 | slender blenny | | common name | +879681 | Alticus | | scientific name | +879682 | Alticus saliens (Lacepede, 1800) | | authority | +879682 | Alticus saliens | | scientific name | +879682 | Blennius saliens Lacepede, 1800 | | authority | +879682 | Blennius saliens | | synonym | +879682 | jumping blenny | | common name | +879682 | leaping blenny | | genbank common name | +879705 | Atrosalarias | | scientific name | +879706 | Atrosalarias fuscus fuscus | | synonym | +879706 | Atrosalarias fuscus (Rueppell, 1838) | | authority | +879706 | Atrosalarias fuscus | | scientific name | +879706 | black blenny | black blenny | common name | +879706 | brown coral blenny | brown coral blenny | genbank common name | +879706 | Salarias fuscus Rueppell, 1838 | | authority | +879706 | Salarias fuscus Ruppell, 1838 | | authority | +879706 | Salarias fuscus | | synonym | +879711 | Blenniella | | scientific name | +879712 | Blenniella chrysospilos (Bleeker, 1857) | | authority | +879712 | Blenniella chrysospilos | | scientific name | +879712 | Istiblennius chrysospilos | | synonym | +879712 | orange-spotted blenny | | common name | +879712 | red-spotted blenny | | genbank common name | +879712 | Salarias chrysospilos Bleeker, 1857 | | authority | +879712 | Salarias chrysospilos | | synonym | +879878 | Nannosalarias | | scientific name | +879879 | Blennius nativitatis Regan, 1909 | | authority | +879879 | Blennius nativitatis | | synonym | +879879 | Christmas blenny | | common name | +879879 | Christmas Island blenny | | common name | +879879 | Nannosalarias nativitatis (Regan, 1909) | | authority | +879879 | Nannosalarias nativitatis | | scientific name | +879879 | pygmy blenny | | genbank common name | +879879 | throatspot blenny | | common name | +880961 | dusky pencilsmelt | | common name | +880961 | Gasteropelecus microstoma Risso, 1810 | | authority | +880961 | Gasteropelecus microstoma | | synonym | +880961 | Microstoma microstoma (Risso, 1810) | | authority | +880961 | Microstoma microstoma | | scientific name | +880961 | Serpe microstoma | | synonym | +880961 | slender argentine | | genbank common name | +880961 | slender smallmouth | | common name | +882191 | Balistes naufragium Jordan & Starks, 1895 | | authority | +882191 | Balistes naufragium | | synonym | +882191 | blunthead triggerfish | | common name | +882191 | Pseudobalistes naufragium (Jordan & Starks, 1895) | | authority | +882191 | Pseudobalistes naufragium | | scientific name | +882191 | stone triggerfish | | genbank common name | +882735 | Apis affinis Linnaeus, 1764 | | authority | +882735 | Apis affinis | | synonym | +882735 | common tiger-wasp | | common name | +882735 | lesser banded hornet | | genbank common name | +882735 | Vespa affinis continentalis | | synonym | +882735 | Vespa affinis (Linnaeus, 1764) | | authority | +882735 | Vespa affinis | | scientific name | +882753 | Antennarius maculatus (Desjardins, 1840) | | authority | +882753 | Antennarius maculatus | | scientific name | +882753 | Chironectes maculatus Desjardins, 1840 | | authority | +882753 | Chironectes maculatus | | synonym | +882753 | largespotted angler | | common name | +882753 | Phymatophryne maculata | | synonym | +882753 | warty anglerfish | | common name | +882753 | warty frogfish | | genbank common name | +882754 | Antennarius multiocellatus | | scientific name | +882754 | Antennarius multiocellatus (Valenciennes, 1837) | | authority | +882754 | Chironectes multiocellatus | | synonym | +882754 | Chironectes multiocellatus Valenciennes, 1837 | | authority | +882754 | flagpole frogfish | | common name | +882754 | longlure frogfish | | genbank common name | +882771 | Antennatus | | scientific name | +882772 | Antennarius tuberosus | | synonym | +882772 | Antennatus tuberosus (Cuvier, 1817) | | authority | +882772 | Antennatus tuberosus | | scientific name | +882772 | bandfin frogfish | | common name | +882772 | Chironectes tuberosus Cuvier, 1817 | | authority | +882772 | Chironectes tuberosus | | synonym | +882772 | pygmy frogfish | | common name | +882772 | tuberculate anglerfish | | common name | +882772 | tuberculated frogfish | | genbank common name | +882775 | Rhycherus | | scientific name | +882776 | Chironectes filamentosus Castelnau, 1872 | | authority | +882776 | Chironectes filamentosus | | synonym | +882776 | Rhycherus filamentosus (Castelnau, 1872) | | authority | +882776 | Rhycherus filamentosus | | scientific name | +882776 | tasselled angler | | common name | +882776 | tasselled anglerfish | | genbank common name | +882786 | lesser spiny eel | lesser spiny eel | common name | +882786 | Macrognathus aral (Bloch & Schneider, 1801) | | authority | +882786 | Macrognathus aral | | scientific name | +882786 | Mastacembelus aral | | synonym | +882786 | one-stripe spinyeel | | genbank common name | +882786 | Rhynchobdella aral Bloch & Schneider, 1801 | | authority | +882786 | Rhynchobdella aral | | synonym | +882817 | deepsea stalkeye fish | | common name | +882817 | Idiacanthus fasciola Peters, 1877 | | authority | +882817 | Idiacanthus fasciola | | scientific name | +882817 | Idiacanthus sp. CBM:ZF:14201 | | includes | +882817 | Idiacanthus sp. CBM:ZF:14216 | | includes | +882817 | Idiacanthus sp. CBM:ZF:14255 | | synonym | +882817 | ribbon sawtail fish | | genbank common name | +882817 | serpent black dragonfish | | common name | +882857 | Photonectes | | scientific name | +882858 | Brauer's dragonfish | | genbank common name | +882858 | Melanostomias braueri | | synonym | +882858 | Melanostomias braueri Zugmayer, 1913 | | authority | +882858 | Photonectes brauerii | | synonym | +882858 | Photonectes braueri | | scientific name | +882858 | Photonectes braueri (Zugmayer, 1913) | | authority | +882858 | scaleless dragonfish | scaleless dragonfish | common name | +884168 | Arctic cisco | Arctic cisco | genbank common name | +884168 | Baikal omul | | common name | +884168 | Coregonus autumnalis migratorius | | synonym | +884168 | Coregonus migratorius (Georgi, 1775) | | authority | +884168 | Coregonus migratorius migratorius (Georgy) | | authority | +884168 | Coregonus migratorius migratorius | | synonym | +884168 | Coregonus migratorius | | scientific name | +884168 | Salmo migratorius Georgi, 1775 | | authority | +884168 | Salmo migratorius | | synonym | +885580 | Coetomys damarensis | | synonym | +885580 | Cryptomys damarensis | | synonym | +885580 | Damara mole rat | | common name | +885580 | Damara mole-rat | | genbank common name | +885580 | Fukomys damarensis (Ogilby, 1838) | | authority | +885580 | Fukomys damarensis | | scientific name | +886298 | Alburnus tarichi (Gueldenstadt, 1814) | | authority | +886298 | Alburnus tarichi | | scientific name | +886298 | Chalcalburnus tarichi | | synonym | +886298 | Cyprinus tarichi Gueldenstadt, 1814 | | authority | +886298 | Cyprinus tarichi Guldenstadt, 1814 | | authority | +886298 | Cyprinus tarichi | | synonym | +886298 | pearl mullet | | common name | +886298 | tarek | | genbank common name | +886300 | eight-lined trumpeter | | common name | +886300 | Helotes octolineatus Jenyns, 1840 | | authority | +886300 | Helotes octolineatus | | synonym | +886300 | Pelates octolineatus (Jenyns, 1840) | | authority | +886300 | Pelates octolineatus | | scientific name | +886300 | tiger perch | | common name | +886300 | western striped grunter | | common name | +886300 | western striped trumpeter | | genbank common name | +887134 | northern gemfish | | common name | +887134 | Prometheus gemfish | | common name | +887134 | Rexea prometheoides (Bleeker, 1856) | | authority | +887134 | Rexea prometheoides | | scientific name | +887134 | royal escolar | | genbank common name | +887134 | silver gemfish | silver gemfish | common name | +887134 | southern kingfish | southern kingfish | common name | +887134 | Thyrsites prometheoides Bleeker, 1856 | | authority | +887134 | Thyrsites prometheoides | | synonym | +904093 | Epinotia radicana (Heinrich, 1923) | | authority | +904093 | Epinotia radicana | | scientific name | +904093 | Griselda radicana Heinrich, 1923 | | authority | +904093 | Griselda radicana | | synonym | +904093 | red-striped needleworm | | genbank common name | +904093 | spruce tip moth | | common name | +904236 | Myuchelys | | scientific name | +907928 | Maxomys rajah | | scientific name | +907928 | Maxomys rajah (Thomas, 1894) | | authority | +907928 | Rajah spiny rat | | genbank common name | +907928 | Rajah Sundaic Maxomys | | common name | +907928 | Rattus rajah | | synonym | +909114 | Cephalopholis hemistiktos (Rueppell, 1830) | | authority | +909114 | Cephalopholis hemistiktos | | scientific name | +909114 | halfspotted hind | | common name | +909114 | Serranus hemistiktos Rueppell, 1830 | | authority | +909114 | Serranus hemistiktos Ruppell, 1830 | | authority | +909114 | Serranus hemistiktos | | synonym | +909114 | yellofin hind | | genbank common name | +909122 | Arabian sweetlips | | common name | +909122 | Gaterin schotaf | | synonym | +909122 | grey sweetlips | | common name | +909122 | minstrel sweetlips | | genbank common name | +909122 | Plectorhinchus schotaf (Fabricius, 1775) | | authority | +909122 | Plectorhinchus schotaf | | scientific name | +909122 | Sciaena schotaf Forsskal, 1775 | | authority | +909122 | Sciaena schotaf | | synonym | +909122 | somber blubber-lips | | common name | +909122 | somber sweetlips | | common name | +909123 | lined piggy | | common name | +909123 | Pomadasys stridens (Fabricius, 1775) | | authority | +909123 | Pomadasys stridens | | scientific name | +909123 | Rhonciscus stridens | | synonym | +909123 | Sciaena stridens Forsskal, 1775 | | authority | +909123 | Sciaena stridens | | synonym | +909123 | striped piggy | | genbank common name | +909126 | Arabian monocle bream | | genbank common name | +909126 | Arabian spinecheek | | common name | +909126 | paleband spinecheek | | common name | +909126 | Sciaena ghanam Fabricius, 1775 | | authority | +909126 | Sciaena ghanam Forsskal, 1775 | | authority | +909126 | Sciaena ghanam | | synonym | +909126 | Scolopsis ghanam (Fabricius, 1775) | | authority | +909126 | Scolopsis ghanam | | scientific name | +909366 | Glauconycteris Dobson, 1875 | | authority | +909366 | Glauconycteris | | scientific name | +909367 | Chalinolobus argentatus Dobson, 1875 | | authority | +909367 | Chalinolobus argentatus | | synonym | +909367 | Common butterfly bat | | common name | +909367 | Glauconycteris argentata (Dobson, 1875) | | authority | +909367 | Glauconycteris argentata | | scientific name | +909367 | silvered bat | | genbank common name | +909369 | butterfly bat | | common name | +909369 | Chalinolobus variegatus | | synonym | +909369 | Glauconycteris variegata | | scientific name | +909369 | Glauconycteris variegata (Tomes, 1861) | | authority | +909369 | Scotophilus variegatus | | synonym | +909369 | Scotophilus variegatus Tomes, 1861 | | authority | +909369 | variegated butterfly bat | | genbank common name | +909696 | Etheostoma (Oligocephalus) | | synonym | +909696 | Oligocephalus | | scientific name | +909702 | Etheostoma (Litocara) | | synonym | +909702 | Litocara | | scientific name | +910305 | Trypauchen | | scientific name | +912803 | Bahaba | | scientific name | +912804 | Bahaba taipingensis (Herre, 1932) | | authority | +912804 | Bahaba taipingensis | | scientific name | +912804 | Chinese bahaba | | genbank common name | +912804 | giant yellow croaker | | common name | +912804 | Nibea taipingensis Herre, 1932 | | authority | +912804 | Nibea taipingensis | | synonym | +912805 | bearded croaker | | genbank common name | +912805 | bearded jewfish | | common name | +912805 | greenback croaker | | common name | +912805 | Johnius amblycephalus (Bleeker, 1855) | | authority | +912805 | Johnius amblycephalus | | scientific name | +912805 | Johnius fuscolineatus amblycephalus | | synonym | +912805 | Umbrina amblycephala Bleeker, 1855 | | authority | +912805 | Umbrina amblycephala | | synonym | +925459 | Anthropoides regulorum Bennett, 1834 | | authority | +925459 | Anthropoides regulorum | | synonym | +925459 | Balearica pavonina regulorum (Bennett, 1834) | | authority | +925459 | Balearica pavonina regulorum | | synonym | +925459 | Balearica regulorum | | scientific name | +925459 | grey crowned crane | | common name | +925459 | grey crowned-crane | | genbank common name | +925459 | royal crane | | common name | +925459 | South African crowned crane | | common name | +927612 | Plagiognathops | | scientific name | +928324 | Chikila fulleri (Alcock, 1904) | | authority | +928324 | Chikila fulleri | | scientific name | +928324 | Fuller's caecilian | | common name | +928324 | Gegeneophis fulleri (Alcock, 1904) | | authority | +928324 | Gegeneophis fulleri | | synonym | +928324 | Herpele fulleri Alcock, 1904 | | authority | +928324 | Herpele fulleri | | synonym | +928324 | Kuttal caecilian | | genbank common name | +928525 | argus frog | argus frog | common name | +928525 | Bolivian white-lipped frog | | genbank common name | +928525 | Leptodactylus bolivianus Boulenger, 1898 | | authority | +928525 | Leptodactylus bolivianus | | scientific name | +928525 | Leptodactylus ocellatus | | synonym | +928525 | Leptodactylus (Pachypus) bolivianus | | synonym | +928525 | wrestler frog | | common name | +929715 | Bidyanus welchi (McCulloch & Waite, 1917) | | authority | +929715 | Bidyanus welchi | | scientific name | +929715 | black bream | black bream | common name | +929715 | silver bream | silver bream | genbank common name | +929715 | Therapon welchi McCulloch & Waite, 1917 | | authority | +929715 | Therapon welchi | | synonym | +929715 | Welch's grunter | | common name | +932675 | boggut labeo | | common name | +932675 | Chondrostoma boggut Sykes, 1839 | | authority | +932675 | Chondrostoma boggut | | synonym | +932675 | Labeo boggut | | scientific name | +932675 | Labeo boggut (Sykes, 1839) | | authority | +932675 | minor carp | | genbank common name | +932716 | Gymnelus | | scientific name | +932717 | fish doctor | | genbank common name | +932717 | green ocean pout | | common name | +932717 | Gymnelus bilabrus Andriashev, 1937 | | authority | +932717 | Gymnelus bilabrus | | synonym | +932717 | Gymnelus viridis (Fabricius, 1780) | | authority | +932717 | Gymnelus viridis | | scientific name | +932717 | twolip pout | | common name | +933226 | Korean chub | | genbank common name | +933226 | Korean minnow | | common name | +933226 | Nipponocypris koreanus (Kim, Oh & Hosoya, 2005) | | authority | +933226 | Nipponocypris koreanus | | scientific name | +933226 | Zacco koreanus Kim, Oh & Hosoya 2005 | | authority | +933226 | Zacco koreanus | | synonym | +933990 | Nipponocypris | | scientific name | +933992 | Chanodichthys erythropterus (Basilewsky, 1855) | | authority | +933992 | Chanodichthys erythropterus | | scientific name | +933992 | common skygazer | | common name | +933992 | Cullter erythropterus | | synonym | +933992 | Culter erythropterus Basilewsky, 1855 | | authority | +933992 | Culter erythropterus | | synonym | +933992 | Cultrichthys erythropterus | | synonym | +933992 | Erythroculter erythropterus | | synonym | +933992 | predatory carp | | genbank common name | +935645 | Brannerella sluiteri Metzelaar, 1919 | | authority | +935645 | Brannerella sluiteri | | synonym | +935645 | chessboard blenny | | genbank common name | +935645 | spotted blenny | spotted blenny | common name | +935645 | Starksia sluiteri (Metzelaar, 1919) | | authority | +935645 | Starksia sluiteri | | scientific name | +935645 | Starksia sp. BOLD:AAB6268 | | includes | +941983 | blackfin mullet | | common name | +941983 | Chelon melinoptera | | synonym | +941983 | Chelon melinopterus | | scientific name | +941983 | Chelon melinopterus (Valenciennes, 1836) | | authority | +941983 | cream mullet | | common name | +941983 | Ellochelon melinoptera | | synonym | +941983 | giant-scaled mullet | | common name | +941983 | giantscale mullet | | common name | +941983 | Liza melinoptera | | synonym | +941983 | Liza melinoptera (Valenciennes, 1836) | | authority | +941983 | Mugil melinopterus | | synonym | +941983 | Mugil melinopterus Valenciennes, 1836 | | authority | +941983 | Otomebora mullet | | genbank common name | +941983 | Planiliza melinoptera | | synonym | +941983 | Planiliza melinopterus | | synonym | +941983 | Planiliza melinopterus (Valenciennes, 1836) | | authority | +941983 | St. Lucia mullet | | common name | +941984 | banded archerfish | | genbank common name | +941984 | northern rifle-fish | | common name | +941984 | Sciaena jaculatrix Pallas, 1767 | | authority | +941984 | Sciaena jaculatrix | | synonym | +941984 | Toxotes jaculatrix (Pallas, 1767) | | authority | +941984 | Toxotes jaculatrix | | scientific name | +958669 | Brachypteryx albiventris (Blanford, 1868) | | synonym | +958669 | Callene albiventris Blanford, 1868 | | authority | +958669 | Callene albiventris | | synonym | +958669 | Myiomela albiventris (Blanford, 1868) | | authority | +958669 | Myiomela albiventris | | synonym | +958669 | Sholicola albiventris (Blanford, 1868) | | authority | +958669 | Sholicola albiventris | | scientific name | +958669 | White-bellied blue robin | | common name | +958669 | White-bellied shortwing | | genbank common name | +978109 | Aceros leucocephalus waldeni | | synonym | +978109 | Aceros waldeni | | scientific name | +978109 | Aceros waldeni (Sharpe, 1877) | | authority | +978109 | Craniorrhinus waldeni Sharpe, 1877 | | authority | +978109 | Craniorrhinus waldeni | | synonym | +978109 | rufous-headed hornbill | | genbank common name | +978109 | Visayan wrinkled hornbill | | common name | +978109 | writhed-billed hornbill | | common name | +979144 | Pseudophilautus | | scientific name | +979184 | Liuixalus | | scientific name | +980415 | Arctic lamprey | | genbank common name | +980415 | Entosphenus japonicus | | synonym | +980415 | Japanese lamprey | | common name | +980415 | Lampetra camtschatica | | synonym | +980415 | Lampetra japonica (Martens, 1868) | | authority | +980415 | Lampetra japonica | | synonym | +980415 | Lethenteron camtschaticum | | scientific name | +980415 | Lethenteron camtschaticum (Tilesius, 1811) | | authority | +980415 | Lethenteron japonicum | | synonym | +980415 | Petromyzon japonicus Martens, 1868 | | authority | +980415 | Petromyzon japonicus | | synonym | +980415 | Petromyzon marinus camtschaticus | | synonym | +980415 | Petromyzon marinus camtschaticus Tilesius, 1811 | | authority | +980578 | Berdmorea interlineata | | synonym | +980578 | bubble-nest frog | | common name | +980578 | Calophrynus interlineata | | synonym | +980578 | Diplopelma interlineatum | | synonym | +980578 | Engystoma interlineatum Blyth, 1855 | | authority | +980578 | Engystoma interlineatum | | synonym | +980578 | Kalophrynus interlineatus (Blyth, 1855) | | authority | +980578 | Kalophrynus interlineatus | | scientific name | +980578 | Kalophrynus pleurostigma interlineatus | | synonym | +980578 | piebald narrowmouthed frog | | common name | +980578 | striped sticky frog | | genbank common name | +987431 | Agrotis c-nigrum | | synonym | +987431 | Amathes c-nigrum | | synonym | +987431 | climbing cutworm | | common name | +987431 | Phalaena c-nigrum Linnaeus, 1758 | | authority | +987431 | spotted cutworm | | genbank common name | +987431 | Xestia c-nigrum (Linnaeus, 1758) | | authority | +987431 | Xestia c-nigrum | | scientific name | +990218 | barenape goby | | genbank common name | +990218 | Coryphopterus duospilus | | synonym | +990218 | Fusigobius duospilus Hoese & Reader, 1985 | | authority | +990218 | Fusigobius duospilus | | scientific name | +990218 | twospot sandgoby | | common name | +990556 | Argyrops filamentosus | | scientific name | +990556 | Argyrops filamentosus (Valenciennes, 1830) | | authority | +990556 | Pagrus filamentosus | | synonym | +990556 | Pagrus filamentosus Valenciennes, 1830 | | authority | +990556 | soldierbream | | common name | +990556 | soldier bream | | genbank common name | +990946 | carpet clam | | common name | +990946 | Paphia textile (Gmelin, 1791) | | synonym | +990946 | Paphia textile | | synonym | +990946 | Paphia textilis (Gmelin, 1791) | | authority | +990946 | Paphia textilis | | synonym | +990946 | Paratapes textilis (Gmelin, 1791) | | authority | +990946 | Paratapes textilis | | scientific name | +990946 | textile venus clam | | genbank common name | +990946 | Venus textile Gmelin, 1791 | | authority | +990946 | Venus textile | | synonym | +990946 | Venus textilis Gmelin, 1791 | | authority | +990946 | Venus textilis | | synonym | +991001 | Rogadius | | scientific name | +991003 | Sebastapistes | | scientific name | +992341 | Burmese wart frog | | common name | +992341 | Dicroglossus doriae | | synonym | +992341 | Doria's frog | | genbank common name | +992341 | Euphlyctis doriae | | synonym | +992341 | Limnonectes doriae (Boulenger, 1887) | | authority | +992341 | Limnonectes doriae | | scientific name | +992341 | Rana doriae Boulenger, 1887 | | authority | +992341 | Rana doriae | | synonym | +992342 | Euphlyctis hascheana | | synonym | +992342 | hill-forest frog | | common name | +992342 | Limnonectes hascheanus | | scientific name | +992342 | Limnonectes hascheanus (Stoliczka, 1870) | | authority | +992342 | Polypedates hascheanus Stoliczka, 1870 | | authority | +992342 | Polypedates hascheanus | | synonym | +992342 | Rana hascheana | | synonym | +992342 | side-spotted frog | | genbank common name | +992342 | Taylorana hascheana | | synonym | +992343 | Euphlyctis kohchangae | | synonym | +992343 | Koh Chang frog | | common name | +992343 | Koh Chang wart frog | | genbank common name | +992343 | Limnonectes kohchangae | | scientific name | +992343 | Limnonectes kohchangae (Smith, 1922) | | authority | +992343 | Rana kohchangae Smith, 1922 | | authority | +992343 | Rana kohchangae | | synonym | +992344 | Limborg's frog | | genbank common name | +992344 | Limnonectes limborgi | | scientific name | +992344 | Limnonectes limborgi (Sclater, 1892) | | authority | +992344 | Rana limborgi Sclater, 1892 | | authority | +992344 | Rana limborgi | | synonym | +992344 | Taylorana limborgi | | synonym | +992344 | Taylor's frog | | common name | +992947 | Arremon assimilis (Boissonneau, 1840) | | authority | +992947 | Arremon assimilis | | scientific name | +992947 | Arremon torquatus assimilis | | synonym | +992947 | Buarremon assimilis (Boissonneau, 1840) | | authority | +992947 | Buarremon torquatus assimilis | | synonym | +992947 | grey-browed brush-finch | | genbank common name | +992947 | white-browed brush-finch | | common name | +996475 | Lithobates sierrae | | synonym | +996475 | Nevada yellow-legged frog | | genbank common name | +996475 | Rana boylii sierrae Camp, 1917 | | authority | +996475 | Rana boylii sierrae | | synonym | +996475 | Rana sierrae Camp, 1917 | | authority | +996475 | Rana sierrae | | scientific name | +996475 | Sierra Nevada yellow-legged frog | | common name | +996475 | sierra yellow-legged frog | | common name | +997023 | Herklotsichthys | | scientific name | +997024 | bluestripe herring | | genbank common name | +997024 | Clupea quadrimaculata Rueppell, 1837 | | authority | +997024 | Clupea quadrimaculata Ruppell, 1837 | | authority | +997024 | Clupea quadrimaculata | | synonym | +997024 | fourspot herring | | common name | +997024 | fourspot sardine | | common name | +997024 | goldspot herring | | common name | +997024 | goldspot sardine | | common name | +997024 | Herklotsichthys quadrimaculatus (Rueppell, 1837) | | authority | +997024 | Herklotsichthys quadrimaculatus | | scientific name | +997024 | spotted herring | | common name | +998003 | African coris | | genbank common name | +998003 | African wrasse | | common name | +998003 | Coris cuvieri (Bennett, 1831) | | authority | +998003 | Coris cuvieri | | scientific name | +998003 | false clownwrasse | | common name | +998003 | Julis cuvieri Bennett, 1831 | | authority | +998003 | Julis cuvieri | | synonym | +999462 | Alces alces americana | | synonym | +999462 | Alces americanus (Clinton, 1822) | | authority | +999462 | Alces americanus | | scientific name | +999462 | American moose | | genbank common name | +999462 | Cervus americanus Clinton, 1822 | | authority | +999462 | Cervus americanus | | synonym | +999462 | moose | | common name | +1001915 | Barbus thomassi Day, 1874 | | authority | +1001915 | Barbus thomassi | | synonym | +1001915 | Gonoproktopterus thomassi | | synonym | +1001915 | Hypselobarbus thomassi (Day, 1874) | | authority | +1001915 | Hypselobarbus thomassi | | scientific name | +1001915 | Megalobarbus thomassi | | synonym | +1001915 | Nilgiri shark | | common name | +1001915 | red canarese barb | | genbank common name | +1003683 | Ambassis ambassis (Lacepede, 1802) | | authority | +1003683 | Ambassis ambassis | | scientific name | +1003683 | Aspro ambassis | | synonym | +1003683 | Centropomus ambassis Lacepede, 1802 | | authority | +1003683 | Centropomus ambassis | | synonym | +1003683 | Commerson's glassy | | common name | +1003683 | Commerson's glassy perchlet | | genbank common name | +1004435 | Dendrobates (Oophaga) | | synonym | +1004435 | Oophaga | | scientific name | +1004436 | Dendrobates (Ranitomeya) | | synonym | +1004436 | Ranitomeya | | scientific name | +1004470 | Dendrobates (Excidobates) | | synonym | +1004470 | Excidobates | | scientific name | +1008893 | Hylarana | | scientific name | +1008893 | Hylarana Tschudi, 1838 | | authority | +1008990 | Paradactylodon Risch, 1984 | | authority | +1008990 | Paradactylodon | | scientific name | +1010709 | Diagramma lessonii Cuvier, 1830 | | authority | +1010709 | Diagramma lessonii | | synonym | +1010709 | Lesson's thicklip | | common name | +1010709 | lined sweetlips | | common name | +1010709 | Plectorhinchus lessonii (Cuvier, 1830) | | authority | +1010709 | Plectorhinchus lessonii | | scientific name | +1010709 | Plectorhinchus lessoni | | synonym | +1010709 | striped sweetlips | striped sweetlips | genbank common name | +1010711 | Indian Ocean oriental sweetlips | | genbank common name | +1010711 | oriental sweetlips | oriental sweetlips | common name | +1010711 | Perca vittata Linnaeus, 1758 | | authority | +1010711 | Perca vittata | | synonym | +1010711 | Plectorhinchus vittatus (Linnaeus, 1758) | | authority | +1010711 | Plectorhinchus vittatus | | scientific name | +1016941 | angular rough shark | | common name | +1016941 | angular roughshark | | genbank common name | +1016941 | Oxynotus centrina (Linnaeus, 1758) | | authority | +1016941 | Oxynotus centrina | | scientific name | +1016941 | Squalus centrina Linnaeus, 1758 | | authority | +1016941 | Squalus centrina | | synonym | +1017371 | Mulloides pfluegeri Steindachner, 1900 | | authority | +1017371 | Mulloides pfluegeri | | synonym | +1017371 | Mulloidichthys pfluegeri | | scientific name | +1017371 | Mulloidichthys pfluegeri (Steindachner, 1900) | | authority | +1017371 | orange goatfish | | genbank common name | +1017371 | rosy goatfish | rosy goatfish | common name | +1029687 | Bolitoglossa (Bolitoglossa) mulleri | | synonym | +1029687 | Bolitoglossa mulleri (Brocchi, 1883) | | authority | +1029687 | Bolitoglossa mulleri | | scientific name | +1029687 | Mueller's mushroomtongue salamander | | genbank common name | +1029687 | Muller's mushroomtongue salamander | | common name | +1029687 | Oedipus mexicanus mulleri | | synonym | +1029687 | Oedipus mulleri | | synonym | +1029687 | Spelerpes mulleri Brocchi, 1883 | | authority | +1029687 | Spelerpes mulleri | | synonym | +1037525 | Afrana ruwenzorica | | synonym | +1037525 | Amietia ruwenzorica (Laurent, 1972) | | authority | +1037525 | Amietia ruwenzorica | | scientific name | +1037525 | Rana ruwenzorica Laurent, 1972 | | authority | +1037525 | Rana ruwenzorica | | synonym | +1037525 | Ruwenzori Range frog | | genbank common name | +1037525 | Ruwenzori river frog | Ruwenzori river frog | common name | +1040952 | Rhinomugil | | scientific name | +1041117 | Bellinger River snapping turtle | | common name | +1041117 | Bellinger river turtle | | genbank common name | +1041117 | Elseya georgesi Cann, 1997 | | authority | +1041117 | Elseya georgesi | | synonym | +1041117 | Myuchelys georgesi Cann, 1997 | | authority | +1041117 | Myuchelys georgesi | | scientific name | +1041117 | Wollumbinia georgesi | | synonym | +1041596 | Liopholis | | scientific name | +1042646 | Alaska pollock | | common name | +1042646 | Gadus chalcogrammus Pallas, 1814 | | authority | +1042646 | Gadus chalcogrammus | | scientific name | +1042646 | Norwegian pollock | | common name | +1042646 | Theragra chalcogramma | | synonym | +1042646 | walleye pollock | | genbank common name | +1043195 | Inegocia | | scientific name | +1045542 | Ambassis gymnocephalus (Lacepede, 1802) | | authority | +1045542 | Ambassis gymnocephalus | | scientific name | +1045542 | bald glassy | | genbank common name | +1045542 | bald glassy perchlet | | common name | +1045542 | longspine glassy | longspine glassy | common name | +1045542 | Lutjanus gymnocephalus Lacepede, 1802 | | authority | +1045542 | Lutjanus gymnocephalus | | synonym | +1045542 | nakedhead glass perchlet | | common name | +1045542 | naked-head glassy perchlet | | common name | +1045544 | dark-margined flagtail | | genbank common name | +1045544 | Dules marginatus Cuvier, 1829 | | authority | +1045544 | Dules marginatus | | synonym | +1045544 | Kuhlia marginata (Cuvier, 1829) | | authority | +1045544 | Kuhlia marginata | | scientific name | +1045544 | red-tailed jungle perch | | common name | +1045544 | spotted flagtail | | common name | +1046120 | Gobioides | | scientific name | +1046121 | dragon fish | | common name | +1046121 | dragon goby | | common name | +1046121 | Gobioides broussonetii | | synonym | +1046121 | Gobioides broussonnetii Lacepede, 1800 | | authority | +1046121 | Gobioides broussonnetii | | scientific name | +1046121 | violet goby | | genbank common name | +1046901 | Cyriopagopus | | scientific name | +1047088 | Arvicola amphibius (Linnaeus, 1758) | | authority | +1047088 | Arvicola amphibius | | scientific name | +1047088 | Arvicola terrestris (Linnaeus, 1758) | | synonym | +1047088 | Eurasian water vole | | genbank common name | +1047088 | European water vole | | common name | +1047088 | Mus amphibius Linnaeus, 1758 | | authority | +1047088 | Mus amphibius | | synonym | +1047102 | Athyma perius (Linnaeus, 1758) | | authority | +1047102 | Athyma perius | | scientific name | +1047102 | common sargeant butterfly | | common name | +1047102 | common sargeant | | genbank common name | +1047102 | Papilio perius Linnaeus, 1758 | | authority | +1047102 | Papilio perius | | synonym | +1048219 | PBoV1 | | acronym | +1048219 | Porcine bocavirus 1 | | scientific name | +1048219 | Porcine bocavirus 1 Shan et al. 2011 | | authority | +1048219 | Porcine bocavirus G1 | | equivalent name | +1048220 | PBoV2 | | acronym | +1048220 | Porcine bocavirus 2 | | scientific name | +1048220 | Porcine bocavirus 2 Shan et al. 2011 | | authority | +1048220 | Porcine bocavirus G2 | | equivalent name | +1048243 | SERV | | acronym | +1048243 | Simian endogenous retrovirus | | scientific name | +1048243 | Simian endogenous retrovirus type D | | equivalent name | +1048243 | Simian endogenous retrovirus van der Kuyl et al. 1997 | | authority | +1048669 | Chaparana vicina | | synonym | +1048669 | Himalaya Paa frog | | common name | +1048669 | Murree frog | | genbank common name | +1048669 | Nanorana vicina | | scientific name | +1048669 | Nanorana vicina (Stoliczka, 1872) | | authority | +1048669 | Paa vicina | | synonym | +1048669 | Rana vicina Stoliczka, 1872 | | authority | +1048669 | Rana vicina | | synonym | +1048669 | Stoliczka's frog | | common name | +1054643 | burrowing goby | burrowing goby | common name | +1054643 | Gobius vagina Bloch & Schneider, 1801 | | authority | +1054643 | Gobius vagina | | synonym | +1054643 | Indo-Pacific burrowing goby | | genbank common name | +1054643 | pink mud gobv | | common name | +1054643 | red goby | | common name | +1054643 | Trypauchen vagina (Bloch & Schneider, 1801) | | authority | +1054643 | Trypauchen vagina | | scientific name | +1070161 | Ericosoma | | scientific name | +1070322 | Sibynophis | | scientific name | +1070323 | collared black-headed snake | | genbank common name | +1070323 | common blackhead | | common name | +1070323 | common many-tooth snake | | common name | +1070323 | Polyodontophis collaris | | synonym | +1070323 | Psammophis collaris Gray, 1853 | | authority | +1070323 | Psammophis collaris | | synonym | +1070323 | Sibynophis collaris (Gray, 1853) | | authority | +1070323 | Sibynophis collaris | | scientific name | +1071977 | Arthroleptis adolfifriederici Nieden, 1911 | | authority | +1071977 | Arthroleptis adolfifriederici | | scientific name | +1071977 | Arthroleptis adolfi-friederici | | synonym | +1071977 | Rugege Forest squeaker frog | | common name | +1071977 | Rugegewald screeching frog | | genbank common name | +1072479 | bullnose eagle ray | | genbank common name | +1072479 | bullnose ray | | common name | +1072479 | Myliobatis freminvillei Lesueur, 1824 | | authority | +1072479 | Myliobatis freminvillei | | scientific name | +1072479 | Myliobatis freminvillii | | synonym | +1072485 | round fantail stingray | | common name | +1072485 | round stingray | | genbank common name | +1072485 | Taeniura grabata (Geoffroy St. Hilaire, 1817) | | authority | +1072485 | Taeniura grabata | | scientific name | +1072485 | Taeniurops grabata | | synonym | +1072485 | Trygon grabatus Geoffroy St. Hilaire, 1817 | | authority | +1072485 | Trygon grabatus | | synonym | +1072513 | Typhlonarke | | scientific name | +1072514 | Astrape aysoni Hamilton, 1902 | | authority | +1072514 | Astrape aysoni | | synonym | +1072514 | blind electric ray | | genbank common name | +1072514 | blind legged torpedo | | common name | +1072514 | round electric ray | | common name | +1072514 | Typhlonarke aysoni (Hamilton, 1902) | | authority | +1072514 | Typhlonarke aysoni | | scientific name | +1085684 | black bream | black bream | common name | +1085684 | Hephaestus fuliginosus (Macleay, 1883) | | authority | +1085684 | Hephaestus fuliginosus | | scientific name | +1085684 | sooty grunter | | genbank common name | +1085684 | Therapon fuliginosus Macleay, 1883 | | authority | +1085684 | Therapon fuliginosus | | synonym | +1088130 | Cervus timorensis | | synonym | +1088130 | Javan rusa | | genbank common name | +1088130 | Rusa timorensis (de Blainvillle, 1822) | | authority | +1088130 | Rusa timorensis | | scientific name | +1088130 | Sunda sambar | | common name | +1089686 | Bougainville's anglerfish | | genbank common name | +1089686 | Bougainville's frogfish | | common name | +1089686 | Chironectes bougainvillii | | synonym | +1089686 | Chironectes bougainvilli | | synonym | +1089686 | Chironectes bougainvilli Valenciennes, 1837 | | authority | +1089686 | Histiophryne bougainvilli | | scientific name | +1089686 | Histiophryne bougainvilli (Valenciennes, 1837) | | authority | +1089686 | smooth anglerfish | smooth anglerfish | common name | +1091402 | bamboo poison frog | | common name | +1091402 | biolat poison frog | | common name | +1091402 | Dendrobates biolat Morales, 1992 | | authority | +1091402 | Dendrobates biolat | | synonym | +1091402 | Dendrobates lamasi Morales, 1992 | | authority | +1091402 | Dendrobates lamasi | | synonym | +1091402 | Dendrobates sirensis Aichinger, 1991 | | authority | +1091402 | Dendrobates sirensis | | synonym | +1091402 | Pasco poison frog | | common name | +1091402 | Ranitomeya biolat (Morales, 1992) | | authority | +1091402 | Ranitomeya biolat | | synonym | +1091402 | Ranitomeya lamasi (Morales, 1992) | | authority | +1091402 | Ranitomeya lamasi | | synonym | +1091402 | Ranitomeya sirensis | | scientific name | +1091402 | Sira poison frog | | genbank common name | +1093613 | Crossocheilus (Crossocheilichthys) langei | | synonym | +1093613 | Crossocheilus langei Bleeker, 1860 | | authority | +1093613 | Crossocheilus langei | | scientific name | +1093613 | red algae eater | | genbank common name | +1093613 | Siamese algae eater | Siamese algae eater | common name | +1094710 | Kajikia | | scientific name | +1095381 | Giuris | | scientific name | +1095381 | Ophieleotris | | synonym | +1095382 | Eleotris margaritacea | | synonym | +1095382 | Eleotris margaritacea Valenciennes, 1837 | | authority | +1095382 | Giuris margaritacea | | synonym | +1095382 | Giuris margaritacea (Valenciennes, 1837) | | authority | +1095382 | Giuris margaritaceus | | scientific name | +1095382 | Giuris margaritaceus (Valenciennes, 1837) | | authority | +1095382 | Ophieleotris aporos (Bleeker, 1854) | | authority | +1095382 | Ophieleotris aporos | | synonym | +1095382 | Ophieleotris margaritacea | | synonym | +1095382 | snakehead goby | | common name | +1095382 | snakehead gudgeon | | genbank common name | +1095716 | bigeye ilisha | | genbank common name | +1095716 | Clupea megalopterus Swainson, 1839 | | authority | +1095716 | Clupea megalopterus | | synonym | +1095716 | Ilisha megaloptera | | scientific name | +1095716 | Ilisha megaloptera (Swainson, 1839) | | authority | +1095716 | Indian ilisha | | common name | +1095716 | jeweled shad | | common name | +1104375 | Glauertia russelli Loveridge, 1933 | | authority | +1104375 | Glauertia russelli | | synonym | +1104375 | northwest toadlet | | common name | +1104375 | Russell's toadlet | | genbank common name | +1104375 | Uperoleia russelli (Loveridge, 1933) | | authority | +1104375 | Uperoleia russelli | | scientific name | +1104425 | Coorg night frog | | genbank common name | +1104425 | Nyctibatrachus sanctipalustris Rao, 1920 | | authority | +1104425 | Nyctibatrachus sanctipalustris | | scientific name | +1104425 | Nyctibatrachus sancti-palustris | | synonym | +1104425 | sacred swamp wrinkled frog | | common name | +1108006 | Alauda novaeseelandiae Gmelin, 1789 | | authority | +1108006 | Alauda novaeseelandiae | | synonym | +1108006 | Anthus novaeseelandiae (Gmelin, 1789) | | authority | +1108006 | Anthus novaeseelandiae | | scientific name | +1108006 | Australasian pipit | | common name | +1108006 | New Zealand pipit | | genbank common name | +1108805 | Sufflogobius | | scientific name | +1108806 | bearded goby | bearded goby | common name | +1108806 | Gobius bibarbatus | | synonym | +1108806 | Gobius bibarbatus von Bonde, 1923 | | authority | +1108806 | pelagic goby | | genbank common name | +1108806 | Sufflogobius bibarbatus | | scientific name | +1108806 | Sufflogobius bibarbatus (von Bonde, 1923) | | authority | +1109079 | Crax tomentosa | | synonym | +1109079 | Crax tomentosa von Spix, 1825 | | authority | +1109079 | crestless curassow | | genbank common name | +1109079 | lesser razor-billed curassow | | common name | +1109079 | Mitu tomentosum | | scientific name | +1109079 | Mitu tomentosum (Spix, 1825) | | authority | +1110376 | Curruca pallida Hemprich & Ehrenberg, 1833 | | authority | +1110376 | Curruca pallida | | synonym | +1110376 | Hippolais pallida | | synonym | +1110376 | Iduna pallida (Hemprich & Ehrenberg, 1833) | | authority | +1110376 | Iduna pallida | | scientific name | +1110376 | olivaceous warbler | | genbank common name | +1110376 | Western olivaceous warbler | | common name | +1110606 | cream-spotted tree frog | | common name | +1110606 | Hyla castanea Steindachner, 1867 | | authority | +1110606 | Hyla castanea | | synonym | +1110606 | Litoria castanea | | scientific name | +1110606 | Litoria castanea Steindachner, 1867 | | authority | +1110606 | New England swamp from | | common name | +1110606 | Ranoidea castanea | | synonym | +1110606 | yellow-spotted bell frog | | common name | +1110606 | yellow-spotted tree frog | yellow-spotted tree frog | genbank common name | +1111465 | bluespot mullet | | genbank common name | +1111465 | Crenimugil seheli (Fabricius, 1775) | | authority | +1111465 | Crenimugil seheli | | scientific name | +1111465 | Liza formosae Oshima, 1922 | | authority | +1111465 | Liza formosae | | synonym | +1111465 | Moolgarda seheli (Fabricius, 1775) | | authority | +1111465 | Moolgarda seheli | | synonym | +1111465 | Mugil crenilabis seheli Forsskal, 1775 | | authority | +1111465 | Mugil crenilabis seheli | | synonym | +1111465 | Mugil crenilabis var. seheli | | synonym | +1111465 | Mugil seheli | | synonym | +1111465 | Osteomugil formosae (Oshima, 1922) | | authority | +1111465 | Osteomugil formosae | | synonym | +1111465 | Taiwanese mullet | | common name | +1111465 | Valamugil formosae (Oshima, 1922) | | authority | +1111465 | Valamugil formosae | | synonym | +1111465 | Valamugil seheli (Fabricius, 1775) | | authority | +1111465 | Valamugil seheli | | synonym | +1111470 | corsula | | genbank common name | +1111470 | false four-eyed fish | | common name | +1111470 | Mugil corsula Hamilton, 1822 | | authority | +1111470 | Mugil corsula | | synonym | +1111470 | Rhinomugil corsula (Hamilton, 1822) | | authority | +1111470 | Rhinomugil corsula | | scientific name | +1111477 | Neomyxus | | scientific name | +1111478 | acute-jawed mullet | | common name | +1111478 | brown mullet | | genbank common name | +1111478 | Chaenomugil leuciscus | | synonym | +1111478 | Myxus leuciscus Guenther, 1872 | | authority | +1111478 | Myxus leuciscus Gunther, 1872 | | authority | +1111478 | Myxus leuciscus | | synonym | +1111478 | Neomyxus leuciscus (Guenther, 1872) | | authority | +1111478 | Neomyxus leuciscus | | scientific name | +1112861 | blond capuchin | | genbank common name | +1112861 | blonde capuchin | | common name | +1112861 | Cebus flavius (Schreber, 1774) | | authority | +1112861 | Cebus flavius | | synonym | +1112861 | Marcgrave's capuchin | | common name | +1112861 | Sapajus flavius | | scientific name | +1112861 | Simia flavia Schreber, 1774 | | authority | +1112861 | Simia flavia | | synonym | +1114792 | Equus caballus ferus | | synonym | +1114792 | Equus ferus Boddaert, 1785 | | authority | +1114792 | Equus ferus | | scientific name | +1114792 | Russian wild horse | | common name | +1114792 | tarpan | | genbank common name | +1115652 | Dring's flying frog | | common name | +1115652 | Feihyla kajau (Dring, 1983) | | authority | +1115652 | Feihyla kajau | | scientific name | +1115652 | Kurixalus kajau (Dring, 1983) | | authority | +1115652 | Kurixalus kajau | | synonym | +1115652 | Rhacophorus kajau Dring, 1983 | | authority | +1115652 | Rhacophorus kajau | | synonym | +1115652 | white-eared tree frog | | genbank common name | +1116803 | Andinobates | | scientific name | +1120762 | Derwent whitebait | | common name | +1120762 | Haplochiton sealii Johnston, 1883 | | authority | +1120762 | Haplochiton sealii | | synonym | +1120762 | Lovettia sealii (Johnston, 1883) | | authority | +1120762 | Lovettia sealii | | scientific name | +1120762 | Tasmanian whitebait | | genbank common name | +1120768 | Lithobates fisheri | | synonym | +1120768 | Rana fisheri | | scientific name | +1120768 | Rana fisheri Stejneger, 1893 | | authority | +1120768 | Vegas Valley frog | | common name | +1120768 | Vegas Valley leopard frog | | genbank common name | +1124502 | Awaous ocellaris (Broussonet, 1782) | | authority | +1124502 | Awaous ocellaris | | scientific name | +1124502 | eyespot goby | | common name | +1124502 | Gobius ocellaris Broussonet, 1782 | | authority | +1124502 | Gobius ocellaris | | synonym | +1124502 | spotfin river goby | | genbank common name | +1129741 | Chroicocephalus | | scientific name | +1130116 | Leptobrachella ventripunctata (Fei, Ye & Li, 1990) | | authority | +1130116 | Leptobrachella ventripunctata | | scientific name | +1130116 | Leptolalax ventripunctatus Fei, Ye, & Li, 1990 | | authority | +1130116 | Leptolalax ventripunctatus | | synonym | +1130116 | Paramegophrys ventripunctatus | | synonym | +1130116 | speckle-bellied metacarpal-tubercled toad | | genbank common name | +1130116 | Yunnan Asian toad | | common name | +1130117 | brown spine-eyed frog | | common name | +1130117 | Burmese spadefoot toad | | genbank common name | +1130117 | concave-crowned horned toad | | common name | +1130117 | Leptobrachium parvum Boulenger, 1893 | | authority | +1130117 | Leptobrachium parvum | | synonym | +1130117 | lesser stream horned frog | | common name | +1130117 | Megalophrys parva | | synonym | +1130117 | Megophrys parva (Boulenger, 1893) | | authority | +1130117 | Megophrys parva | | scientific name | +1130117 | mountain horned frog | | common name | +1130117 | Myanmar pelobatid toad | | common name | +1130117 | Panophrys parva | | synonym | +1130117 | small spadefoot toad | | common name | +1130117 | tubercular breasted frog | | common name | +1130117 | Xenophrys parva (Boulenger, 1893) | | authority | +1130117 | Xenophrys parva | | synonym | +1131247 | Scenopoeetes | | scientific name | +1131888 | Chiropterotriton megarhinus Rabb, 1960 | | authority | +1131888 | Chiropterotriton megarhinus | | synonym | +1131888 | Dendrotriton megarhinus (Rabb, 1960) | | authority | +1131888 | Dendrotriton megarhinus | | scientific name | +1131888 | longnose bromeliad salamander | | genbank common name | +1131888 | long-nosed bromeliad salamander | | common name | +1131890 | Bolitoglossa xolocalcae | | synonym | +1131890 | Bolitoglossa xolocalcae Taylor, 1941 | | authority | +1131890 | Chiropterotriton xolocalcae | | synonym | +1131890 | Dendrotriton xolocalcae | | scientific name | +1131890 | Dendrotriton xolocalcae (Taylor, 1941) | | authority | +1131890 | Xolocalca bromeliad salamander | | genbank common name | +1131890 | Xolocalco bromeliad salamander | | common name | +1133662 | Adenomera lutzi Heyer, 1975 | | authority | +1133662 | Adenomera lutzi | | scientific name | +1133662 | Leptodactylus (Lithodytes) lutzi | | synonym | +1133662 | Leptodactylus lutzi | | synonym | +1133662 | Lutz's thin-toed frog | | genbank common name | +1133662 | Lutz's tropical bullfrog | | common name | +1134580 | Moolgarda speigleri | | synonym | +1134580 | Mugil speigleri Bleeker, 1858 | | authority | +1134580 | Mugil speigleri | | synonym | +1134580 | Osteomugil speigleri (Bleeker, 1858) | | authority | +1134580 | Osteomugil speigleri | | scientific name | +1134580 | Speigler's grey mullet | | common name | +1134580 | Speigler's mullet | | genbank common name | +1134580 | Valamugil speigleri (Bleeker, 1858) | | authority | +1134580 | Valamugil speigleri | | synonym | +1137846 | Chelonoidis nigra species complex | | scientific name | +1138020 | Benguella reed frog | | common name | +1138020 | Bocage's sharp-nosed reed frog | | genbank common name | +1138020 | Hyperolius benguellensis (Bocage, 1893) | | authority | +1138020 | Hyperolius benguellensis | | scientific name | +1138020 | Rappia benguellensis Bocage, 1893 | | authority | +1138020 | Rappia benguellensis | | synonym | +1141927 | grey perch | | common name | +1141927 | longspine grunt | | genbank common name | +1141927 | Pomadasys macracanthus (Guenther, 1864) | | authority | +1141927 | Pomadasys macracanthus | | synonym | +1141927 | Pristipoma macracanthum Guenther, 1864 | | authority | +1141927 | Pristipoma macracanthum Gunther, 1864 | | authority | +1141927 | Pristipoma macracanthum | | synonym | +1141927 | Rhencus macracanthus (Guenther, 1864) | | authority | +1141927 | Rhencus macracanthus | | scientific name | +1141933 | eastern striped grunter | | common name | +1141933 | Helotes sexlineatus | | synonym | +1141933 | Pelates sexlineatus (Quoy & Gaimard, 1824) | | authority | +1141933 | Pelates sexlineatus | | scientific name | +1141933 | Pristipoma sexlineatum Quoy & Gaimard, 1824 | | authority | +1141933 | Pristipoma sexlineatum | | synonym | +1141933 | six-lined trumpeter | | genbank common name | +1141933 | striped terapon | | common name | +1143719 | Cervus nippon dybowskii | | synonym | +1143719 | Cervus nippon mantchuricus | | scientific name | +1143719 | Cervus nippon mantchuricus Swinhoe, 1864 | | authority | +1143719 | Cervus nippon mantschuricus | | synonym | +1143719 | Dybowski's sika deer | | common name | +1143719 | Manchurian sika deer | | genbank common name | +1146954 | Blenniella gibbifrons (Quoy & Gaimard, 1824) | | authority | +1146954 | Blenniella gibbifrons | | scientific name | +1146954 | bullethead rockskipper | | common name | +1146954 | hump-headed blenny | | genbank common name | +1146954 | Istiblennius gibbifrons | | synonym | +1146954 | Salarias gibbifrons Quoy & Gaimard, 1824 | | authority | +1146954 | Salarias gibbifrons | | synonym | +1146960 | Cephalopholis spiloparaea | | scientific name | +1146960 | Cephalopholis spiloparaea (Valenciennes, 1828) | | authority | +1146960 | orange-red pigmy grouper | | common name | +1146960 | orange rock cod | | common name | +1146960 | Serranus spiloparaeus | | synonym | +1146960 | Serranus spiloparaeus Valenciennes, 1828 | | authority | +1146960 | strawberry cod | | common name | +1146960 | strawberry grouper | | common name | +1146960 | strawberry hind | | genbank common name | +1146960 | strawberry rockcod | | common name | +1146965 | Corythoichthys flavofasciatus (Ruppell, 1838) | | authority | +1146965 | Corythoichthys flavofasciatus | | scientific name | +1146965 | network pipefish | | genbank common name | +1146965 | Syngnathus flavofasciatus Ruppell, 1838 | | authority | +1146965 | Syngnathus flavofasciatus | | synonym | +1146965 | yellow-banded pipefish | | common name | +1146973 | beautiful rockskipper | | genbank common name | +1146973 | dusky blenny | | common name | +1146973 | Istiblennius bellus (Gunther, 1861) | | authority | +1146973 | Istiblennius bellus | | scientific name | +1146973 | Salarias bellus Gunther, 1861 | | authority | +1146973 | Salarias bellus | | synonym | +1146980 | Anthias evansi Smith, 1954 | | authority | +1146980 | Anthias evansi | | synonym | +1146980 | longfin basslet | | common name | +1146980 | long-finned fairy basslet | | common name | +1146980 | Mirolabrichthys evansi | | synonym | +1146980 | Pseudanthias evansi | | scientific name | +1146980 | Pseudanthias evansi (Smith, 1954) | | authority | +1146980 | yellowback anthias | | genbank common name | +1146980 | yellowtail anthias | | common name | +1147084 | Exallias | | scientific name | +1147085 | Exallias brevis (Kner, 1868) | | authority | +1147085 | Exallias brevis | | scientific name | +1147085 | leopard blenny | | genbank common name | +1147085 | Salarias brevis Kner, 1868 | | authority | +1147085 | Salarias brevis | | synonym | +1147085 | shortbodied blenny | | common name | +1147086 | Foa | | scientific name | +1147087 | bay cardinalfish | | common name | +1147087 | Foa brachygramma (Jenkins, 1903) | | authority | +1147087 | Foa brachygramma | | scientific name | +1147087 | Fowleria brachygrammus Jenkins, 1903 | | authority | +1147087 | Fowleria brachygrammus | | synonym | +1147087 | weed cardinalfish | | genbank common name | +1147743 | Fistularia paradoxa Pallas, 1770 | | authority | +1147743 | Fistularia paradoxa | | synonym | +1147743 | Fistvlaria paradoxa | | synonym | +1147743 | harlequin ghost pipefish | | genbank common name | +1147743 | ornate ghostpipefish | | common name | +1147743 | Solenostomus paradoxus (Pallas, 1770) | | authority | +1147743 | Solenostomus paradoxus | | scientific name | +1154649 | blinch | | common name | +1154649 | broad shad | | common name | +1154649 | Caitipa mojarra | | genbank common name | +1154649 | Diapterus rhombeus (Cuvier, 1829) | | authority | +1154649 | Diapterus rhombeus | | scientific name | +1154649 | Gerres rhombeus Cuvier, 1829 | | authority | +1154649 | Gerres rhombeus | | synonym | +1154649 | rhombic mojarra | | common name | +1154649 | rhomboid mojarra | | common name | +1154649 | sea patwa | | common name | +1154649 | silver mojarra | silver mojarra | common name | +1155711 | Amblyglyphidodon ternatensis (Bleeker, 1853) | | authority | +1155711 | Amblyglyphidodon ternatensis | | scientific name | +1155711 | Glyphisodon ternatensis Bleeker, 1853 | | authority | +1155711 | Glyphisodon ternatensis | | synonym | +1155711 | ternate damselfish | | common name | +1155711 | ternate damsel | | genbank common name | +1156095 | Carapus mourlani (Petit, 1934) | | authority | +1156095 | Carapus mourlani | | scientific name | +1156095 | Fierasfer mourlani Petit, 1934 | | authority | +1156095 | Fierasfer mourlani | | synonym | +1156095 | silver pearlfish | | common name | +1156095 | star pearlfish | | genbank common name | +1156139 | Indo-Pacific shorttail conger | | common name | +1156139 | Indo-Pacific slender worm-eel | | genbank common name | +1156139 | Muraenichthys gymnotus Bleeker, 1857 | | authority | +1156139 | Muraenichthys gymnotus | | synonym | +1156139 | Scolecenchelys gymnota (Bleeker, 1857) | | authority | +1156139 | Scolecenchelys gymnota | | scientific name | +1156144 | chin-band goby | | common name | +1156144 | chinstripe goby | | genbank common name | +1156144 | Gobius genivittatus | | synonym | +1156144 | Gobius genivittatus Valenciennes, 1837 | | authority | +1156144 | Stenogobius genivittatus | | scientific name | +1156144 | Stenogobius genivittatus (Valenciennes, 1837) | | authority | +1156498 | Belodontichthys dinema (Bleeker, 1851) | | authority | +1156498 | Belodontichthys dinema | | scientific name | +1156498 | Belodontichthys macrochir Bleeker, 1858 | | authority | +1156498 | Belodontichthys macrochir | | synonym | +1156498 | Malayan toothed catfish | | genbank common name | +1156498 | Malaysian toothed catfish | | common name | +1156498 | Wallago dinema Bleeker, 1851 | | authority | +1156498 | Wallago dinema | | synonym | +1157335 | Dentex nematophorus Bleeker, 1854 | | authority | +1157335 | Dentex nematophorus | | synonym | +1157335 | doublewhip threadfin bream | | genbank common name | +1157335 | longfin threadfin-bream | | common name | +1157335 | Nemipterus nematophorus (Bleeker, 1854) | | authority | +1157335 | Nemipterus nematophorus | | scientific name | +1158920 | Ardea grayii Sykes, 1832 | | authority | +1158920 | Ardea grayii | | synonym | +1158920 | Ardeola grayii | | scientific name | +1158920 | Ardeola grayii (Sykes, 1832) | | authority | +1158920 | Indian pond-heron | | genbank common name | +1158920 | paddybird | | common name | +1159274 | chainlink moray eel | | common name | +1159274 | chain moray eel | | common name | +1159274 | chain moray | | genbank common name | +1159274 | Echidna catenata (Bloch, 1795) | | authority | +1159274 | Echidna catenata | | scientific name | +1159274 | Gymnothorax catenata Bloch, 1795 | | authority | +1159274 | Gymnothorax catenata | | synonym | +1159274 | Gymnothorax catenatus Bloch, 1795 | | authority | +1159274 | Gymnothorax catenatus | | synonym | +1160816 | Apus pallidus | | scientific name | +1160816 | Apus pallidus (Shelley, 1870) | | authority | +1160816 | Cypselus pallidus Shelley, 1870 | | authority | +1160816 | Cypselus pallidus | | synonym | +1160816 | Fahlsegler | | common name | +1160816 | pallid swift | | genbank common name | +1161366 | Amniataba | | scientific name | +1161368 | Amniataba caudavittata (Richardson, 1845) | | authority | +1161368 | Amniataba caudavittata | | scientific name | +1161368 | Amniataba caudavittatus | | synonym | +1161368 | Datnia caudavittata Richardson, 1845 | | authority | +1161368 | Datnia caudavittata Richardson. 1845 | | authority | +1161368 | Datnia caudavittata | | synonym | +1161368 | flagtailed terapon | | common name | +1161368 | yellow-tailed perch | | common name | +1161368 | yellowtail grunter | | common name | +1161368 | yellowtail trumpeter | | genbank common name | +1161369 | Amniataba percoides (Guenther, 1864) | | authority | +1161369 | Amniataba percoides | | scientific name | +1161369 | banded grunter | banded grunter | common name | +1161369 | barred grunter | | genbank common name | +1161369 | Therapon percoides Guenther, 1864 | | authority | +1161369 | Therapon percoides Gunther, 1864 | | authority | +1161369 | Therapon percoides | | synonym | +1162258 | Engystoma pictiventre Cope, 1886 | | authority | +1162258 | Engystoma pictiventre | | synonym | +1162258 | Engystoma pictiventris | | synonym | +1162258 | Gastrophryne pictiventris (Cope, 1886) | | authority | +1162258 | Gastrophryne pictiventris | | scientific name | +1162258 | Microhyla pictiventris | | synonym | +1162258 | Nicaragua narrowmouth toad | | common name | +1162258 | southern narrow-mouthed toad | | genbank common name | +1163533 | Bennett's moray | | common name | +1163533 | Scuticaria okinawae (Jordan & Snyder, 1901) | | authority | +1163533 | Scuticaria okinawae | | scientific name | +1163533 | shorttailed snake moray | | genbank common name | +1163533 | Uropterygius okinawae Jordan & Snyder, 1901 | | authority | +1163533 | Uropterygius okinawae | | synonym | +1165301 | Woodworthia | | scientific name | +1165302 | Dactylocnemis maculatus | | synonym | +1165302 | Hoplodactylus maculatus (Gray, 1845) | | authority | +1165302 | Hoplodactylus maculatus | | synonym | +1165302 | Naultinus maculatus Gray, 1845 | | authority | +1165302 | Naultinus maculatus | | synonym | +1165302 | Raukawa gecko | | genbank common name | +1165302 | spotted sticky-toed gecko | | common name | +1165302 | Woodworthia maculata | | scientific name | +1165302 | Woodworthia maculatus (Gray, 1845) | | authority | +1165302 | Woodworthia maculatus | | synonym | +1167616 | dusky rock cod | | common name | +1167616 | Epinephelus bontoides (Bleeker, 1855) | | authority | +1167616 | Epinephelus bontoides | | scientific name | +1167616 | palemargin grouper | | genbank common name | +1167616 | Serranus bontoides Bleeker, 1855 | | authority | +1167616 | Serranus bontoides | | synonym | +1168020 | Amur brown frog | | common name | +1168020 | Korean brown frog | | genbank common name | +1168020 | Rana amurensis coreana | | synonym | +1168020 | Rana coreana Okada, 1928 | | authority | +1168020 | Rana coreana | | scientific name | +1168020 | Rana temporaria coreana Okada, 1928 | | authority | +1168020 | Rana temporaria coreana | | synonym | +1170831 | Montivipera | | scientific name | +1171662 | Fritziana | | scientific name | +1171664 | Coelonotus fissilis Miranda-Ribeiro, 1920 | | authority | +1171664 | Coelonotus fissilis | | synonym | +1171664 | Flectonotus fissilis | | synonym | +1171664 | Fritziana fissilis (Miranda-Ribeiro, 1920) | | authority | +1171664 | Fritziana fissilis | | scientific name | +1171664 | Nototheca fissilis | | synonym | +1171664 | Serra de Macae treefrog | | common name | +1171664 | split-backed frog | | genbank common name | +1171665 | Colonia Alpina treefrog | | common name | +1171665 | Flectonotus goeldii | | synonym | +1171665 | Fritzia goeldii | | synonym | +1171665 | Fritziana goeldii (Boulenger, 1895) | | authority | +1171665 | Fritziana goeldii | | scientific name | +1171665 | Fritziana goeldi | | synonym | +1171665 | Goeldi's frog | | genbank common name | +1171665 | Hyla goeldii Boulenger, 1895 | | authority | +1171665 | Hyla goeldii | | synonym | +1171711 | Anthropoides paradiseus (Lichtenstein, 1793) | | synonym | +1171711 | Ardea paradisea Lichtenstein, 1793 | | authority | +1171711 | Ardea paradisea | | synonym | +1171711 | blue crane | | genbank common name | +1171711 | Grus paradisea (Lichtenstein, 1793) | | authority | +1171711 | Grus paradisea | | scientific name | +1171711 | paradise crane | | common name | +1171711 | Stanley crane | | common name | +1175540 | duckbill garfish | | genbank common name | +1175540 | half beak garfish | | common name | +1175540 | Hemiramphus georgii | | synonym | +1175540 | Hemiramphus georgii Valenciennes, 1847 | | authority | +1175540 | long-billed garfish | | common name | +1175540 | long billed half beak | | common name | +1175540 | Rhynchorhamphus georgii | | scientific name | +1175540 | Rhynchorhamphus georgii (Valenciennes, 1847) | | authority | +1175541 | Narke dipterygia (Bloch & Schneider, 1801) | | authority | +1175541 | Narke dipterygia | | scientific name | +1175541 | numbray | | common name | +1175541 | Raja dipterygia Bloch & Schneider, 1801 | | authority | +1175541 | Raja dipterygia | | synonym | +1175541 | spottail sleeper ray | | genbank common name | +1175560 | Rhynchorhamphus | | scientific name | +1178017 | Eupsophus altor Nunez, Rabanal & Formas, 2012 | | authority | +1178017 | Eupsophus altor | | scientific name | +1178017 | Eupsophus sp. JJN-2012 | | synonym | +1178017 | Oncol's ground frog | | genbank common name | +1178017 | rana de hojarasca de Oncol | | common name | +1181264 | Atlantic grunt | | common name | +1181264 | burro grunt | | genbank common name | +1181264 | Crocro roughneck | | common name | +1181264 | freshwater grunt | | common name | +1181264 | Pomadasys crocro (Cuvier, 1830) | | authority | +1181264 | Pomadasys crocro | | synonym | +1181264 | Pristipoma crocro Cuvier, 1830 | | authority | +1181264 | Pristipoma crocro | | synonym | +1181264 | Rhonciscus crocro (Cuvier, 1830) | | authority | +1181264 | Rhonciscus crocro | | scientific name | +1182014 | Enchelycore nigricans (Bonnaterre, 1788) | | authority | +1182014 | Enchelycore nigricans | | scientific name | +1182014 | mottled conger moray | | genbank common name | +1182014 | mulatto conger eel | | common name | +1182014 | mulatto conger moray | | common name | +1182014 | Muraena nigricans Bonnaterre, 1788 | | authority | +1182014 | Muraena nigricans | | synonym | +1182147 | Bodianus eclancheri | | scientific name | +1182147 | Bodianus eclancheri (Valenciennes, 1846) | | authority | +1182147 | brown hogfish | | common name | +1182147 | Cossyphus eclancheri | | synonym | +1182147 | Cossyphus eclancheri Valenciennes, 1846 | | authority | +1182147 | Galapagos hogfish | | genbank common name | +1182147 | harlequin wrasse | | common name | +1182148 | blushing wrasse | | common name | +1182148 | Coris auricularis | | scientific name | +1182148 | Coris auricularis (Valenciennes, 1839) | | authority | +1182148 | Julis auricularis | | synonym | +1182148 | Julis auricularis Valenciennes, 1839 | | authority | +1182148 | king coris | | common name | +1182148 | western king wrasse | | genbank common name | +1182153 | Coryphaena pentadactyla Linnaeus, 1758 | | authority | +1182153 | Coryphaena pentadactyla | | synonym | +1182153 | fivefinger razorfish | | genbank common name | +1182153 | fivefinger wrasse | | common name | +1182153 | Iniistius pentadactylus (Linnaeus, 1758) | | authority | +1182153 | Iniistius pentadactylus | | scientific name | +1182153 | red-spot razor wrasse | | common name | +1182153 | Xyrichtys pentadactylus | | synonym | +1182257 | Monopenchelys | | scientific name | +1182258 | Monopenchelys acuta (Parr, 1930) | | authority | +1182258 | Monopenchelys acuta | | scientific name | +1182258 | redface eel | | common name | +1182258 | redface moray | | genbank common name | +1182258 | Uropterygius acutus Parr, 1930 | | authority | +1182258 | Uropterygius acutus | | synonym | +1183148 | chubbyu | | common name | +1183148 | cubbyu | | genbank common name | +1183148 | Eques acuminatus umbrosus Jordan & Eigenmann, 1889 | | authority | +1183148 | Eques acuminatus umbrosus | | synonym | +1183148 | Eques acuminatus var. umbrosus Jordan & Eigenmann, 1889 | | authority | +1183148 | Eques acuminatus var. umbrosus | | synonym | +1183148 | Equetus umbrosus | | synonym | +1183148 | Pareques umbrosus (Jordan & Eigenmann, 1889) | | authority | +1183148 | Pareques umbrosus | | scientific name | +1183148 | streaked ribbonfish | | common name | +1183148 | striped ribbonfish | | common name | +1184739 | Parapercis xanthozona (Bleeker, 1849) | | authority | +1184739 | Parapercis xanthozona | | scientific name | +1184739 | peppered grubfish | | common name | +1184739 | Percis xanthozona Bleeker, 1849 | | authority | +1184739 | Percis xanthozona | | synonym | +1184739 | whitestrip sandperch | | common name | +1184739 | yellowbar sandperch | | genbank common name | +1185436 | Anamallais Indian frog | | genbank common name | +1185436 | Indirana brachytarsus (Guenther, 1876) | | authority | +1185436 | Indirana brachytarsus | | scientific name | +1185436 | leaf-hopper frog | | common name | +1185436 | Polypedates brachytarsus Guenther, 1876 | | authority | +1185436 | Polypedates brachytarsus Gunther, 1876 | | authority | +1185436 | Polypedates brachytarsus | | synonym | +1185436 | Rana brachytarsus | | synonym | +1185436 | Ranixalus brachytarsus | | synonym | +1185436 | short-legged leaping frog | | common name | +1188029 | Japanese bigeye | | genbank common name | +1188029 | Priacanthus niphonius Cuvier, 1829 | | authority | +1188029 | Priacanthus niphonius | | synonym | +1188029 | Pristigenys niphonia (Cuvier, 1829) | | authority | +1188029 | Pristigenys niphonia | | scientific name | +1188029 | whiteband bigeye | | common name | +1188031 | Brachypterois | | scientific name | +1188032 | Brachypterois serrulata (Richardson, 1846) | | authority | +1188032 | Brachypterois serrulata | | scientific name | +1188032 | pygmy lionfish | | genbank common name | +1188032 | sawcheek scorpionfish | | common name | +1188032 | sawtooth scorpionfish | | common name | +1188032 | Sebastes serrulatus Richardson, 1846 | | authority | +1188032 | Sebastes serrulatus | | synonym | +1191327 | Amnirana darlingi (Boulenger, 1902) | | authority | +1191327 | Amnirana darlingi | | scientific name | +1191327 | Darling's golden-backed frog | | common name | +1191327 | Darling's white-lipped frog | | genbank common name | +1191327 | golden-backed frog | golden-backed frog | common name | +1191327 | Hydrophylax darlingi | | synonym | +1191327 | Hylarana darlingi (Boulenger, 1902) | | authority | +1191327 | Hylarana darlingi | | synonym | +1191327 | Rana darlingi Boulenger, 1902 | | authority | +1191327 | Rana darlingi | | synonym | +1192867 | black-headed gull | | genbank common name | +1192867 | Chroicocephalus ridibundus (Linnaeus, 1766) | | authority | +1192867 | Chroicocephalus ridibundus | | scientific name | +1192867 | Lachmoewe | | common name | +1192867 | Larus ridibundus Linnaeus, 1766 | | authority | +1192867 | Larus ridibundus | | synonym | +1198083 | brown-stripe wrasse | | genbank common name | +1198083 | earmuff wrasse | | common name | +1198083 | Halichoeres bicolor (Bloch & Schneider, 1801) | | authority | +1198083 | Halichoeres bicolor | | scientific name | +1198083 | Labrus bicolor Bloch & Schneider, 1801 | | authority | +1198083 | Labrus bicolor | | synonym | +1198083 | pearly-spotted wrasse | | common name | +1200804 | Monteiro's storm-petrel | | genbank common name | +1200804 | Monteiro storm-petrel | | common name | +1200804 | Oceanodroma monteiroi | | scientific name | +1200804 | Oceanodroma monteiroi Smith, 2008 | | authority | +1200804 | Oceanodroma monteiro | | synonym | +1201173 | Lake Prespa trout | | common name | +1201173 | Prespa trout | | genbank common name | +1201173 | Salmo macedonicus peristericus Karaman, 1938 | | authority | +1201173 | Salmo macedonicus peristericus | | synonym | +1201173 | Salmo peristericus Karaman, 1938 | | authority | +1201173 | Salmo peristericus | | scientific name | +1201327 | Chalazodes bubble-nest frog | | common name | +1201327 | Guenther's bush frog | | genbank common name | +1201327 | Ixalus chalazodes Gunther, 1876 | | authority | +1201327 | Ixalus chalazodes | | synonym | +1201327 | Philautus chalazodes | | synonym | +1201327 | Pseudophilautus chalazodes (Guenther, 1876) | | authority | +1201327 | Pseudophilautus chalazodes | | synonym | +1201327 | Raorchestes chalazodes (Guenther, 1876) | | authority | +1201327 | Raorchestes chalazodes | | scientific name | +1201327 | Rhacophorus chalazodes | | synonym | +1201327 | white-spotted frog | | common name | +1202793 | cross-barred treefrog | | genbank common name | +1202793 | Medog flying frog | | common name | +1202793 | Rhacophorus (Leptomantis) translineatus | | synonym | +1202793 | Rhacophorus translineatus | | scientific name | +1202793 | Rhacophorus translineatus Wu, 1977 | | authority | +1202793 | translineate tree frog | | common name | +1202794 | Beibeng flying frog | | common name | +1202794 | Rhacophorus (Rhacophorus) verrucopus | | synonym | +1202794 | Rhacophorus verrucopus Huang, 1983 | | authority | +1202794 | Rhacophorus verrucopus | | scientific name | +1202794 | serrate-toed treefrog | | genbank common name | +1203020 | Simias Miller, 1903 | | authority | +1203020 | Simias | | scientific name | +1203425 | Labrus celidotus Bloch & Schneider, 1801 | | authority | +1203425 | Labrus celidotus | | synonym | +1203425 | New Zealand spotty | | genbank common name | +1203425 | Notolabrus celidotus (Bloch & Schneider, 1801) | | authority | +1203425 | Notolabrus celidotus | | scientific name | +1203425 | spotty | | common name | +1203428 | New Zealand flounder | | genbank common name | +1203428 | Rhombosolea plebeia (Richardson, 1843) | | authority | +1203428 | Rhombosolea plebeia | | scientific name | +1203428 | Rhombus plebius Richardson, 1843 | | authority | +1203428 | Rhombus plebius | | synonym | +1203428 | sand flounder | sand flounder | common name | +1203600 | Andean poison-arrow frog | | common name | +1203600 | Andean poison frog | | genbank common name | +1203600 | Andinobates opisthomelas (Boulenger, 1899) | | authority | +1203600 | Andinobates opisthomelas | | scientific name | +1203600 | Dendrobates opisthomelas Boulenger, 1899 | | authority | +1203600 | Dendrobates opisthomelas | | synonym | +1203600 | Minyobates opisthomelas | | synonym | +1203600 | Ranitomeya opisthomelas | | synonym | +1206914 | Bembrops gobioides (Goode, 1880) | | authority | +1206914 | Bembrops gobioides | | scientific name | +1206914 | goby duckbill | | common name | +1206914 | goby flathead | | genbank common name | +1206914 | Hypsicometes gobioides Goode, 1880 | | authority | +1206914 | Hypsicometes gobioides | | synonym | +1206920 | Lutjanus biguttatus | | scientific name | +1206920 | Lutjanus biguttatus (Valenciennes, 1830) | | authority | +1206920 | Serranus biguttatus | | synonym | +1206920 | Serranus biguttatus Valenciennes, 1830 | | authority | +1206920 | two-spot banded seaperch | | common name | +1206920 | two-spot banded snapper | | genbank common name | +1206920 | twospot snapper | | common name | +1206930 | Diademichthys | | scientific name | +1206931 | Crepidogaster lineatum Sauvage, 1883 | | authority | +1206931 | Crepidogaster lineatum | | synonym | +1206931 | Diademichthys lineatus (Sauvage, 1883) | | authority | +1206931 | Diademichthys lineatus | | scientific name | +1206931 | long-snout clingfish | | common name | +1206931 | urchin clingfish | | genbank common name | +1206931 | yellow stripe clingfish | | common name | +1206946 | cockerel wrasse | cockerel wrasse | genbank common name | +1206946 | Crenilabrus enneacanthus Bleeker, 1853 | | authority | +1206946 | Crenilabrus enneacanthus | | synonym | +1206946 | Pteragogus enneacanthus (Bleeker, 1853) | | authority | +1206946 | Pteragogus enneacanthus | | scientific name | +1206946 | redstriped wrasse | | common name | +1206947 | Ulaema | | scientific name | +1206948 | Diapterus lefroyi Goode, 1874 | | authority | +1206948 | Diapterus lefroyi | | synonym | +1206948 | Eucinostomus lefroyi | | synonym | +1206948 | longfinned sliverbiddy | | common name | +1206948 | mottled mojarra | | genbank common name | +1206948 | Ulaema lefroyi (Goode, 1874) | | authority | +1206948 | Ulaema lefroyi | | scientific name | +1206982 | Aracana aurita | | scientific name | +1206982 | Aracana aurita (Shaw, 1798) | | authority | +1206982 | Ostracion auritus Shaw, 1798 | | authority | +1206982 | Ostracion auritus | | synonym | +1206982 | Shaw's cowfish | | common name | +1206982 | striped cowfish | | genbank common name | +1208316 | Hyporthodus | | scientific name | +1208378 | Babina | | scientific name | +1209400 | austral lanternfish | | common name | +1209400 | Lampanyctus alatus australis | | synonym | +1209400 | Lampanyctus alatus australis Taning, 1932 | | authority | +1209400 | Lampanyctus australis | | scientific name | +1209400 | Lampanyctus australis Taning, 1932 | | authority | +1209400 | nightlight fish | | common name | +1209400 | southern lanternfish | | genbank common name | +1212470 | black-poll warbler | | common name | +1212470 | blackpoll warbler | | genbank common name | +1212470 | Dendroica striata | | synonym | +1212470 | Setophaga striata (Forster,JR, 1772) | | authority | +1212470 | Setophaga striata | | scientific name | +1212746 | Awaous stamineus (Eydoux & Souleyet, 1850) | | authority | +1212746 | Awaous stamineus | | scientific name | +1212746 | endemic Hawaiian amphidromous goby | | common name | +1212746 | Gobius stamineus Eydoux & Souleyet, 1850 | | authority | +1212746 | Gobius stamineus | | synonym | +1212746 | oopu nakea | | genbank common name | +1213614 | Brochiraja | | scientific name | +1213615 | Bathyraja asperula Garrick & Paul, 1974 | | authority | +1213615 | Bathyraja asperula | | synonym | +1213615 | Brochiraja asperula (Garrick & Paul, 1974) | | authority | +1213615 | Brochiraja asperula | | scientific name | +1213615 | prickly deepsea skate | prickly deepsea skate | common name | +1213615 | smooth deepsea skate | | genbank common name | +1213663 | Asymbolus analis (Ogilby, 1885) | | authority | +1213663 | Asymbolus analis | | scientific name | +1213663 | Australian spotted catshark | | genbank common name | +1213663 | darkspotted catshark | | common name | +1213663 | grey spotted catshark | | common name | +1213663 | Scyllium anale Ogilby, 1885 | | authority | +1213663 | Scyllium anale | | synonym | +1213666 | Bathyraja pallida (Forster, 1967) | | authority | +1213666 | Bathyraja pallida | | scientific name | +1213666 | Breviraja pallida Forster, 1967 | | authority | +1213666 | Breviraja pallida | | synonym | +1213666 | pallid ray | | common name | +1213666 | pallid skate | | genbank common name | +1213672 | Bathyraja spinifera | | synonym | +1213672 | Brochiraja spinifera (Garrick & Paul, 1974) | | authority | +1213672 | Brochiraja spinifera | | scientific name | +1213672 | Notoraja spinifera | | synonym | +1213672 | Pavoraja spinifera | | synonym | +1213672 | prickly deepsea skate | prickly deepsea skate | genbank common name | +1213672 | spiny deepsea skate | | common name | +1213673 | Bythaelurus dawsoni | | scientific name | +1213673 | Bythaelurus dawsoni (Springer, 1971) | | authority | +1213673 | Dawson's catshark | | common name | +1213673 | Halaelurus dawsoni Springer, 1971 | | authority | +1213673 | Halaelurus dawsoni | | synonym | +1213673 | New Zealand catshark | | genbank common name | +1213681 | Galeus arae (Nichols, 1927) | | authority | +1213681 | Galeus arae | | scientific name | +1213681 | marbled catshark | | common name | +1213681 | Pristiurus arae | | synonym | +1213681 | roughtail catshark | | genbank common name | +1213707 | common guitarfish | | genbank common name | +1213707 | Raja rhinobatos Linnaeus, 1758 | | authority | +1213707 | Raja rhinobatos | | synonym | +1213707 | Rhinobatos rhinobatos (Linnaeus, 1758) | | authority | +1213707 | Rhinobatos rhinobatos | | scientific name | +1213707 | violinfish | | common name | +1213717 | common torpedo | | genbank common name | +1213717 | ocellate torpedo | | common name | +1213717 | Raja torpedo | | synonym | +1213717 | Torpedo torpedo (Linnaeus, 1758) | | authority | +1213717 | Torpedo torpedo | | scientific name | +1213718 | Cortez round ray | | common name | +1213718 | Cortez round stingray | | common name | +1213718 | spotted round ray | | genbank common name | +1213718 | Urobatis maculatus Garman, 1913 | | authority | +1213718 | Urobatis maculatus | | scientific name | +1213718 | Urolophus maculatus (Garman, 1913) | | authority | +1213718 | Urolophus maculatus | | synonym | +1217922 | Amazophrynella | | scientific name | +1218007 | arenatus barb | | common name | +1218007 | Barbus arenatus Day, 1878 | | authority | +1218007 | Barbus arenatus | | synonym | +1218007 | Puntius arenatus (Day, 1878) | | authority | +1218007 | Puntius arenatus | | scientific name | +1218007 | stigma barb | | genbank common name | +1223622 | Graphiurus kelleni Reuvens, 1890 | | authority | +1223622 | Graphiurus kelleni | | scientific name | +1223622 | Graphiurus parvus | | synonym | +1223622 | Kellen's african dormouse | | common name | +1223622 | savanna dormouse | | genbank common name | +1227136 | Neotropius | | synonym | +1227136 | Pachypterus | | scientific name | +1227137 | dwarf iridescent shark | | common name | +1227137 | Indian topasi | | genbank common name | +1227137 | Neotropius atherinoides (Bloch, 1794) | | authority | +1227137 | Neotropius atherinoides | | synonym | +1227137 | Pachypterus atherinoides (Bloch, 1794) | | authority | +1227137 | Pachypterus atherinoides | | scientific name | +1227137 | Pseudeutropius atherinoides | | synonym | +1227137 | Silurus atherinoides Bloch, 1794 | | authority | +1227137 | Silurus atherinoides | | synonym | +1230708 | Harris flathead | | common name | +1230708 | Harris's flathead | | genbank common name | +1230708 | Inegocia harrisii (McCulloch, 1914) | | authority | +1230708 | Inegocia harrisii | | scientific name | +1230708 | Insidiator harrisii McCulloch, 1914 | | authority | +1230708 | Insidiator harrisii | | synonym | +1230718 | deepsea flathead | | common name | +1230718 | king flathead | | common name | +1230718 | Neoplatycephalus richardsoni (Castelnau, 1872) | | authority | +1230718 | Neoplatycephalus richardsoni | | synonym | +1230718 | Platycephalus richardsoni Castelnau, 1872 | | authority | +1230718 | Platycephalus richardsoni | | scientific name | +1230718 | spiky flathead | | common name | +1230718 | tiger flathead | | genbank common name | +1230718 | toothies | | common name | +1230718 | toothy flathead | toothy flathead | common name | +1230718 | trawl flathead | | common name | +1230725 | crocodile fish | | common name | +1230725 | crocodilefish | | genbank common name | +1230725 | Cymbacephalus beauforti (Knapp, 1973) | | authority | +1230725 | Cymbacephalus beauforti | | scientific name | +1230725 | Platycephalus beauforti Knapp, 1973 | | authority | +1230725 | Platycephalus beauforti | | synonym | +1230726 | Inegocia japonica (Cuvier, 1829) | | authority | +1230726 | Inegocia japonica | | scientific name | +1230726 | Platycephalus japonicus Cuvier, 1829 | | authority | +1230726 | Platycephalus japonicus | | synonym | +1230726 | rusty flathead | | genbank common name | +1230726 | smooth flathead | | common name | +1230726 | Suggrundus japonica | | synonym | +1231073 | Schultzea | | scientific name | +1231074 | school bass | | genbank common name | +1231074 | Schultzea beta (Hildebrand, 1940) | | authority | +1231074 | Schultzea beta | | scientific name | +1231074 | Serranus beta Hildebrand, 1940 | | authority | +1231074 | Serranus beta | | synonym | +1231074 | toothless basslet | | common name | +1231620 | barred-chest grouper | | genbank common name | +1231620 | Epinephelus faveatus | | scientific name | +1231620 | Epinephelus faveatus (Valenciennes, 1828) | | authority | +1231620 | Indian grouper | | common name | +1231620 | Serranus faveatus | | synonym | +1231620 | Serranus faveatus Valenciennes, 1828 | | authority | +1231899 | band cusk-eel | | common name | +1231899 | bank cusk-eel | | genbank common name | +1231899 | Ophidion holbrookii Putnam, 1874 | | authority | +1231899 | Ophidion holbrookii | | scientific name | +1231899 | Ophidion holbrooki | | synonym | +1232745 | boxer snipe eel | | common name | +1232745 | Leptocephalus curvirostris Stromman, 1896 | | authority | +1232745 | Leptocephalus curvirostris | | synonym | +1232745 | Nemichthys curvirostris | | scientific name | +1232745 | Nemichthys curvirostris (Stromman, 1896) | | authority | +1232745 | spotted snipe eel | | genbank common name | +1233221 | Agriades | | scientific name | +1234705 | Muraena serpens Linnaeus, 1758 | | authority | +1234705 | Muraena serpens | | synonym | +1234705 | Ophisurus serpens (Linnaeus, 1758) | | authority | +1234705 | Ophisurus serpens | | scientific name | +1234705 | sand snake eel | | common name | +1234705 | serpent eel | | genbank common name | +1234954 | Emys gibba Schweigger, 1812 | | authority | +1234954 | Emys gibba | | synonym | +1234954 | gibba turtle | | common name | +1234954 | Mesoclemmys gibba (Schweigger, 1812) | | authority | +1234954 | Mesoclemmys gibba | | scientific name | +1234954 | Mesoclemmys gibbus | | synonym | +1234954 | Phrynops gibbus | | synonym | +1234954 | toadhead turtle | | genbank common name | +1236050 | captain parrotfish | | genbank common name | +1236050 | Chlorurus enneacanthus (Lacepede, 1802) | | authority | +1236050 | Chlorurus enneacanthus | | scientific name | +1236050 | green parrotfish | | common name | +1236050 | Scarus enneacanthus Lacepede, 1802 | | authority | +1236050 | Scarus enneacanthus | | synonym | +1236055 | Chlorurus strongylocephalus | | scientific name | +1236055 | heavybeak parrotfish | heavybeak parrotfish | genbank common name | +1236055 | Scarus strongylocephalus Bleeker, 1855 | | authority | +1236055 | Scarus strongylocephalus | | synonym | +1236055 | steephead parrotfish | steephead parrotfish | common name | +1236056 | Candelamoa parrotfish | | common name | +1236056 | Hipposcarus harid (Fabricius, 1775) | | authority | +1236056 | Hipposcarus harid | | scientific name | +1236056 | longnose parrotfish | | genbank common name | +1236056 | Scarus harid Forsskal, 1775 | | authority | +1236056 | Scarus harid | | synonym | +1236062 | greenbelly parrotfish | | common name | +1236062 | Pseudoscarus falcipinnis | | synonym | +1236062 | Scarus falcipinnis (Playfair, 1868) | | authority | +1236062 | Scarus falcipinnis | | scientific name | +1236062 | sicklefin parrotfish | | genbank common name | +1236080 | Callyodon viridifucatus Smith, 1956 | | authority | +1236080 | Callyodon viridifucatus | | synonym | +1236080 | greenlip parrotfish | | common name | +1236080 | roundhead parrotfish | | genbank common name | +1236080 | Scarus viridifucatus | | scientific name | +1236080 | Scarus viridifucatus (Smith, 1956) | | authority | +1238289 | circumspect goby | | genbank common name | +1238289 | Glossogobius circumspectus (Macleay, 1883) | | authority | +1238289 | Glossogobius circumspectus | | scientific name | +1238289 | Gobius circumspectus Macleay, 1883 | | authority | +1238289 | Gobius circumspectus | | synonym | +1238289 | mangrove flathead goby | | common name | +1240248 | Coluber prasinus Blyth, 1854 | | authority | +1240248 | Coluber prasinus | | synonym | +1240248 | Elaphe prasina | | synonym | +1240248 | Gonyosoma prasinum | | scientific name | +1240248 | green bush rat snake | | common name | +1240248 | green ratsnake | | common name | +1240248 | Green trinket snake | | genbank common name | +1240248 | Rhadinophis prasina | | synonym | +1240248 | Rhadinophis prasinus (Blyth, 1854) | | authority | +1240248 | Rhadinophis prasinus | | synonym | +1241976 | Balsas ground snake | | common name | +1241976 | Chionactis michoacanensis | | synonym | +1241976 | Contia michoacanensis Duges, 1884 | | authority | +1241976 | Contia michoacanensis | | synonym | +1241976 | Elapomorphus michoacanensis | | synonym | +1241976 | Homalocranium michoacanense | | synonym | +1241976 | Michoacan ground snake | Michoacan ground snake | genbank common name | +1241976 | Scolecophis michoacanensis | | synonym | +1241976 | Sonora michoacanensis (Duges, 1884) | | authority | +1241976 | Sonora michoacanensis | | scientific name | +1241977 | Mexican ground snake | | genbank common name | +1241977 | Michoacan ground snake | Michoacan ground snake | common name | +1241977 | Sonora michoacanensis mutabilis Stickel, 1943 | | authority | +1241977 | Sonora michoacanensis mutabilis | | synonym | +1241977 | Sonora mutabilis | | scientific name | +1241977 | Sonora mutabilis Stickel, 1943 | | authority | +1246547 | Central American spiny rat | | common name | +1246547 | Proechimys gorgonae | | synonym | +1246547 | Proechimys semispinosus | | scientific name | +1246547 | Proechimys semispinosus (Tomes, 1860) | | authority | +1246547 | Tome's spiny-rat | | genbank common name | +1249234 | Megophrys brachykolos Inger & Romer, 1961 | | authority | +1249234 | Megophrys brachykolos | | scientific name | +1249234 | Megophrys minor brachykolos | | synonym | +1249234 | Panophrys brachykolos | | synonym | +1249234 | peak spedefoot toad | | common name | +1249234 | short-legged horned toad | | common name | +1249234 | short-legged toad | | genbank common name | +1249234 | Xenophrys brachykolos (Inger & Romer, 1961) | | authority | +1249234 | Xenophrys brachykolos | | synonym | +1249237 | Mangshan horned toad | | genbank common name | +1249237 | Mangshan spadefoot toad | | common name | +1249237 | Megophrys mangshanensis Fei & Ye, 1990 | | authority | +1249237 | Megophrys mangshanensis | | synonym | +1249237 | Xenophrys mangshanensis Fei & Ye, 1990 | | authority | +1249237 | Xenophrys mangshanensis | | scientific name | +1249487 | Anchoa ischana (Jordan & Gilbert, 1882) | | authority | +1249487 | Anchoa ischana | | scientific name | +1249487 | Gulf of California slender anchovy | | common name | +1249487 | sharpnose anchovy | | common name | +1249487 | slender anchovy | | genbank common name | +1249487 | Stolephorus ischanus Jordan & Gilbert, 1882 | | authority | +1249487 | Stolephorus ischanus | | synonym | +1249488 | Anchoa lucida (Jordan & Gilbert, 1882) | | authority | +1249488 | Anchoa lucida | | scientific name | +1249488 | anchoveta | anchoveta | common name | +1249488 | bright anchovy | | genbank common name | +1249488 | Stolephorus lucidus Evermann & Marsh, 1900 | | authority | +1249488 | Stolephorus lucidus Jordan & Gilbert, 1882 | | authority | +1249488 | Stolephorus lucidus | | synonym | +1250777 | Chilatherina lorentzii | | scientific name | +1250777 | Chilatherina lorentzii (Weber, 1907) | | authority | +1250777 | Chilatherina lorentzi | | synonym | +1250777 | Lorentz rainbowfish | | common name | +1250777 | Lorentz's rainbowfish | | genbank common name | +1250777 | Rhombatractus lorentzii | | synonym | +1250777 | Rhombatractus lorentzii Weber, 1907 | | authority | +1250785 | Glossolepis multisquamata | | scientific name | +1250785 | Glossolepis multisquamata (Weber & de Beaufort, 1922) | | authority | +1250785 | Glossolepis multisquamatus | | synonym | +1250785 | Melanotaenia multisquamata | | synonym | +1250785 | Melanotaenia multisquamata Weber & de Beaufort, 1922 | | authority | +1250785 | rosy rainbowfish | | genbank common name | +1250785 | Sepik rainbowfish | Sepik rainbowfish | common name | +1250785 | Sepik rainbowfisn | | common name | +1260531 | Menticirrhus elongatus (Guenther, 1864) | | authority | +1260531 | Menticirrhus elongatus | | scientific name | +1260531 | Pacific kingcroaker | | genbank common name | +1260531 | slender kingfish | | common name | +1260531 | Umbrina elongata Guenther, 1864 | | authority | +1260531 | Umbrina elongata Gunther, 1864 | | authority | +1260531 | Umbrina elongata | | synonym | +1260532 | bigeye croaker | bigeye croaker | genbank common name | +1260532 | Gulf croaker | | common name | +1260532 | Micropogonias megalops (Gilbert, 1890) | | authority | +1260532 | Micropogonias megalops | | scientific name | +1260532 | Micropogon megalops Gilbert, 1890 | | authority | +1260532 | Micropogon megalops | | synonym | +1263180 | Guentherus | | scientific name | +1263181 | Guentherus altivela Osorio 1917 | | authority | +1263181 | Guentherus altivela | | scientific name | +1263181 | Guentherus altivelis | | synonym | +1263181 | highfin jellynose | | common name | +1263181 | highfin tadpole fish | | genbank common name | +1265597 | Aturia belcheri Gray, 1849 | | authority | +1265597 | Aturia belcheri | | synonym | +1265597 | Belcher's sea snake | | genbank common name | +1265597 | Chitulia belcheri | | synonym | +1265597 | faint-banded sea snake | | common name | +1265597 | Hydrophis belcheri | | scientific name | +1266867 | Apogon pandionis Goode & Bean, 1881 | | authority | +1266867 | Apogon pandionis | | synonym | +1266867 | bigeye | | genbank common name | +1266867 | black mullet | | common name | +1266867 | Epigonus pandionis (Goode & Bean, 1881) | | authority | +1266867 | Epigonus pandionis | | scientific name | +1266874 | Blennius lampretaeformis | | synonym | +1266874 | Blennius lampretaeformis Walbaum, 1792 | | authority | +1266874 | Lumpenus lampretaeformis | | scientific name | +1266874 | Lumpenus lampretaeformis (Walbaum, 1792) | | authority | +1266874 | snakeblenny | | genbank common name | +1266874 | snake blenny | snake blenny | common name | +1266880 | common searobin | | common name | +1266880 | northern searobin | | genbank common name | +1266880 | Prionotus carolinus (Linnaeus, 1771) | | authority | +1266880 | Prionotus carolinus | | scientific name | +1266880 | Trigla carolina Linnaeus, 1771 | | authority | +1266880 | Trigla carolina | | synonym | +1268092 | imitator damsel | | common name | +1268092 | imitator damselfish | | genbank common name | +1268092 | Pomacentrus imitator | | scientific name | +1268092 | Pomacentrus imitator (Whitley, 1964) | | authority | +1268092 | Pseudopomacentrus imitator | | synonym | +1268092 | Pseudopomacentrus imitator Whitley, 1964 | | authority | +1268094 | beaubrummel | | common name | +1268094 | beaubrummel damselfish | | genbank common name | +1268094 | Pomacentrus flavilatus Gill, 1862 | | authority | +1268094 | Pomacentrus flavilatus | | synonym | +1268094 | Stegastes flavilatus (Gill, 1862) | | authority | +1268094 | Stegastes flavilatus | | scientific name | +1271572 | Fuelleborn's stream frog | | common name | +1271572 | long-toed grass frog | | genbank common name | +1271572 | Rana fasciata fuelleborni | | synonym | +1271572 | Rana fuelleborni Nieden, 1911 | | authority | +1271572 | Rana fuelleborni | | synonym | +1271572 | Rana fulleborni Nieden, 1911 | | authority | +1271572 | Rana fulleborni | | synonym | +1271572 | Rana (Ptychadena) fuelleborni | | synonym | +1271572 | Strongylopus fasciatus fuelleborni | | synonym | +1271572 | Strongylopus fuelleborni (Nieden, 1911) | | authority | +1271572 | Strongylopus fuelleborni | | scientific name | +1273186 | Achala four-eyed frog | | genbank common name | +1273186 | Achala's four-eyed frog | | common name | +1273186 | Paludicola kriegi Mueller, 1926 | | authority | +1273186 | Paludicola kriegi Muller, 1926 | | authority | +1273186 | Paludicola kriegi | | synonym | +1273186 | Pleurodema kriegi (Mueller, 1926) | | authority | +1273186 | Pleurodema kriegi | | scientific name | +1280522 | checkerboard dwarf cichlid | | genbank common name | +1280522 | chessboard cichlid | | common name | +1280522 | Crenicara filamentosa Ladiges, 1958 | | authority | +1280522 | Crenicara filamentosa | | synonym | +1280522 | Dicrossus filamentosus (Ladiges, 1958) | | authority | +1280522 | Dicrossus filamentosus | | scientific name | +1280522 | lyretail checkerboard cichlid | | common name | +1282961 | blue-spotted mudskipper | | genbank common name | +1282961 | Boddart's goggle-eyed goby | | common name | +1282961 | Boleophthalmus boddarti (Pallas, 1770) | | authority | +1282961 | Boleophthalmus boddarti | | scientific name | +1282961 | Gobius boddarti Pallas, 1770 | | authority | +1282961 | Gobius boddarti | | synonym | +1283716 | Breviceps adspersus Peters, 1882 | | authority | +1283716 | Breviceps adspersus | | scientific name | +1283716 | Breviceps mossambicus adspersus | | synonym | +1283716 | bushveld rain frog | | genbank common name | +1283716 | common rain frog | | common name | +1283716 | common rainfrog | | common name | +1283716 | Transvaal rain frog | | common name | +1283716 | Transvaal short-headed frog | | common name | +1286116 | Ancylopsetta ommata (Jordan & Gilbert, 1883) | | authority | +1286116 | Ancylopsetta ommata | | scientific name | +1286116 | Gulf of Mexico ocellated flounder | | genbank common name | +1286116 | ocellated flounder | ocellated flounder | common name | +1286116 | Paralichthys ommatus Jordan & Gilbert, 1883 | | authority | +1286116 | Paralichthys ommatus | | synonym | +1286174 | Soleichthys | | scientific name | +1286175 | Aesop sole | | common name | +1286175 | banded sole | banded sole | common name | +1286175 | black-tip sole | | genbank common name | +1286175 | Solea heterorhinos Bleeker, 1856 | | authority | +1286175 | Solea heterorhinos | | synonym | +1286175 | Soleichthys heterorhinos (Bleeker, 1856) | | authority | +1286175 | Soleichthys heterorhinos | | scientific name | +1286175 | tiger sole | | common name | +1294539 | Diaphorapteryx | | scientific name | +1294540 | Aphanapteryx hawkinsi Forbes, 1892 | | authority | +1294540 | Aphanapteryx hawkinsi | | synonym | +1294540 | Diaphorapteryx hawkinsi (Forbes, 1892) | | authority | +1294540 | Diaphorapteryx hawkinsi | | scientific name | +1294540 | Giant Chatham Island rail | | genbank common name | +1294540 | Hawkins' rail | | common name | +1295506 | conservation landfrog | | genbank common name | +1295506 | Pristimantis conservatio Barrio-Amoros, Heinicke & Hedges, 2013 | | authority | +1295506 | Pristimantis conservatio | | scientific name | +1295506 | Pristimantis sp. MPH-2013b | | includes | +1295506 | ranita nublada de los conservacionistas | | common name | +1298884 | Clupea stolifera Jordan & Gilbert, 1882 | | authority | +1298884 | Clupea stolifera | | synonym | +1298884 | Lile stolifera (Jordan & Gilbert, 1882) | | authority | +1298884 | Lile stolifera | | scientific name | +1298884 | Pacific piquitinga | | genbank common name | +1298884 | striped herring | | common name | +1300103 | Fizi tree frog | | genbank common name | +1300103 | Leptopelis fiziensis Laurent, 1973 | | authority | +1300103 | Leptopelis fiziensis | | scientific name | +1300103 | Leptopelis modestus fiziensis Laurent, 1973 | | authority | +1300103 | Leptopelis modestus fiziensis | | synonym | +1300103 | Mokanga Forest treefrog | | common name | +1302381 | argus frog | argus frog | common name | +1302381 | butter frog | | common name | +1302381 | criolla frog | | genbank common name | +1302381 | Leptodactylus latrans | | scientific name | +1302381 | Leptodactylus latrans (Steffen, 1815) | | authority | +1302381 | lesser foam frog | | common name | +1302381 | Rana latrans Steffen, 1815 | | authority | +1302381 | Rana latrans | | synonym | +1302559 | Allobates chalcopis (Kaiser, Coloma & Gray, 1994) | | authority | +1302559 | Allobates chalcopis | | scientific name | +1302559 | Colostethus chalcopis Kaiser, Coloma & Gray, 1994 | | authority | +1302559 | Colostethus chalcopis | | synonym | +1302559 | Martinique volcano frog | | genbank common name | +1302559 | ravine rocket frog | | common name | +1302775 | Solea zebrina | | synonym | +1302775 | Solea zebrina Temminck & Schlegel, 1846 | | authority | +1302775 | striped sole | | common name | +1302775 | zebra sole | zebra sole | genbank common name | +1302775 | Zebrias zebrinus | | scientific name | +1302775 | Zebrias zebrinus (Temminck & Schlegel, 1846) | | authority | +1302782 | bandfin mangrove goby | | genbank common name | +1302782 | bandfin mullet goby | | common name | +1302782 | Gobius cavifrons | | synonym | +1302782 | Gobius cavifrons Weber, 1909 | | authority | +1302782 | mangrove goby | mangrove goby | common name | +1302782 | Mugilogobius cavifrons | | scientific name | +1302782 | Mugilogobius cavifrons (Weber. 1909) | | authority | +1302783 | chequered mangrove goby | | genbank common name | +1302783 | Gobius mertoni | | synonym | +1302783 | Gobius mertoni Weber, 1911 | | authority | +1302783 | Kanu goby | | common name | +1302783 | Mugilogobius mertoni | | scientific name | +1302783 | Mugilogobius mertoni (Weber, 1911) | | authority | +1302786 | Gobius javanicus Bleeker, 1856 | | authority | +1302786 | Gobius javanicus | | synonym | +1302786 | goby of streams | | common name | +1302786 | Japanese fatnose goby | | common name | +1302786 | Pseudogobius javanicus (Bleeker, 1856) | | authority | +1302786 | Pseudogobius javanicus | | scientific name | +1302786 | spotfin snouted goby | | genbank common name | +1303107 | Rio Grande lesser siren | | genbank common name | +1303107 | Rio Grande siren | | common name | +1303107 | Siren intermedia texana Goin, 1957 | | authority | +1303107 | Siren intermedia texana | | scientific name | +1303107 | Siren texana | | synonym | +1306750 | Ebosia | | scientific name | +1306751 | Bleeker's lionfish | | common name | +1306751 | cockscomb firefish | | genbank common name | +1306751 | Ebosia bleekeri (Doederlein, 1884) | | authority | +1306751 | Ebosia bleekeri | | scientific name | +1306751 | Pterois bleekeri Doderlein, 1884 | | authority | +1306751 | Pterois bleekeri | | synonym | +1307780 | Oxybasis Kar. & Kir., 1841 | | authority | +1307780 | Oxybasis | | scientific name | +1311454 | Gobius ornatus Rueppell, 1830 | | authority | +1311454 | Gobius ornatus Ruppell, 1830 | | authority | +1311454 | Gobius ornatus | | synonym | +1311454 | Istigobius ornatus (Rueppell, 1830) | | authority | +1311454 | Istigobius ornatus | | scientific name | +1311454 | ornate goby | | genbank common name | +1311454 | ornate lagoon-goby | | common name | +1311497 | Scorpaena cyanostigma Bleeker, 1856 | | authority | +1311497 | Scorpaena cyanostigma | | synonym | +1311497 | Sebastapistes cyanostigma (Bleeker, 1856) | | authority | +1311497 | Sebastapistes cyanostigma | | scientific name | +1311497 | yellow spotted scorpionfish | | common name | +1311497 | yellowspotted scorpionfish | | genbank common name | +1311505 | Acanthurus velifer Bloch, 1795 | | authority | +1311505 | Acanthurus velifer | | synonym | +1311505 | intermediate sailfin tang | | common name | +1311505 | sailfin tang | | genbank common name | +1311505 | Zebrasoma velifer (Bloch, 1795) | | authority | +1311505 | Zebrasoma velifer | | scientific name | +1311505 | Zebrasoma veliferum | | synonym | +1314640 | Cinnycerthia olivascens | | scientific name | +1314640 | Cinnycerthia olivascens Sharpe, 1881 | | authority | +1314640 | Cinnycerthia peruana olivascens | | synonym | +1314640 | sepia-brown wren | | common name | +1314640 | Sharpe's wren | | genbank common name | +1316009 | Cerdocyon | | scientific name | +1316015 | Biafra doctorfish | | genbank common name | +1316015 | Biafra sawtail | | common name | +1316015 | Prionurus biafraensis (Blache & Rossignol, 1962) | | authority | +1316015 | Prionurus biafraensis | | scientific name | +1316015 | Xesurus biafraensis Blache & Rossignol, 1962 | | authority | +1316015 | Xesurus biafraensis | | synonym | +1316676 | Discoglossus nigriventer Mendelssohn & Steinitz, 1943 | | authority | +1316676 | Discoglossus nigriventer | | synonym | +1316676 | Hula painted frog | | genbank common name | +1316676 | Israel painted frog | | common name | +1316676 | Latonia nigriventer (Mendelssohn & Steinitz, 1943) | | authority | +1316676 | Latonia nigriventer | | scientific name | +1316676 | Palestinian painted frog | | common name | +1319981 | Chirixalus hansenae | | synonym | +1319981 | Chirixalus senapatiensis Mathew & Sen, 2009 | | authority | +1319981 | Chirixalus senapatiensis | | synonym | +1319981 | Chiromantis hansenae (Cochran, 1927) | | authority | +1319981 | Chiromantis hansenae | | synonym | +1319981 | Chon Buri pigmy tree frog | | common name | +1319981 | Feihyla hansenae (Cochran, 1927) | | authority | +1319981 | Feihyla hansenae | | scientific name | +1319981 | Hansen's Asian treefrog | | common name | +1319981 | Hansen's bushfrog | | genbank common name | +1319981 | Philautus hansenae Cochran, 1927 | | authority | +1319981 | Philautus hansenae | | synonym | +1319981 | Rhacophoridae gen. n. sp. h SDB-2020 | | includes | +1319981 | Rhacophorus hansenae | | synonym | +1319981 | Rohanixalus hansenae (Cochran, 1927) | | authority | +1319981 | Rohanixalus hansenae | | synonym | +1325494 | Anthias pulcherrimus Heemstra & Randall, 1986 | | authority | +1325494 | Anthias pulcherrimus | | synonym | +1325494 | Pseudanthias pulcherrimus (Heemstra & Randall, 1986) | | authority | +1325494 | Pseudanthias pulcherrimus | | scientific name | +1325494 | resplendent anthias | | common name | +1325494 | resplendent goldie | | genbank common name | +1325495 | Anthias randalli Lubbock & Allen, 1978 | | authority | +1325495 | Anthias randalli | | synonym | +1325495 | Pseudanthias randalli (Lubbock & Allen, 1978) | | authority | +1325495 | Pseudanthias randalli | | scientific name | +1325495 | Randall's anthias | | common name | +1325495 | Randall's fairy basslet | | genbank common name | +1328069 | Prolemur Gray, 1871 | | authority | +1328069 | Prolemur | | scientific name | +1328070 | broad-nosed bamboo lemur | | common name | +1328070 | greater bamboo lemur | | genbank common name | +1328070 | Hapalemur simus Gray, 1870 | | authority | +1328070 | Hapalemur simus | | synonym | +1328070 | Prolemur simus (Gray, 1871) | | authority | +1328070 | Prolemur simus | | scientific name | +1329237 | Canthigaster callisterna (Ogilby, 1889) | | authority | +1329237 | Canthigaster callisterna | | scientific name | +1329237 | clown toado | | common name | +1329237 | clown toby | | genbank common name | +1329237 | sharp-nosed pufferfish | | common name | +1329237 | Tetrodon callisternus Ogilby, 1889 | | authority | +1329237 | Tetrodon callisternus | | synonym | +1329240 | Canthigaster punctatissima (Guenther, 1870) | | authority | +1329240 | Canthigaster punctatissima | | scientific name | +1329240 | spotted sharpnosed puffer | | genbank common name | +1329240 | spotted sharpnose puffer | | common name | +1329240 | Tetrodon punctatissimus Guenther, 1870 | | authority | +1329240 | Tetrodon punctatissimus Gunther, 1870 | | authority | +1329240 | Tetrodon punctatissimus | | synonym | +1329249 | brush-tail toadfisn | | genbank common name | +1329249 | scalytail toadfish | | common name | +1329249 | Spheroides squamicauda Ogilby, 1910 | | authority | +1329249 | Spheroides squamicauda | | synonym | +1329249 | Torquigener squamicauda (Ogilby, 1910) | | authority | +1329249 | Torquigener squamicauda | | scientific name | +1329252 | Chonerhinos | | scientific name | +1329252 | Xenopterus | | synonym | +1329253 | bronze puffer | bronze puffer | common name | +1329253 | Chonerhinos naritus (Richardson, 1848) | | authority | +1329253 | Chonerhinos naritus | | scientific name | +1329253 | golden puffer | golden puffer | common name | +1329253 | Tetrodon naritus Richardson, 1848 | | authority | +1329253 | Tetrodon naritus | | synonym | +1329253 | Xenopterus naritus | | synonym | +1329253 | yellow pufferfish | | genbank common name | +1331681 | Kalakkad tree frog | | genbank common name | +1331681 | Langbian flying frog | | common name | +1331681 | Rhacophorus beddomi Boulenger, 1882 | | authority | +1331681 | Rhacophorus beddomi | | synonym | +1331681 | Rhacophorus calcadensis Ahl, 1927 | | authority | +1331681 | Rhacophorus calcadensis | | scientific name | +1333648 | Coius undecimradiatus Roberts & Kottelat, 1994 | | authority | +1333648 | Coius undecimradiatus | | synonym | +1333648 | Datnioides undecimradiatus (Roberts & Kottelat, 1994) | | authority | +1333648 | Datnioides undecimradiatus | | scientific name | +1333648 | gold datnoid | | common name | +1333648 | Mekong tiger perch | | genbank common name | +1333648 | northeastern Siamese tigerfish | | common name | +1333648 | thinbar datnoid | | common name | +1334086 | Aphyosemion amoenum Radda & Purzl, 1976 | | authority | +1334086 | Aphyosemion amoenum | | scientific name | +1334086 | Mesoaphyosemion amoenum (Radda & Purzl 1976) | | authority | +1334086 | Mesoaphyosemion amoenum | | synonym | +1334086 | red-finned killi | | common name | +1334086 | red-finned killifish | | genbank common name | +1334848 | eastern brook silverside | | genbank common name | +1334848 | Labidesthes sicculus vanhyningi Bean & Reid, 1930 | | authority | +1334848 | Labidesthes sicculus vanhyningi | | scientific name | +1334848 | Labidesthes vanhyningi Bean & Reid, 1930 | | authority | +1334848 | Labidesthes vanhyningi | | synonym | +1334848 | southern brook silverside | | common name | +1338018 | Bombinator australis Gray, 1835 | | authority | +1338018 | Bombinator australis | | synonym | +1338018 | Hawksburgy toadlet | | common name | +1338018 | Phryniscus australis | | synonym | +1338018 | Pseudophryne australis | | scientific name | +1338018 | Pseudophryne bibroni var. australis | | synonym | +1338018 | red-crowned toadlet | | genbank common name | +1338022 | Gradwellia major (Parker, 1940) | | authority | +1338022 | Gradwellia major | | synonym | +1338022 | great brown broodfrog | | common name | +1338022 | large toadlet | | genbank common name | +1338022 | marbled toadlet | marbled toadlet | common name | +1338022 | Pseudophryne major Parker, 1940 | | authority | +1338022 | Pseudophryne major | | scientific name | +1338023 | Kankanophryne occidentalis | | synonym | +1338023 | orange-crowned toadlet | | genbank common name | +1338023 | Pseudophryne occidentalis Parker, 1940 | | authority | +1338023 | Pseudophryne occidentalis | | scientific name | +1338023 | western toadlet | | common name | +1342827 | Badditu forest treefrog | | common name | +1342827 | Ethiopian burrowing tree frog | | genbank common name | +1342827 | Leptopelis gramineus (Boulenger, 1898) | | authority | +1342827 | Leptopelis gramineus | | scientific name | +1342827 | Megalixalus gramineus Boulenger, 1898 | | authority | +1342827 | Megalixalus gramineus | | synonym | +1342830 | Dime forest treefrog | | genbank common name | +1342830 | Hylambates vannutellii Boulenger, 1898 | | authority | +1342830 | Hylambates vannutellii | | synonym | +1342830 | Leptopelis vannutellii (Boulenger, 1898) | | authority | +1342830 | Leptopelis vannutellii | | scientific name | +1342830 | Vannutelli's tree frog | | common name | +1342833 | Erlanger's grass frog | | genbank common name | +1342833 | Erlanger's grassland frog | | common name | +1342833 | Ptychadena erlangeri (Ahl, 1924) | | authority | +1342833 | Ptychadena erlangeri | | scientific name | +1342833 | Ptychadena largeni Perret, 1994 | | authority | +1342833 | Ptychadena largeni | | synonym | +1342833 | Rana erlangeri Ahl, 1924 | | authority | +1342833 | Rana erlangeri | | synonym | +1342840 | Hylambates ragazzii Boulenger, 1896 | | authority | +1342840 | Hylambates ragazzii | | synonym | +1342840 | Leptopelis ragazzii (Boulenger, 1896) | | authority | +1342840 | Leptopelis ragazzii | | scientific name | +1342840 | Ragazzi's tree frog | | common name | +1342840 | Shoa forest treefrog | | genbank common name | +1343680 | Caribbean electric ray | | genbank common name | +1343680 | lesser electric ray | | common name | +1343680 | Narcine bancroftii (Griffith & Smith, 1834) | | authority | +1343680 | Narcine bancroftii | | scientific name | +1343680 | spotted torpedo ray | | common name | +1343680 | Torpedo bancroftii Griffith & Smith, 1834 | | authority | +1343680 | Torpedo bancroftii | | synonym | +1343690 | Anthias (Pseudanthias) ventralis ventralis | | synonym | +1343690 | Anthias ventralis Randall, 1979 | | authority | +1343690 | Anthias ventralis | | synonym | +1343690 | Anthias ventralis ventralis Randall, 1979 | | authority | +1343690 | Anthias ventralis ventralis | | synonym | +1343690 | longfin anthias | | genbank common name | +1343690 | Pseudanthias ventralis (Randall, 1979) | | authority | +1343690 | Pseudanthias ventralis | | scientific name | +1343690 | ventralis anthias | | common name | +1346795 | Barilius microlepis | | synonym | +1346795 | Barilius tanganicae Boulenger, 1900 | | authority | +1346795 | Barilius tanganicae | | synonym | +1346795 | Lake Malawi salmon | | common name | +1346795 | mpasa | | genbank common name | +1346795 | Opsaridium microlepis (Guenther, 1864) | | authority | +1346795 | Opsaridium microlepis | | scientific name | +1346795 | Pelotrophus microlepis Guenther, 1864 | | authority | +1346795 | Pelotrophus microlepis | | synonym | +1351707 | Liburnascincus | | scientific name | +1355937 | black-throated bobwhite | | genbank common name | +1355937 | Colinus nigrogularis (Gould, 1843) | | authority | +1355937 | Colinus nigrogularis | | scientific name | +1355937 | Ortyx nigrogularis Gould, 1843 | | authority | +1355937 | Ortyx nigrogularis | | synonym | +1355937 | Yucatan bobwhite | | common name | +1356035 | chrysurus angelfish | | common name | +1356035 | ear-spot angelfish | | common name | +1356035 | earspot angelfish | | common name | +1356035 | goldtail angelfish | | genbank common name | +1356035 | Holacanthus chrysurus Cuvier, 1831 | | authority | +1356035 | Holacanthus chrysurus | | synonym | +1356035 | Pomacanthus chrysurus (Cuvier, 1831) | | authority | +1356035 | Pomacanthus chrysurus | | scientific name | +1356052 | Hyla margaritifera Schlegel, 1837 | | authority | +1356052 | Hyla margaritifera | | synonym | +1356052 | Java flying frog | | genbank common name | +1356052 | Javan tree frog | | common name | +1356052 | Rhacophorus javanus | | synonym | +1356052 | Rhacophorus margaritifer (Schlegel, 1837) | | authority | +1356052 | Rhacophorus margaritifer | | scientific name | +1356052 | Rhacophorus schlegeli margaritifer | | synonym | +1357725 | blackstriped filefish | | genbank common name | +1357725 | Monacanthus pusillus Rueppell, 1829 | | authority | +1357725 | Monacanthus pusillus Ruppell, 1829 | | authority | +1357725 | Monacanthus pusillus | | synonym | +1357725 | Paramonacanthus pusillus (Rueppell, 1829) | | authority | +1357725 | Paramonacanthus pusillus | | scientific name | +1357725 | Sinhalese leatherjacket | | common name | +1364862 | Luscinia cyanura (Pallas, 1773) | | synonym | +1364862 | Luscinia cyanura | | synonym | +1364862 | orange-flanked bush-robin | | genbank common name | +1364862 | red-flanked bluetail | | common name | +1364862 | Tarsiger cyanurus (Pallas, 1773) | | authority | +1364862 | Tarsiger cyanurus | | scientific name | +1365533 | Awaous flavus | | scientific name | +1365533 | Awaous flavus (Valenciennes, 1837) | | authority | +1365533 | candy cane goby | | genbank common name | +1365533 | candy stripe goby | | common name | +1365533 | Gobius flavus | | synonym | +1365533 | Gobius flavus Valenciennes, 1837 | | authority | +1365539 | Brachygobius nunus (Hamilton, 1822) | | authority | +1365539 | Brachygobius nunus | | scientific name | +1365539 | bumblebee goby | bumblebee goby | genbank common name | +1365539 | Gobius nunus Hamilton, 1822 | | authority | +1365539 | Gobius nunus | | synonym | +1365539 | golden banded goby | | common name | +1365699 | Odonteleotris | | scientific name | +1365700 | Eleotris macrodon Bleeker, 1853 | | authority | +1365700 | Eleotris macrodon | | synonym | +1365700 | Gangetic sleeper | | genbank common name | +1365700 | Odonteleotris macrodon (Bleeker, 1853) | | authority | +1365700 | Odonteleotris macrodon | | scientific name | +1365700 | sinuous gudgeon | | common name | +1367116 | blackspotted gurnard | | genbank common name | +1367116 | half-spotted gurnard | | common name | +1367116 | Pterygotrigla hemisticta | | scientific name | +1367116 | Pterygotrigla hemisticta (Temminck & Schlegel, 1843) | | authority | +1367116 | Trigla hemisticta | | synonym | +1367116 | Trigla hemisticta Temminck & Schlegel, 1843 | | authority | +1367118 | olive-tailed flathead | | genbank common name | +1367118 | olive-tail flathead | | common name | +1367118 | Platycephalus asper Cuvier, 1829 | | authority | +1367118 | Platycephalus asper | | synonym | +1367118 | Rogadius asper (Cuvier, 1829) | | authority | +1367118 | Rogadius asper | | scientific name | +1368164 | Agarista | Agarista | scientific name | +1368164 | Agarista Leach, 1814 | | authority | +1368165 | Agarista agricola (Donovan, 1805) | | authority | +1368165 | Agarista agricola | | scientific name | +1368165 | Joseph's Coat moth | | genbank common name | +1368165 | painted vine moth | | common name | +1368165 | Papilio agricola Donovan, 1805 | | authority | +1368165 | Papilio agricola | | synonym | +1378173 | oblique barred monocle bream | | common name | +1378173 | oblique-barred monocle bream | | genbank common name | +1378173 | Scolopsis xenochroa Guenther, 1872 | | authority | +1378173 | Scolopsis xenochroa | | scientific name | +1378173 | Scolopsis xenochrous | | synonym | +1379451 | Acanthistius pictus | | scientific name | +1379451 | Acanthistius pictus (Tschudi, 1846) | | authority | +1379451 | brick seabass | | genbank common name | +1379451 | Peruvian seabass | | common name | +1379451 | Plectropoma pictum | | synonym | +1379451 | Plectropoma pictum Tschudi, 1846 | | authority | +1380542 | Cryptotriton adelos | | synonym | +1380542 | Nototriton adelos Papenfuss & Wake, 1987 | | authority | +1380542 | Nototriton adelos | | synonym | +1380542 | Sierra Juarez moss salamander | | genbank common name | +1380542 | Sierra Juarez salamander | | common name | +1380542 | Thorius adelos (Papenfuss & Wake, 1987) | | authority | +1380542 | Thorius adelos | | scientific name | +1386171 | Brazilian sardine | | genbank common name | +1386171 | Brazilian sardinella | | common name | +1386171 | Clupea brasiliensis Steindachner, 1879 | | authority | +1386171 | Clupea brasiliensis | | synonym | +1386171 | Clupea janeiro Eigenmann, 1894 | | authority | +1386171 | Clupea janeiro | | synonym | +1386171 | Sardinella brasiliensis | | scientific name | +1386171 | Sardinella brasiliensis (Steindachner, 1879) | | authority | +1386171 | Sardinella janeiro (Eigenmann, 1894) | | authority | +1386171 | Sardinella janeiro | | synonym | +1390257 | Blue Ridge purple salamander | | common name | +1390257 | Blue Ridge spring salamander | | genbank common name | +1390257 | Daniel's salamander | | common name | +1390257 | Gyrinophilus danielsi | | synonym | +1390257 | Gyrinophilus porphyriticus danielsi Blatchley, 1901 | | authority | +1390257 | Gyrinophilus porphyriticus danielsi | | scientific name | +1390257 | mountain purple salamander | | common name | +1390257 | Spelerpes danielsi Blatchley, 1901 | | authority | +1390257 | Spelerpes danielsi | | synonym | +1390258 | Carolina purple salamander | | common name | +1390258 | Carolina spring salamander | | genbank common name | +1390258 | Gyrinophilus dunni Mittleman & Jopson, 1941 | | authority | +1390258 | Gyrinophilus dunni | | synonym | +1390258 | Gyrinophilus porphyriticus dunni Mittleman & Jopson, 1941 | | authority | +1390258 | Gyrinophilus porphyriticus dunni | | scientific name | +1390262 | Gulf Coast mud salamander | | genbank common name | +1390262 | Gulf Coast red salamander | | common name | +1390262 | Pseudotriton flavissimus Hallowell, 1856 | | authority | +1390262 | Pseudotriton flavissimus | | synonym | +1390262 | Pseudotriton montanus flavissimus Hallowell, 1856 | | authority | +1390262 | Pseudotriton montanus flavissimus | | scientific name | +1390265 | black-chinned red salamander | | genbank common name | +1390265 | blackchin red salamander | | common name | +1390265 | Pseudotriton ruber schencki | | scientific name | +1390265 | Spelerpes ruber schencki Brimley, 1912 | | authority | +1390265 | Spelerpes ruber schencki | | synonym | +1390265 | Spelerpes schencki | | synonym | +1391725 | gracile litter frog | | common name | +1391725 | Leptobrachella gracilis (Gunther, 1872) | | authority | +1391725 | Leptobrachella gracilis | | scientific name | +1391725 | Leptobrachium gracile Gunther, 1872 | | authority | +1391725 | Leptobrachium gracile | | synonym | +1391725 | Leptobrachium gracilis | | synonym | +1391725 | Leptolalax gracilis (Guenther, 1872) | | authority | +1391725 | Leptolalax gracilis | | synonym | +1391725 | Matang Asian toad | | common name | +1391725 | Megalophrys gracilis | | synonym | +1391725 | Megophrys gracilis | | synonym | +1391725 | Sarawak slender litter frog | | genbank common name | +1391725 | slender litter frog | | common name | +1394124 | Anlung odorous frog | | genbank common name | +1394124 | Huia anlungensis | | synonym | +1394124 | Lungtou frog | | common name | +1394124 | Odorrana anlungensis (Liu & Hu, 1973) | | authority | +1394124 | Odorrana anlungensis | | scientific name | +1394124 | Rana anlungensis Liu & Hu, 1973 | | authority | +1394124 | Rana anlungensis | | synonym | +1394127 | Huia kuangwuensis | | synonym | +1394127 | Kuang-wu Shan frog | | common name | +1394127 | Kwangwu odorous frog | | genbank common name | +1394127 | Odorrana kuangwuensis (Liu & Hu, 1966) | | authority | +1394127 | Odorrana kuangwuensis | | scientific name | +1394127 | Rana kuangwuensis Liu & Hu, 1966 | | authority | +1394127 | Rana kuangwuensis | | synonym | +1394129 | Huia lungshengensis | | synonym | +1394129 | Lung-shen-hsien frog | | common name | +1394129 | Lungshen odorous frog | | genbank common name | +1394129 | Odorrana lungshengensis (Liu & Hu, 1962) | | authority | +1394129 | Odorrana lungshengensis | | scientific name | +1394129 | Rana lungshengensis Liu & Hu, 1962 | | authority | +1394129 | Rana lungshengensis Liu & Wu, 1962 | | authority | +1394129 | Rana lungshengensis | | synonym | +1394135 | Huia wuchuanensis | | synonym | +1394135 | Odorrana wuchuanensis | | scientific name | +1394135 | Odorrana wuchuanensis (Xu, 1983) | | authority | +1394135 | Rana wuchuanensis | | synonym | +1394135 | Rana wuchuanensis Xu, 1983 | | authority | +1394135 | Wuchuan frog | | common name | +1394135 | Wuchuan odorous frog | | genbank common name | +1395009 | Atherina panatela Jordan & Richardson, 1908 | | authority | +1395009 | Atherina panatela | | synonym | +1395009 | Hypoatherina panatela | | synonym | +1395009 | Panatella hardyhead | | common name | +1395009 | Panatella silverside | | genbank common name | +1395009 | Stenatherina panatela (Jordan & Richardson, 1908) | | authority | +1395009 | Stenatherina panatela | | scientific name | +1395012 | Stenatherina | | scientific name | +1396860 | Abramites hypselonotus (Guenther, 1868) | | authority | +1396860 | Abramites hypselonotus | | scientific name | +1396860 | high-backed headstander | | common name | +1396860 | Leporinus hypselonotus Guenther, 1868 | | authority | +1396860 | Leporinus hypselonotus Gunther, 1868 | | authority | +1396860 | Leporinus hypselonotus | | synonym | +1396860 | marbled headstander | | genbank common name | +1399764 | Apogon rueppellii Guenther, 1859 | | authority | +1399764 | Apogon rueppellii Gunther, 1859 | | authority | +1399764 | Apogon rueppellii | | synonym | +1399764 | gobbleguts cardinalfish | | common name | +1399764 | gobbleguts | | genbank common name | +1399764 | Ostorhinchus rueppellii (Guenther, 1859) | | authority | +1399764 | Ostorhinchus rueppellii | | scientific name | +1399764 | western gobbleguts | | common name | +1405560 | Lophiodes mutilus (Alcock, 1894) | | authority | +1405560 | Lophiodes mutilus | | scientific name | +1405560 | Lophius mutilus Alcock, 1894 | | authority | +1405560 | Lophius mutilus | | synonym | +1405560 | smooth angler | | common name | +1405560 | smooth goosefish | | genbank common name | +1405644 | Ecsenius yaeyamaensis (Aoyagi, 1954) | | authority | +1405644 | Ecsenius yaeyamaensis | | scientific name | +1405644 | palespotted combtooth blenny | | genbank common name | +1405644 | Salarias yaeyamaensis Aoyagi, 1954 | | authority | +1405644 | Salarias yaeyamaensis | | synonym | +1405644 | Yaeyama blenny | | common name | +1405644 | Yaeyama clown blenny | | common name | +1405645 | Enneapterygius minutus (Guenther, 1877) | | authority | +1405645 | Enneapterygius minutus | | scientific name | +1405645 | minute triplefin blenny | | genbank common name | +1405645 | minute triplefin | minute triplefin | common name | +1405645 | Tripterygium minutum Guenther, 1877 | | authority | +1405645 | Tripterygium minutum Gunther, 1877 | | authority | +1405645 | Tripterygium minutum | | synonym | +1405656 | brown sabretooth blenny | | genbank common name | +1405656 | Petroscirtes lupus (De Vis, 1885) | | authority | +1405656 | Petroscirtes lupus | | scientific name | +1405656 | Salarias lupus De Vis, 1885 | | authority | +1405656 | Salarias lupus | | synonym | +1405656 | Salarius lupus De Vis, 1885 | | authority | +1405656 | Salarius lupus | | synonym | +1405656 | wolf fangblenny | | common name | +1405661 | Blennius snowi Fowler, 1928 | | authority | +1405661 | Blennius snowi | | synonym | +1405661 | Rhabdoblennius snowi (Fowler, 1928) | | authority | +1405661 | Rhabdoblennius snowi | | scientific name | +1405661 | Snow's blenny | | common name | +1405661 | Snow's rockskipper | | genbank common name | +1408259 | Oloptum Roser & Hamasha, 2012 | | authority | +1408259 | Oloptum | | scientific name | +1411154 | Coius pulcher Kottelat, 1998 | | authority | +1411154 | Coius pulcher | | synonym | +1411154 | Datnioides pulcher (Kottelat, 1998) | | authority | +1411154 | Datnioides pulcher | | scientific name | +1411154 | Siamese tiger fish | | common name | +1411154 | Siamese tigerfish | | genbank common name | +1411154 | Siamese tiger perch | | common name | +1412109 | Sagmariasus | | scientific name | +1412110 | green rock lobster | | genbank common name | +1412110 | Jasus verreauxi | | synonym | +1412110 | packhorse rock lobster | | common name | +1412110 | Palinurus verreauxi | | synonym | +1412110 | Sagmariasus verreauxi (Milne Edwards, 1851) | | authority | +1412110 | Sagmariasus verreauxi | | scientific name | +1412449 | Hoplopagrus | | scientific name | +1412450 | barred pargo | | common name | +1412450 | greenbar snapper | | common name | +1412450 | Hoplopagrus guentherii Gill, 1862 | | authority | +1412450 | Hoplopagrus guentherii | | scientific name | +1412450 | Hoplopagrus guentheri | | synonym | +1412450 | Mexican barred snapper | | genbank common name | +1414481 | flagfin weaver | | common name | +1414481 | lyretail grubfish | | common name | +1414481 | Parapercis schauinslandii | | scientific name | +1414481 | Parapercis schauinslandii (Steindachner, 1900) | | authority | +1414481 | Percis schauinslandii Steindachner, 1900 | | authority | +1414481 | Percis schauinslandii | | synonym | +1414481 | red-spotted sandperch | | common name | +1414481 | redspotted sandperch | | genbank common name | +1415635 | Anas chathamica | | synonym | +1415635 | Chatham duck | | genbank common name | +1415635 | Chatham Island duck | | common name | +1415635 | Cygnus chathamicus Oliver, 1955 | | authority | +1415635 | Cygnus chathamicus | | synonym | +1415635 | Pachyanas chathamica Oliver, 1955 | | authority | +1415635 | Pachyanas chathamica | | scientific name | +1421018 | cricket frog | cricket frog | common name | +1421018 | dwarf bushfrog | | common name | +1421018 | Ixalus parvulus Boulenger, 1893 | | authority | +1421018 | Ixalus parvulus | | synonym | +1421018 | Karin bubble-nest frog | | genbank common name | +1421018 | Philautus parvulus (Boulenger, 1893) | | authority | +1421018 | Philautus parvulus | | synonym | +1421018 | Pseudophilautus parvulus (Boulenger, 1893) | | authority | +1421018 | Pseudophilautus parvulus | | synonym | +1421018 | Raorchestes parvulus (Boulenger, 1893) | | authority | +1421018 | Raorchestes parvulus | | scientific name | +1421018 | Rhacophorus parvulus | | synonym | +1421018 | tiny bubble-nest frog | | common name | +1428451 | Bokermann's bromeliad frog | | common name | +1428451 | Bokermann's stream froglet | | genbank common name | +1428451 | Crossodactylodes bokermanni Peixoto, 1983 | | authority | +1428451 | Crossodactylodes bokermanni | | scientific name | +1428451 | Crossodactylodes sp. MNRJ 34933 | | includes | +1428451 | Crossodactylodes sp. MNRJ 38412 | | includes | +1431193 | Latonia | | scientific name | +1431475 | Acanthapogon vanderbilti Fowler, 1938 | | authority | +1431475 | Acanthapogon vanderbilti | | synonym | +1431475 | Gymnapogon vanderbilti (Fowler, 1938) | | authority | +1431475 | Gymnapogon vanderbilti | | scientific name | +1431475 | tailspot cardinalfish | tailspot cardinalfish | common name | +1431475 | Vanderbilt's cardinalfish | | genbank common name | +1431494 | Apogon roseigaster Ramsay & Ogilby, 1887 | | authority | +1431494 | Apogon roseigaster | | synonym | +1431494 | pink-breasted siphonfish | | common name | +1431494 | pinkbreast siphonfish | | genbank common name | +1431494 | Siphamia roseigaster (Ramsay & Ogilby, 1887) | | authority | +1431494 | Siphamia roseigaster | | scientific name | +1431513 | Vincentia | | scientific name | +1431514 | Apogon novaehollandiae | | synonym | +1431514 | Apogon novaehollandiae Valenciennes, 1832 | | authority | +1431514 | eastern gobbleguts | | genbank common name | +1431514 | southern gobbleguts | | common name | +1431514 | Vincentia novaehollandiae | | scientific name | +1431514 | Vincentia novaehollandiae (Valenciennes, 1832) | | authority | +1436200 | Ambastaia | | scientific name | +1436202 | Ambastaia sidthimunki (Klausewitz, 1959) | | authority | +1436202 | Ambastaia sidthimunki | | scientific name | +1436202 | Botia sidthimunki Klausewitz, 1959 | | authority | +1436202 | Botia sidthimunki | | synonym | +1436202 | dwarf botia | | common name | +1436202 | dwarf chain loach | | genbank common name | +1436202 | dwarf loach | | common name | +1436202 | Yasuhikotakia sidthimunki (Klausewitz, 1959) | | authority | +1436202 | Yasuhikotakia sidthimunki | | synonym | +1441476 | golden-bellied rocket frog | | common name | +1441476 | Ptychadena chrysogaster Laurent, 1954 | | authority | +1441476 | Ptychadena chrysogaster | | scientific name | +1441476 | Rana chrysogaster | | synonym | +1441476 | Rwanda grassland frog | | common name | +1441476 | yellow-bellied ridged frog | | genbank common name | +1445676 | Asiatic tree frog | | genbank common name | +1445676 | banded pigmy tree frog | | common name | +1445676 | blue-legged tree frog | | common name | +1445676 | blue-spotted tree frog | | common name | +1445676 | Leptomantis bimaculatus Peters, 1867 | | synonym | +1445676 | Leptomantis bimaculatus | | scientific name | +1445676 | Mindanao flying frog | | common name | +1445676 | Philautus bimaculatus | | synonym | +1445676 | Rhacophorus bimaculatus (Peters, 1867) | | authority | +1445676 | Rhacophorus bimaculatus | | synonym | +1446469 | deepwater soldier | | common name | +1446469 | deepwater squirrelfish | | common name | +1446469 | Kai Islands squirrelfish | | common name | +1446469 | Kai soldierfish | | genbank common name | +1446469 | Myripristis kaianus Guenther, 1880 | | authority | +1446469 | Myripristis kaianus Gunther, 1880 | | authority | +1446469 | Myripristis kaianus | | synonym | +1446469 | Ostichthys kaianus (Guenther, 1880) | | authority | +1446469 | Ostichthys kaianus | | scientific name | +1453604 | large Saint Helena petrel | | common name | +1453604 | Pseudobulweria rupinarum Olson, 1975 | | authority | +1453604 | Pseudobulweria rupinarum | | synonym | +1453604 | Pterodroma rupinarum Olson, 1975 | | authority | +1453604 | Pterodroma rupinarum | | scientific name | +1453604 | St. Helena petrel | | genbank common name | +1453815 | chirruping wedgebill | | genbank common name | +1453815 | crested wedgebill | | common name | +1453815 | Psophodes cristatus (Gould, 1838) | | authority | +1453815 | Psophodes cristatus | | scientific name | +1453815 | Sphenostoma cristatum Gould, 1838 | | authority | +1453815 | Sphenostoma cristatum | | synonym | +1455662 | Arius platystomus Day, 1877 | | authority | +1455662 | Arius platystomus | | synonym | +1455662 | flat-mouthed catfish | | common name | +1455662 | flatmouth sea catfish | | genbank common name | +1455662 | Plicofollis platystomus (Day, 1877) | | authority | +1455662 | Plicofollis platystomus | | scientific name | +1455662 | Tachysurus platystomus | | synonym | +1455677 | blunt shovel nose ray | | common name | +1455677 | Glaucostegus obtusus (Mueller & Henle, 1841) | | authority | +1455677 | Glaucostegus obtusus | | scientific name | +1455677 | Rhinobatos obtusus Mueller & Henle, 1841 | | authority | +1455677 | Rhinobatos obtusus | | synonym | +1455677 | Rhinobatus obtusus Muller & Henle, 1841 | | authority | +1455677 | Rhinobatus obtusus | | synonym | +1455677 | widenose guitarfish | | genbank common name | +1458430 | common tree snake | | common name | +1458430 | Dendrelaphis punctulata | | synonym | +1458430 | Dendrelaphis punctulatus | | scientific name | +1458430 | Dendrophis punctulatus | | synonym | +1458430 | green tree snake | | genbank common name | +1458430 | Leptophis punctulatus Gray, 1826 | | authority | +1458430 | Leptophis punctulatus | | synonym | +1459836 | ornate jobfish | | genbank common name | +1459836 | ornate snapper | | common name | +1459836 | Pristipomoides argyrogrammicus | | scientific name | +1459836 | Pristipomoides argyrogrammicus (Valenciennes, 1832) | | authority | +1459836 | Serranus argyrogrammicus | | synonym | +1459836 | Serranus argyrogrammicus Valenciennes, 1832 | | authority | +1460501 | Etendaka round-eared elephant shrew | | common name | +1460501 | Etendaka round-eared sengi | | genbank common name | +1460501 | Macroscelides micus Dumbacher & Rathbun in Dumbacher, Rathbun, Osborne, Griffin & Eiseb, 2014 | | authority | +1460501 | Macroscelides micus | | scientific name | +1460501 | Macroscelides sp. JPD-2014 | | includes | +1462579 | Sceloporus scalaris unicanthalis | | includes | +1462579 | Sceloporus scalaris unicanthalis Smith, 1937 | | authority | +1462579 | Sceloporus unicanthalis | | scientific name | +1462579 | Sceloporus unicanthalis Smith, 1937 | | authority | +1462579 | Southwestern bunchgrass lizard | | common name | +1462579 | Southwestern bunch grass lizard | | genbank common name | +1462580 | Brown's bunchgrass lizard | | common name | +1462580 | Brown's bunch grass lizard | | genbank common name | +1462580 | Sceloporus brownorum | | scientific name | +1462580 | Sceloporus brownorum Smith, Watkins-Colwell, Lemos-Espinal & Chiszar, 1997 | | authority | +1462580 | Sceloporus scalaris brownorum | | includes | +1462580 | Sceloporus scalaris brownorum Smith et al. 1997 | | authority | +1462606 | Glycine subgen. Soja | | scientific name | +1474818 | blue-backed angelfish | | common name | +1474818 | Centropyge venusta | | scientific name | +1474818 | Centropyge venusta (Yasuda & Tominaga, 1969) | | authority | +1474818 | Holacanthus venustus | | synonym | +1474818 | Holacanthus venustus Yasuda & Tominaga, 1969 | | authority | +1474818 | Paracentropyge venusta | | synonym | +1474818 | purple-mask angelfish | | common name | +1474818 | purplemask angelfish | | genbank common name | +1474818 | Sumireyakko venustus | | synonym | +1474870 | Apolemichthys arcuatus (Gray. 1831) | | authority | +1474870 | Apolemichthys arcuatus | | scientific name | +1474870 | banded angelfish | | common name | +1474870 | bandit angelfish | | genbank common name | +1474870 | black bandit angelfish | | common name | +1474870 | Desmoholocanthus Arcuatus | | synonym | +1474870 | Holacanthus arcuatus Gray, 1831 | | authority | +1474870 | Holacanthus arcuatus | | synonym | +1475060 | Baja California chorus frog | | common name | +1475060 | Baja California treefrog | | genbank common name | +1475060 | Hyla regilla hypochondriaca | | synonym | +1475060 | Hyla scapularis var. hypochondriaca Hallowell, 1854 | | authority | +1475060 | Hyla scapularis var. hypochondriaca | | synonym | +1475060 | Hyliola hypochondriaca (Hallowell, 1854) | | authority | +1475060 | Hyliola hypochondriaca | | synonym | +1475060 | Pseudacris hypochondriaca (Hallowell, 1854) | | authority | +1475060 | Pseudacris hypochondriaca | | scientific name | +1475061 | Hyla regilla sierra Jameson, Mackey & Richmond, 1966 | | authority | +1475061 | Hyla regilla sierra | | synonym | +1475061 | Hyliola sierra (Jameson, Mackey & Richmond, 1966) | | authority | +1475061 | Hyliola sierra | | synonym | +1475061 | Pseudacris sierra (Jameson, Mackey & Richmond, 1966) | | authority | +1475061 | Pseudacris sierra | | scientific name | +1475061 | Sierran chorus frog | | common name | +1475061 | Sierran treefrog | | genbank common name | +1479064 | Correlophus Guichenot, 1866 | | authority | +1479064 | Correlophus | | scientific name | +1479094 | grizzled giant squirrel | | genbank common name | +1479094 | Ratufa macroura (Pennant, 1769) | | authority | +1479094 | Ratufa macroura | | scientific name | +1479094 | Sciurus macrourus Pennant, 1769 | | authority | +1479094 | Sciurus macrourus | | synonym | +1479094 | Sri Lankan giant squirrel | | common name | +1480063 | Gasterosteus platygaster Kessler, 1859 | | authority | +1480063 | Gasterosteus platygaster | | synonym | +1480063 | Pungitius platygaster (Kessler, 1859) | | authority | +1480063 | Pungitius platygaster | | scientific name | +1480063 | southern ninespine stickleback | | common name | +1480063 | Ukranian stickleback | | genbank common name | +1485181 | Istiompax | | scientific name | +1486644 | Clarion nightsnake | | common name | +1486644 | Hypsiglena ochrorhyncha unaocularis (Tanner 1944) | | authority | +1486644 | Hypsiglena ochrorhyncha unaocularus | | synonym | +1486644 | Hypsiglena unaocularus | | scientific name | +1486644 | Hypsiglena unaocularus Tanner, 1946 | | authority | +1486644 | Islas Revillagigedo nightsnake | | genbank common name | +1486652 | Parapelophryne | | scientific name | +1486653 | Hainan flathead toad | | common name | +1486653 | Hainan little toad | | genbank common name | +1486653 | Nectophryne scalptus Liu & Hu, 1973 | | authority | +1486653 | Nectophryne scalptus | | synonym | +1486653 | Parapelophryne scalpta (Liu & Hu, 1973) | | authority | +1486653 | Parapelophryne scalpta | | scientific name | +1486653 | Pelophryne scalpta | | synonym | +1496304 | Broghammerus Hoser, 2004 | | authority | +1496304 | Broghammerus | | synonym | +1496304 | Malayopython | | scientific name | +1496311 | Boa reticulata Schneider, 1801 | | authority | +1496311 | Boa reticulata | | synonym | +1496311 | Broghammerus reticulatus | | synonym | +1496311 | Malayopython reticulatus | | scientific name | +1496311 | Python reticulatus (Schneider, 1801) | | authority | +1496311 | Python reticulatus | | synonym | +1496311 | reticulated python | | genbank common name | +1496311 | reticulate python | | common name | +1498493 | Indotyphlops Hedges et al. 2014 | | authority | +1498493 | Indotyphlops | | scientific name | +1498493 | South Asian blindsnakes | | genbank common name | +1498866 | crimson bush frog | | common name | +1498866 | elegant bubble-nest frog | | common name | +1498866 | elegant bush frog | | common name | +1498866 | elegant torrent frog | | genbank common name | +1498866 | Micrixalus elegans (Rao, 1937) | | authority | +1498866 | Micrixalus elegans | | scientific name | +1498866 | Philautus elegans Rao, 1937 | | authority | +1498866 | Philautus elegans | | synonym | +1498878 | Limnodytes phyllophila Jerdon, 1853 | | authority | +1498878 | Limnodytes phyllophila Jerdon, 1863 | | authority | +1498878 | Limnodytes phyllophila | | synonym | +1498878 | Micrixalus phyllophilus (Jerdon, 1854) | | authority | +1498878 | Micrixalus phyllophilus | | scientific name | +1498878 | Nilgiri tropical frog | | common name | +1498878 | pink-thighed torrent frog | | genbank common name | +1499639 | Pleroma D.Don, 1823 | | authority | +1499639 | Pleroma | Pleroma | scientific name | +1500691 | Arcos nudus (Linnaeus, 1758) | | authority | +1500691 | Arcos nudus | | scientific name | +1500691 | clingfish | clingfish | genbank common name | +1500691 | Cyclopterus nudus Linnaeus, 1758 | | authority | +1500691 | Cyclopterus nudus | | synonym | +1500691 | Gobiesox nudus | | synonym | +1500691 | riverine clingfish | | common name | +1502711 | Erythranthe | | scientific name | +1502711 | Erythranthe Spach, 1840 | | authority | +1502868 | Paracentropogon | | scientific name | +1502869 | Apistus rubripinnis | | synonym | +1502869 | Apistus rubripinnis Temminck & Schlegel, 1843 | | authority | +1502869 | Japanese redfin waspfish | | common name | +1502869 | Paracentropogon rubripinnis | | scientific name | +1502869 | Paracentropogon rubripinnis (Temminck & Schlegel, 1843) | | authority | +1502869 | redfin waspfish | | genbank common name | +1502963 | Argentine angelshark | | genbank common name | +1502963 | longfin angelshark | | common name | +1502963 | Rhina argentina Marini, 1930 | | authority | +1502963 | Rhina argentina | | synonym | +1502963 | Squatina argentina (Marini, 1930) | | authority | +1502963 | Squatina argentina | | scientific name | +1507498 | Eladinea | | scientific name | +1508173 | Magnadigita | | scientific name | +1508175 | Bolitoglossa | Bolitoglossa | scientific name | +1510417 | Anderson's Khasi Hills frog | | common name | +1510417 | broad-headed frog | | common name | +1510417 | corrugated frog | | common name | +1510417 | flat-headed frog | flat-headed frog | common name | +1510417 | Khasi Hills frog | | genbank common name | +1510417 | Khasi wart frog | | common name | +1510417 | Limnonectes khasianus (Anderson, 1871) | | authority | +1510417 | Limnonectes khasianus | | scientific name | +1510417 | Limnonectes laticeps (Boulenger, 1882) | | authority | +1510417 | Limnonectes laticeps | | synonym | +1510417 | Pyxicephalus Khasianus Anderson, 1871 | | authority | +1510417 | Pyxicephalus Khasianus | | synonym | +1510417 | Rana khasiana | | synonym | +1510417 | Rana laticeps | | synonym | +1510417 | rivulet frog | | common name | +1510417 | southern big-headed frog | | common name | +1513182 | Euphlyctis macrognathus | | synonym | +1513182 | green swollen-headed frog | | common name | +1513182 | Karin Hills wart frog | | genbank common name | +1513182 | large-headed frog | large-headed frog | common name | +1513182 | Limnonectes macrognathus (Boulenger, 1917) | | authority | +1513182 | Limnonectes macrognathus | | scientific name | +1513182 | Rana macrognathus Boulenger, 1917 | | authority | +1513182 | Rana macrognathus | | synonym | +1513809 | Alvarenga's treefrog | | common name | +1513809 | Bokermannohyla alvarengai (Bokermann, 1956) | | authority | +1513809 | Bokermannohyla alvarengai | | scientific name | +1513809 | Hyla alvarengai Bokermann, 1956 | | authority | +1513809 | Hyla alvarengai | | synonym | +1513809 | Santa Barbara treefrog | | genbank common name | +1517487 | Boesemania | | scientific name | +1517488 | Boeseman croaker | | common name | +1517488 | Boesemania microlepis (Bleeker, 1858) | | authority | +1517488 | Boesemania microlepis | | scientific name | +1517488 | Johnius microlepis Bleeker, 1858 | | authority | +1517488 | Johnius microlepis | | synonym | +1517488 | smallscale croaker | | genbank common name | +1517489 | Novaculops | | scientific name | +1517490 | Hawaiian sandy | | genbank common name | +1517490 | Novaculichthys woodi Jenkins, 1901 | | authority | +1517490 | Novaculichthys woodi | | synonym | +1517490 | Novaculops woodi (Jenkins, 1901) | | authority | +1517490 | Novaculops woodi | | scientific name | +1517490 | Wood's razorfish | | common name | +1517490 | Xyrichtys woodi | | synonym | +1517830 | Dryobates | | scientific name | +1517834 | Dendrocopos minor (Linnaeus, 1758) | | authority | +1517834 | Dendrocopos minor | | synonym | +1517834 | Dryobates minor (Linnaeus, 1758) | | authority | +1517834 | Dryobates minor | | scientific name | +1517834 | Kleinspecht | | common name | +1517834 | lesser spotted woodpecker | | genbank common name | +1517834 | Picoides minor | | synonym | +1517834 | Picus minor Linnaeus, 1758 | | authority | +1517834 | Picus minor | | synonym | +1517969 | banded panchax | | common name | +1517969 | clown killifish | | genbank common name | +1517969 | Epiplatys annulatus (Boulenger, 1915) | | authority | +1517969 | Epiplatys annulatus | | scientific name | +1517969 | Haplochilus annulatus Boulenger, 1915 | | authority | +1517969 | Haplochilus annulatus | | synonym | +1517969 | Pseudepiplatys annulatus | | synonym | +1521260 | club-mosses | | blast name | +1521260 | club mosses | | common name | +1521260 | clubmosses | | genbank common name | +1521260 | Lycopodiidae Bek., 1863 | | authority | +1521260 | Lycopodiidae | | synonym | +1521260 | Lycopodiophyta D.H.Scott, 1900 | | authority | +1521260 | Lycopodiophyta | | synonym | +1521260 | Lycopodiopsida Bartl., 1830 | | authority | +1521260 | Lycopodiopsida | | scientific name | +1522394 | Cephalopholis aurantia | | scientific name | +1522394 | Cephalopholis aurantia (Valenciennes, 1828) | | authority | +1522394 | golden hind | | genbank common name | +1522394 | golden rockcod | | common name | +1522394 | Serranus aurantius | | synonym | +1522394 | Serranus aurantius Valenciennes, 1828 | | authority | +1523025 | Leucocarbo Bonaparte, 1857 | | authority | +1523025 | Leucocarbo | | scientific name | +1523891 | Haemorhous | | scientific name | +1526411 | Mareca | | scientific name | +1527435 | Hynobius | Hynobius | scientific name | +1527437 | Satobius | | scientific name | +1532884 | Sapajus Kerr, 1792 | | authority | +1532884 | Sapajus | | scientific name | +1534316 | Leptobrachella | | scientific name | +1574408 | Cervus canadensis Erxleben, 1777 | | authority | +1574408 | Cervus canadensis | | scientific name | +1574408 | elk | elk | common name | +1574408 | wapiti | | common name | +1585921 | Chikila | | scientific name | +1592217 | Horornis Hodgson, 1845 | | authority | +1592217 | Horornis | | scientific name | +1604642 | Fibramia | | scientific name | +1647189 | siskins | | genbank common name | +1647189 | Spinus | | scientific name | +1659744 | Humerana | | scientific name | +1659745 | Pulchrana | | scientific name | +1659746 | Papurana | | scientific name | +1659747 | Sylvirana | | scientific name | +1659749 | Abavorana Oliver, Prendini, Kraus & Raxworthy, 2015 | | authority | +1659749 | Abavorana | | scientific name | +1659765 | Indosylvirana Oliver, Prendini, Kraus & Raxworthy, 2015 | | authority | +1659765 | Indosylvirana | | scientific name | +1664462 | Psittacara | | scientific name | +1664462 | Psittacara Vigors, 1825 | | authority | +1709198 | Isthmura | | scientific name | +1729444 | Hydrophylax | Hydrophylax | scientific name | +1743244 | Arizelocichla | | scientific name | +1756210 | Pternistis | | scientific name | +1780241 | Monacoa | | scientific name | +1795275 | Alcalus | | scientific name | +1798711 | Cyanobacteriota/Melainabacteria group | | scientific name | +1812035 | Plecturocebus | | scientific name | +1862675 | Amietophrynus | | synonym | +1862675 | Bufo (Amietophrynus) | | synonym | +1862675 | Sclerophrys | | scientific name | +1897773 | Chloris | Chloris | scientific name | +1897773 | Chloris Cuvier, 1800 | | authority | +1926313 | Dryophytes Fitzinger, 1843 | | authority | +1926313 | Dryophytes | | scientific name | +1930104 | Brevitrygon Last, Naylor & Manjaji-Matsumoto, 2016 | | authority | +1930104 | Brevitrygon | | scientific name | +1930205 | Curruca | | scientific name | +1935872 | Planiliza | | scientific name | +1935921 | Parachelon Durand, Chen, Shen, Fu & Borsa, 2012 | | authority | +1935921 | Parachelon | | scientific name | +1960645 | Sholicola | | scientific name | +1960649 | Bennett's wallabies | | common name | +1960649 | Bennett's wallaby | | common name | +1960649 | Notamacropus Dawson & Flannery, 1985 | | authority | +1960649 | Notamacropus | | scientific name | +1965096 | Callithrix | Callithrix | scientific name | +1965102 | Mico | | scientific name | +1971489 | Cephalopachus | | scientific name | +1987911 | Zeugodacus | Zeugodacus | scientific name | +2013023 | Larvivora | | scientific name | +2023954 | Boana | | scientific name | +2045281 | Aeorestes | | scientific name | +2054187 | Nidirana | | scientific name | +2059839 | Allochrocebus | | scientific name | +2067478 | Amnirana | | scientific name | +2070548 | Rhencus | | scientific name | +2070549 | Rhonciscus | | scientific name | +2079297 | Urva | | scientific name | +2083494 | Vieja | | scientific name | +2116695 | Microkayla | | scientific name | +2182372 | Osphranter | | scientific name | +2212484 | Pateobatis | | scientific name | +2267536 | Chersobius | | scientific name | +2358450 | Chelonodontops | | scientific name | +2502001 | Artemisiospiza | | scientific name | +2545484 | Minervarya | | scientific name | +2570238 | Alkekengi Mill., 1754 | | authority | +2570238 | Alkekengi | | scientific name | +2602927 | Paratapes | | scientific name | +2608109 | Haptista Cavalier-Smith, 2003 | | authority | +2608109 | Haptista | | scientific name | +2681187 | Leontocebus | | scientific name | +2715641 | Granatina | | scientific name | +2725783 | Zhangixalus | | scientific name | +2731430 | Pseudorana | | scientific name | +2736677 | Smutsia | | scientific name | +2753819 | Craspedocephalus | | scientific name | +2763318 | Arthroleptides | | scientific name | +2777048 | Fimbriaphyllia | | scientific name | +2777057 | Silene sect. Lychnis (L.) Greuter, 1995 | | authority | +2777057 | Silene sect. Lychnis | | scientific name | +2777074 | Silene sect. Behenantha Otth, 1824 | | authority | +2777074 | Silene sect. Behenantha | | scientific name | +2777416 | Ranoidea | Ranoidea | scientific name | +2777416 | Ranoidea Tschudi, 1838 | | synonym | +2778563 | Afronycteris | | scientific name | +2782528 | Leptomantis | | scientific name | +2786935 | Chalcorana | | scientific name | +2819854 | Galegeeska | | scientific name | +2819877 | Lophochroa | | scientific name | +2821307 | Chlorodrepanis | | scientific name | +2821309 | Coloeus | | scientific name | +2823197 | Spatula | | scientific name | +2823206 | Thectocercus | | scientific name | +2823303 | Tarsiger | | scientific name | +2839957 | Phoeniconaias | | scientific name | +2841271 | Testudinata | | scientific name | +2854839 | Heraclides | | scientific name | +2854840 | Pterourus | | scientific name | +2860737 | Wijayarana | | scientific name | +2861789 | Cabalus | | scientific name | +2902005 | Neogale | | scientific name | +2902005 | Neovison | | synonym | +2934977 | Bulnesia sect. Gonopterodendron Griseb., 1879 | | authority | +2934977 | Bulnesia sect. Gonopterodendron | | synonym | +2934977 | Gonopterodendron (Griseb.) Godoy-Burki, 2018 | | authority | +2934977 | Gonopterodendron | | scientific name | +3019017 | Nipponoluciola | | scientific name | +3025441 | Rubricatochromis | | scientific name | +3048151 | Avibirnavirus gumboroense | | scientific name | +3050134 | Macavirus alcelaphinegamma1 | | scientific name | +3050250 | Lymphocryptovirus callitrichinegamma3 | | scientific name | +3050252 | Varicellovirus caprinealpha1 | | scientific name | +3050257 | Varicellovirus cercopithecinealpha9 | | scientific name | +3050276 | Varicellovirus equidalpha1 | | scientific name | +3050278 | Varicellovirus equidalpha4 | | scientific name | +3050281 | Percavirus equidgamma2 | | scientific name | +3050287 | Mardivirus gallidalpha2 | | scientific name | +3050292 | Simplexvirus humanalpha1 | | scientific name | +3050294 | Varicellovirus humanalpha3 | | scientific name | +3050299 | Lymphocryptovirus humangamma4 | | scientific name | +3050301 | Ictavirus ictaluridallo1 | | scientific name | +3050305 | Simplexvirus macacinealpha1 | | scientific name | +3050308 | Cytomegalovirus macacinebeta3 | | scientific name | +3050315 | Rhadinovirus macacinegamma5 | | scientific name | +3050320 | Mardivirus meleagridalpha1 | | scientific name | +3050327 | Rhadinovirus muridgamma4 | | scientific name | +3050334 | Cytomegalovirus paninebeta2 | | scientific name | +3052046 | Bocaparvovirus ungulate2 | | scientific name | +3052046 | Ungulate bocaparvovirus 2 | | equivalent name | +3162714 | Osteogaster Cope, 1894 | | authority | +3162714 | Osteogaster | | scientific name | diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/input/nodes.dmp b/scripts/biomedical/NCBI_Taxonomy/test_data/input/nodes.dmp new file mode 100644 index 0000000000..3f64646b08 --- /dev/null +++ b/scripts/biomedical/NCBI_Taxonomy/test_data/input/nodes.dmp @@ -0,0 +1,2500 @@ +562 | 561 | species | EC | 0 | 1 | 11 | 1 | 0 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +786 | 114277 | species | RA | 0 | 1 | 11 | 1 | 0 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +950 | 33993 | species | NR | 0 | 1 | 11 | 1 | 0 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1117 | 1798711 | phylum | | 0 | 1 | 11 | 1 | 0 | 1 | 0 | 0 | | | | 0 | 0 | 1 | +2711 | 2706 | species | CS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +2830 | 2608109 | phylum | | 4 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | code compliant | 11 | 1 | 0 | 0 | 1 | +2864 | 33630 | class | | 4 | 0 | 1 | 1 | 4 | 1 | 0 | 0 | code compliant | 11 | 1 | 0 | 0 | 1 | +3035 | 33682 | class | | 4 | 0 | 1 | 1 | 4 | 1 | 0 | 0 | | 11 | 1 | 0 | 0 | 1 | +3195 | 3193 | clade | | 4 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | | 11 | 1 | 0 | 0 | 1 | +3311 | 3310 | species | GB | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3350 | 139271 | species | PT | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3447 | 3445 | species | RA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3464 | 54439 | species | CS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3485 | 3484 | species | HJ | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3505 | 3504 | species | BP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3512 | 3511 | species | QR | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3527 | 3526 | species | PA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3528 | 3526 | species | PA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3560 | 1307780 | species | OR | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3621 | 3620 | species | RR | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3631 | 3630 | species | AT | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3635 | 3633 | species | GH | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3654 | 3653 | species | CL | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3657 | 217619 | varietas | CM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3658 | 412675 | varietas | CM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3668 | 3667 | species | LS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3670 | 3669 | species | LA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3694 | 3689 | species | PT | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3702 | 3701 | species | AT | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3713 | 3712 | varietas | BO | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3714 | 3712 | varietas | BO | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3728 | 3727 | species | SA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3735 | 3734 | species | MO | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3750 | 3749 | species | MD | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3755 | 3754 | species | PD | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3816 | 3815 | species | AP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3847 | 1462606 | species | GM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3866 | 3865 | species | LL | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3878 | 3879 | subspecies | MS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3893 | 132459 | varietas | PM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3902 | 3901 | species | UE | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3914 | 3913 | species | VA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3915 | 3913 | species | VM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3916 | 157791 | varietas | VR | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3983 | 3982 | species | ME | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +3986 | 3984 | species | MA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4058 | 4057 | species | CR | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4060 | 4059 | species | RS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4075 | 4074 | species | DI | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4113 | 4107 | species | ST | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4120 | 4119 | species | IB | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4151 | 4150 | species | AM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4155 | 1502711 | species | EG | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4182 | 4181 | species | SI | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4212 | 4211 | species | AA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4230 | 4229 | species | GA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4400 | 4398 | species | LS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4456 | 4455 | species | AM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4460 | 4459 | species | CE | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4558 | 4557 | species | SB | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4565 | 4564 | species | TA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4641 | 4640 | species | MA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4787 | 4783 | species | PI | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4792 | 4783 | species | PN | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +4932 | 4930 | species | SC | 4 | 1 | 1 | 1 | 3 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +5022 | 220671 | species | PL | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +5101 | 5100 | species | AR | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +5322 | 5320 | species | PO | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6116 | 6115 | species | MS | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6204 | 6202 | species | TS | 1 | 1 | 1 | 1 | 9 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6221 | 6220 | species | CL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6266 | 6264 | species | TC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6271 | 6270 | species | PD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6287 | 6286 | species | DI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6326 | 6324 | species | BX | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6344 | 6343 | species | AM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6396 | 6393 | species | EF | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6454 | 6452 | species | HR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6573 | 186466 | species | MY | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6584 | 6582 | species | SS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6587 | 6586 | species | EM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6594 | 6593 | species | MN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6687 | 133894 | species | PM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6689 | 133894 | species | PV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6717 | 6714 | species | AL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6741 | 6740 | species | PC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6759 | 6758 | species | CM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6848 | 6847 | species | CR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6852 | 6851 | species | TG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6924 | 6923 | species | LM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6941 | 6940 | species | RM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +6945 | 6944 | species | IS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7007 | 7006 | species | RM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7011 | 7008 | species | SN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7051 | 3019017 | species | NC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7091 | 7090 | species | BM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7098 | 7097 | species | MN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7113 | 7112 | species | HZ | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7116 | 7115 | species | PB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7119 | 7118 | species | AP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7127 | 7126 | species | SC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7130 | 7129 | species | MS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7141 | 7140 | species | CF | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7160 | 53541 | species | AA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7175 | 518105 | species | CP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7448 | 445438 | subspecies | VS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7460 | 7459 | species | AM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7461 | 7459 | species | AC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7462 | 7459 | species | AD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7463 | 7459 | species | AF | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7507 | 7506 | species | MR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7612 | 7610 | species | PO | 1 | 1 | 1 | 1 | 9 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7660 | 7659 | species | PM | 1 | 1 | 1 | 1 | 9 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7719 | 7718 | species | CI | 1 | 1 | 1 | 1 | 13 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7755 | 7754 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7765 | 7763 | species | ES | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7852 | 7851 | species | AV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7857 | 7856 | species | NC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7873 | 7872 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7902 | 7901 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7913 | 7912 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7936 | 7935 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7943 | 7942 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7946 | 7945 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7955 | 7954 | species | DR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7965 | 7963 | species | HN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7973 | 7972 | species | IB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +7994 | 7993 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8001 | 8000 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8005 | 8004 | species | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8017 | 8016 | species | OG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8020 | 8016 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8034 | 8033 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8060 | 8059 | species | PV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8063 | 8062 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8078 | 8077 | species | FH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8090 | 8089 | species | OL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8096 | 8095 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8097 | 8095 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8127 | 8139 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8173 | 8172 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8175 | 8174 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8187 | 8186 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8197 | 8196 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8199 | 48415 | species | ZA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8204 | 8203 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8226 | 13580 | species | KP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8227 | 8225 | species | EA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8237 | 8234 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8238 | 8234 | species | TO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8255 | 8254 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8284 | 233201 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8286 | 8285 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8305 | 8295 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8313 | 8311 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8316 | 8315 | species | NV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8319 | 8317 | species | PW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8321 | 8320 | species | TG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8323 | 8322 | species | TC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8324 | 339868 | species | LV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8325 | 8322 | species | TK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8326 | 8322 | species | TC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8330 | 8329 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8354 | 262014 | species | XB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8355 | 262014 | species | XL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8364 | 8363 | species | XT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8368 | 8366 | species | UR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8371 | 2777416 | species | RA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8384 | 8383 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8386 | 651667 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8387 | 8383 | species | BJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8388 | 651656 | species | IV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8395 | 8392 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8400 | 121236 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8403 | 121164 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8406 | 121164 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8409 | 121164 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8410 | 167931 | species | GR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8420 | 8419 | species | GR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8425 | 356329 | species | ST | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8439 | 8438 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8443 | 8442 | species | AO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8459 | 2841271 | order | | 10 | 1 | 1 | 1 | 2 | 1 | 0 | 0 | code compliant | | | 0 | 0 | 1 | +8467 | 8466 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8469 | 8468 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8472 | 8471 | species | LK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8475 | 8474 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8485 | 8484 | species | MT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8499 | 8497 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8508 | 8507 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8517 | 8516 | species | II | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8558 | 8556 | species | VA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8569 | 8568 | species | TM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8584 | 8583 | species | NT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8605 | 8604 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8630 | 8627 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8631 | 8627 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8633 | 34991 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8635 | 8634 | species | MN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8637 | 8634 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8656 | 8638 | species | NA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8657 | 8638 | species | NO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8663 | 8661 | species | NS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8670 | 8669 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8682 | 8683 | species | HS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8688 | 8683 | species | HP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8693 | 8691 | species | BC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8695 | 8691 | species | BN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8714 | 51647 | species | GH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8723 | 8721 | species | BI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8725 | 8721 | species | BA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8732 | 8731 | subspecies | CD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8765 | 8764 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8767 | 2753819 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8769 | 42183 | species | OO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8787 | 8786 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8797 | 8796 | species | RA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8801 | 8800 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8813 | 8812 | species | MD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8838 | 1526411 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8839 | 8835 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8843 | 8842 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8845 | 8842 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8855 | 8854 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8861 | 8859 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8871 | 8870 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8872 | 8870 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8873 | 8870 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8874 | 8870 | species | DB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8875 | 8870 | species | DE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8876 | 8870 | species | DV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8885 | 8883 | species | OV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8895 | 8894 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8909 | 50403 | species | VS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8932 | 8931 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8945 | 8944 | species | ES | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8957 | 8956 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8959 | 8958 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8964 | 8963 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +8973 | 8972 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9002 | 9001 | species | CU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9014 | 9013 | species | CV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9017 | 9016 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9019 | 9018 | species | FP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9020 | 1756210 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9031 | 9030 | species | GG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9043 | 9041 | species | LE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9052 | 9051 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9059 | 9058 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9067 | 9062 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9105 | 9104 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9135 | 9134 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9151 | 681189 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9160 | 9159 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9209 | 9207 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9210 | 9207 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9226 | 9225 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9228 | 9227 | species | PK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9248 | 9247 | species | TS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9258 | 9257 | species | OA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9261 | 9260 | species | TA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9267 | 9266 | species | DV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9275 | 9274 | species | TC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9302 | 9300 | species | SM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9310 | 9309 | species | PT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9314 | 2182372 | species | OA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9319 | 2182372 | species | OR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9333 | 9332 | species | PP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9337 | 9336 | species | TV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9355 | 9353 | species | BV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9368 | 9367 | species | AA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9371 | 9370 | species | ET | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9378 | 9377 | species | SM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9387 | 9386 | species | BB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9395 | 9394 | species | TG | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9400 | 9399 | species | CS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9411 | 9410 | species | MG | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9426 | 9425 | species | TB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9430 | 9429 | species | DR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9433 | 9432 | species | MS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9435 | 9434 | species | MV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9463 | 30610 | species | OC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9477 | 1971489 | species | CB | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9483 | 1965096 | species | CJ | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9487 | 2681187 | species | LF | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9488 | 9486 | species | SM | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9495 | 9494 | species | CG | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9503 | 9499 | species | AS | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9505 | 9504 | species | AT | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9514 | 9513 | species | CA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9515 | 1532884 | species | SA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9516 | 9513 | species | CC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9519 | 9518 | species | LL | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9521 | 9520 | species | SS | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9523 | 1812035 | species | PM | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9530 | 9529 | species | CT | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9534 | 392815 | species | CA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9535 | 9533 | species | CC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9538 | 9537 | species | EP | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9541 | 9539 | species | MF | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9544 | 9539 | species | MM | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9545 | 9539 | species | MN | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9546 | 9539 | species | MS | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9552 | 9539 | species | MS | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9555 | 9554 | species | PA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9556 | 9554 | species | PC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9557 | 9554 | species | PH | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9565 | 9564 | species | TG | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9580 | 9578 | species | HL | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9593 | 9592 | species | GG | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9600 | 9599 | species | PP | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9601 | 9599 | species | PA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9615 | 9612 | subspecies | CL | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9620 | 1316009 | species | CT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9622 | 9621 | species | LP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9627 | 9625 | species | VV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9634 | 9633 | species | HM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9651 | 9650 | species | NN | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9654 | 9653 | species | PL | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9659 | 9658 | species | MF | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9664 | 9663 | species | MC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9669 | 9668 | subspecies | MP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9685 | 9682 | species | FC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9704 | 9703 | species | ZC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9711 | 9710 | species | HG | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9725 | 9724 | species | IG | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9735 | 9734 | species | SA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9736 | 9734 | species | SL | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9739 | 9738 | species | TT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9742 | 9741 | species | PP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9749 | 9748 | species | DL | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9764 | 9763 | species | ER | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9770 | 9766 | species | BP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9777 | 9776 | species | TI | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9783 | 9782 | species | EM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9785 | 9784 | species | LA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9786 | 24234 | species | PL | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +9794 | 9789 | species | EH | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9796 | 9789 | species | EC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9798 | 9789 | species | EP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9801 | 9800 | species | TT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9807 | 9806 | species | CS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9813 | 9812 | species | PC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9843 | 30539 | species | VV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9848 | 9847 | species | TN | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9849 | 9847 | species | TJ | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9852 | 9851 | species | AA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9861 | 1574408 | subspecies | CC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9870 | 9869 | species | RT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9886 | 9885 | species | MR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9899 | 9898 | species | AL | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9901 | 9900 | species | BB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9902 | 9900 | species | BB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9906 | 9903 | species | BJ | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9913 | 9903 | species | BT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9915 | 9903 | species | BI | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9917 | 9916 | species | BT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9923 | 9922 | species | CA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9925 | 9922 | species | CH | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9927 | 9926 | species | CT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9940 | 9935 | species | OA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9978 | 9977 | species | OP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9986 | 9984 | species | OC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9995 | 9992 | species | MM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +9997 | 9996 | species | SC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10007 | 10001 | species | SA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10012 | 10011 | species | TT | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10019 | 10016 | species | DP | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10023 | 10022 | species | PC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10029 | 10028 | species | CG | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10034 | 10033 | species | CC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10036 | 10035 | species | MA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10054 | 10053 | species | MX | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10068 | 10067 | species | AC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10085 | 10084 | species | CG | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10089 | 862507 | species | MC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10090 | 862507 | species | MM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10093 | 862508 | species | MP | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10096 | 862507 | species | MS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10103 | 862507 | species | MS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10112 | 30639 | species | MN | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10113 | 10111 | species | PD | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10116 | 10114 | species | RN | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10117 | 10114 | species | RR | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10121 | 10114 | species | RT | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10129 | 400053 | species | AS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10141 | 10140 | species | CP | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10146 | 10145 | species | GM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10149 | 10148 | species | HH | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10157 | 10156 | species | MC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10172 | 10170 | species | BS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10175 | 10173 | species | CH | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +10298 | 3050292 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10325 | 3050305 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10326 | 3050276 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10331 | 3050278 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10335 | 3050294 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10376 | 3050299 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10390 | 3050287 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10401 | 3050301 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +10995 | 3048151 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | specified | | | 1 | 0 | 1 | +12305 | 12304 | species | CM | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | code compliant; specified | | | 1 | 0 | 1 | +12657 | 3050281 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +12946 | 1664462 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +12983 | 12981 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13013 | 13012 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13029 | 13028 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13037 | 151542 | species | DP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13040 | 13039 | species | DA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13091 | 13090 | species | HL | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +13139 | 13138 | species | MD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13151 | 13150 | species | MM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13164 | 13163 | species | MP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13266 | 13265 | species | SF | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13290 | 13289 | species | TC | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13397 | 13396 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13427 | 13426 | species | CI | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +13489 | 13488 | species | DL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13603 | 1485181 | species | II | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13632 | 7374 | species | LS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13676 | 13675 | species | SJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13708 | 13707 | species | TE | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +13721 | 1094710 | species | KA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13735 | 204969 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13746 | 13745 | species | UA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13764 | 13763 | species | XM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +13834 | 13833 | species | OE | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +15371 | 4501 | species | BI | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +23013 | 23012 | species | KD | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +27457 | 98805 | species | BD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27596 | 9918 | species | BD | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27606 | 27605 | species | EG | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27616 | 9757 | species | ME | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27654 | 9416 | species | AH | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27695 | 27694 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27706 | 27705 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27720 | 27719 | species | HM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27771 | 8257 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27777 | 7916 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27787 | 27786 | species | EI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27788 | 8471 | species | LO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27790 | 27789 | species | ND | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +27923 | 27922 | species | ML | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +28437 | 2725783 | species | ZM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +28483 | 82038 | species | PA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +28502 | 3564 | species | AH | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +28540 | 26473 | species | BD | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +28588 | 1987911 | species | ZC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +28737 | 28736 | species | EE | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +28835 | 28834 | species | CN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +28913 | 17778 | species | CF | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +29017 | 1046901 | species | CS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29022 | 29021 | species | SC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29058 | 7112 | species | HA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29073 | 9639 | species | UM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29089 | 325165 | species | NC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29091 | 29090 | species | DP | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29092 | 10053 | species | MA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29139 | 29138 | species | VU | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +29642 | 32071 | species | AN | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +29694 | 4583 | species | CL | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +29706 | 38730 | species | SA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +29892 | 5230 | species | AA | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30195 | 144708 | species | BT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30317 | 30316 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30325 | 651670 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30326 | 651674 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30327 | 651670 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30331 | 8383 | species | BG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30332 | 651667 | species | RG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30334 | 1862675 | species | SK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30335 | 651680 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30336 | 651670 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30338 | 651673 | species | BV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30343 | 1926313 | species | DV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30344 | 2777416 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30374 | 342569 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30408 | 9095 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30414 | 30413 | species | BP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30415 | 9114 | species | GJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30423 | 2821309 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30425 | 30424 | species | ES | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30427 | 1523891 | species | HM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30456 | 13213 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30461 | 30460 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30489 | 7827 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30520 | 9903 | species | BF | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30521 | 9903 | species | BG | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30531 | 9855 | species | AA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30532 | 9867 | species | DD | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30576 | 9367 | species | AA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30590 | 9499 | species | AB | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30591 | 9504 | species | AA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30594 | 30593 | species | BA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30596 | 30595 | species | CC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30609 | 9462 | species | GM | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30630 | 10053 | species | ML | 6 | 1 | 1 | 1 | 2 | 1 | 0 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30640 | 10001 | species | SC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30732 | 8089 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30804 | 48170 | species | CR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30991 | 94992 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +30993 | 30992 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +31033 | 31032 | species | TR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +31155 | 8703 | species | VB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +32549 | 32548 | species | MM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +32560 | 9300 | species | SM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33118 | 24655 | species | NP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +33120 | 2570238 | species | AO | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +33434 | 33416 | species | HC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33453 | 33452 | species | DI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33466 | 33465 | species | YM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33519 | 32459 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33529 | 28769 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33548 | 9570 | species | CG | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33610 | 33609 | species | GB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +33708 | 3050327 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +33790 | 33789 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34172 | 13253 | species | SM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +34205 | 26378 | species | IG | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +34647 | 34646 | species | MT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34649 | 34646 | species | MM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34676 | 34675 | species | PT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34740 | 33416 | species | HM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34816 | 34815 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34819 | 34818 | species | GC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34886 | 34885 | species | EJ | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34892 | 34891 | species | NP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34903 | 34902 | species | TS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34924 | 34923 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +34929 | 1131247 | species | SD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +35046 | 1862675 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +35246 | 3050257 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | specified | | | 1 | 0 | 1 | +35252 | 3050134 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | specified | | | 1 | 0 | 1 | +35732 | 10114 | species | RT | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +35883 | 4119 | species | IN | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +35924 | 13625 | species | PL | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +36221 | 36220 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36223 | 9533 | species | CA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36229 | 9554 | species | PU | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36245 | 36244 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36247 | 8965 | species | GF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36249 | 30420 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36272 | 1592217 | species | HD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36275 | 36274 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36288 | 36287 | species | ZD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36312 | 1527437 | species | HR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36313 | 8320 | species | TR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36317 | 486473 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36318 | 486473 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36796 | 36795 | species | MB | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36799 | 36798 | species | UH | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +36800 | 36798 | species | UC | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37003 | 326431 | species | KM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37022 | 530166 | species | CS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37032 | 37031 | species | SS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37039 | 37038 | species | GI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37088 | 486473 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37108 | 3050320 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +37185 | 37184 | species | HL | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37285 | 417459 | species | HR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37295 | 9513 | species | CO | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37347 | 9394 | species | TB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37438 | 37437 | species | MT | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37601 | 1897773 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37607 | 37606 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +37610 | 36283 | species | ER | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38527 | 38526 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38565 | 38564 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38598 | 38597 | species | AR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38620 | 38619 | species | LC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38679 | 38667 | species | OA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38772 | 38771 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38773 | 38771 | species | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +38934 | 38933 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39023 | 8634 | species | MD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39030 | 10128 | species | AA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39082 | 39081 | species | MA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39099 | 201800 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39343 | 39171 | species | MD | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +39501 | 39500 | species | CF | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +39534 | 13667 | species | ST | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +39589 | 39588 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39591 | 39588 | species | HV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39602 | 39601 | species | LV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39603 | 39601 | species | LA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39604 | 39601 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39682 | 8764 | species | TS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39705 | 2079297 | species | UE | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39708 | 39707 | species | JC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39855 | 2777057 | species | SC | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +39944 | 3050252 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | specified | | | 1 | 0 | 1 | +39946 | 4530 | no rank | | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | | 11 | 1 | 0 | 0 | 1 | +39958 | 39957 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +39993 | 39992 | species | TC | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +40009 | 1499639 | species | PU | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +40075 | 40074 | species | AC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40095 | 40094 | species | HP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40104 | 40103 | species | AC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40157 | 40156 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40169 | 40168 | species | OA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40180 | 9077 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40205 | 95654 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40224 | 9416 | species | AC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40229 | 563992 | species | DP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40450 | 34474 | species | FB | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40505 | 40493 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +40690 | 35729 | species | TB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +41107 | 41106 | species | DP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +41139 | 41138 | species | CS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +41679 | 3726 | varietas | RS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +42043 | 2777074 | species | SV | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +42059 | 42058 | species | PC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42061 | 42058 | species | PR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42147 | 42146 | species | DM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42150 | 10062 | species | SZ | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42151 | 2819854 | species | GR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42196 | 42195 | species | DS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +42229 | 3754 | species | PA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +42284 | 42283 | species | EP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42286 | 42285 | species | HH | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42296 | 42295 | species | CE | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42299 | 42298 | species | CL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42337 | 42336 | species | BP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +42514 | 42513 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42526 | 42525 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +42563 | 42562 | species | HO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43042 | 8335 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43044 | 43043 | species | EL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43104 | 23216 | species | RH | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +43327 | 43326 | species | TA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43332 | 43331 | species | ED | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43385 | 379421 | species | PP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43472 | 1004435 | species | OS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43532 | 42756 | species | NA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43542 | 43541 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43558 | 43557 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43645 | 43644 | species | UN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43700 | 43699 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +43777 | 30597 | species | PP | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +44326 | 121164 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +44492 | 44490 | species | CO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +44664 | 44662 | species | SA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +44679 | 254007 | species | MS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +45171 | 13625 | species | PS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +45325 | 45324 | species | BC | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +45487 | 45485 | species | AH | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +45623 | 121164 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +45644 | 45643 | species | CJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +45779 | 2854840 | species | PG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +46502 | 46501 | species | HG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +46514 | 35076 | species | PM | 1 | 1 | 1 | 1 | 9 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +46750 | 2777048 | species | FA | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +46780 | 439832 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +46906 | 46905 | species | TC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +46963 | 46962 | species | CT | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +47435 | 109961 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47436 | 109961 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47437 | 109961 | species | LI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47543 | 651664 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47548 | 651669 | species | VG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47549 | 1862675 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47555 | 651670 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47559 | 651670 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47561 | 651670 | species | AW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47564 | 47563 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47577 | 47576 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47586 | 651678 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +47929 | 3050308 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +48169 | 8234 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +48191 | 48170 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +48193 | 8190 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +48456 | 48455 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +48849 | 9159 | species | PD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +48890 | 142475 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +48988 | 48987 | species | NA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +49554 | 49551 | species | LS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +49652 | 4701 | species | SS | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +50353 | 50352 | species | CM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +50591 | 50590 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +50733 | 50732 | species | AO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +50790 | 50744 | species | DT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +50911 | 109961 | species | LI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +50913 | 109961 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +50914 | 109961 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +50915 | 109961 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51089 | 51088 | species | MF | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +51342 | 51341 | species | AR | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51351 | 3711 | subspecies | BR | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +51750 | 37579 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51752 | 37579 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51844 | 51843 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51846 | 1498493 | species | IB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51891 | 196249 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51896 | 51894 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51902 | 51901 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51949 | 1004435 | species | OH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51959 | 1116803 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +51980 | 39246 | species | TH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52105 | 43045 | species | DQ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52158 | 1408259 | species | OM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +52232 | 1965102 | species | MH | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52372 | 52370 | species | QQ | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52617 | 7956 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52631 | 36801 | species | CS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52653 | 52652 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52814 | 52813 | species | NA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +52838 | 4640 | species | MB | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +53222 | 3869 | species | LC | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +53883 | 53882 | species | GD | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +54021 | 521259 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54054 | 54057 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54133 | 54132 | species | PN | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54181 | 54136 | species | TO | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54319 | 909696 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54328 | 1070161 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54342 | 909702 | species | ES | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54484 | 54483 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54497 | 2861789 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54500 | 9124 | species | GD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54563 | 48667 | species | RF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54769 | 37604 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +54971 | 54972 | species | AI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +55055 | 40103 | species | AC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +55108 | 55107 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +55534 | 55533 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +55577 | 29710 | subspecies | DC | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +56217 | 399316 | species | NL | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +56313 | 56312 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +56364 | 47766 | species | AI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +56435 | 9181 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +56722 | 56721 | species | PU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57176 | 9504 | species | AV | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57374 | 30587 | species | LC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57375 | 1965096 | species | CA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57378 | 1965096 | species | CP | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57544 | 57542 | species | BP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57550 | 57549 | species | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57551 | 57550 | subspecies | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57552 | 57550 | subspecies | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57554 | 486473 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57555 | 486473 | species | SI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57571 | 57569 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57805 | 57804 | species | HH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +57989 | 57988 | species | OF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58071 | 77236 | species | MA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58187 | 58186 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58209 | 58208 | species | TE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58317 | 58316 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58319 | 58318 | species | SE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58325 | 8283 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58512 | 685121 | species | CV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58517 | 685121 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58519 | 58518 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58674 | 57550 | subspecies | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58676 | 57550 | subspecies | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58767 | 58766 | species | MG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +58824 | 58823 | species | PI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +59529 | 9933 | species | GS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +59538 | 59537 | species | PH | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +59557 | 36048 | species | TA | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +59661 | 59660 | species | SI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +59946 | 59945 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +60273 | 52652 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +60281 | 52652 | species | AE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +60283 | 52652 | species | AE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +60402 | 130717 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +60468 | 60461 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +60710 | 392815 | species | CP | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61156 | 61153 | species | AN | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61195 | 95142 | species | NI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61614 | 8350 | species | DJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61616 | 61615 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61620 | 51242 | species | GM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61621 | 542827 | species | RB | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61817 | 762637 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61819 | 61818 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61836 | 61835 | species | TD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61851 | 325167 | species | HH | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61852 | 325165 | species | NG | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +61853 | 325165 | species | NL | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +62067 | 62066 | species | BL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +62226 | 62224 | species | NF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +62330 | 3616 | species | FT | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +63058 | 24735 | species | UP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +63221 | 9606 | subspecies | HS | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +63479 | 63461 | species | NO | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +63614 | 423606 | species | FB | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +63787 | 23012 | species | KF | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +64152 | 33789 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +64176 | 42163 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +64415 | 42163 | species | PT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +64459 | 7115 | species | PR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +64799 | 2821307 | species | CV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +64884 | 2706 | species | CJ | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +65476 | 8523 | species | LV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +65621 | 65620 | species | BL | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +65771 | 4701 | species | SP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +66062 | 542827 | species | RA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +66063 | 54136 | species | TJ | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +66169 | 50178 | species | CF | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +66627 | 2934977 | species | GA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +68449 | 68448 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +68464 | 56612 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +68476 | 39620 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +68722 | 68721 | species | AM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +68732 | 9625 | species | VZ | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +68736 | 425200 | species | LC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +68737 | 425200 | species | LG | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +69077 | 10114 | species | RA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +69081 | 69080 | species | MS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +69229 | 154031 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +69489 | 121164 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +69811 | 8283 | species | LI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +70019 | 121164 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +70548 | 927612 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +70825 | 30595 | species | CM | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +72011 | 8176 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +72247 | 42295 | species | CB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +72248 | 42295 | species | CC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +72255 | 415320 | species | EA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +72882 | 72881 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +73327 | 73326 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +73493 | 121164 | species | PK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +73634 | 73633 | species | CE | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +74133 | 74132 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +74364 | 8579 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +74940 | 8016 | species | OT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75032 | 75031 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75042 | 75041 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75046 | 75045 | species | ZS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75329 | 7983 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75332 | 75331 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75348 | 75347 | species | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75358 | 75357 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75562 | 8172 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75832 | 1526411 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75836 | 8835 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75838 | 2823197 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75839 | 8835 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75842 | 2823197 | species | SD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75864 | 8835 | species | AZ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75988 | 75989 | species | AD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +75990 | 75989 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +76215 | 76214 | species | HB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +76219 | 442324 | species | NX | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +76235 | 76234 | species | EM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +76239 | 76238 | species | LC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +76338 | 76337 | species | TB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +76340 | 76339 | species | SO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +76717 | 71112 | species | LC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +77027 | 4415 | species | NP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +78195 | 78194 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +78394 | 7763 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +78615 | 42295 | species | CH | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +78617 | 42295 | species | CM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +78620 | 42295 | species | CP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +78876 | 78872 | species | PI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +78897 | 13122 | species | LM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +79015 | 121175 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +79626 | 9235 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +79684 | 10053 | species | MO | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80345 | 6467 | species | TB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80772 | 80771 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80789 | 75333 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80836 | 80835 | species | PP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80839 | 65692 | species | CJ | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80949 | 50744 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80951 | 50744 | species | DR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +80966 | 80965 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +81370 | 81369 | species | LG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +81636 | 81635 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +82464 | 447134 | species | MR | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +82466 | 447134 | species | MA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +82595 | 82594 | species | BB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +83875 | 36211 | species | TJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +83912 | 83911 | species | PO | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +83971 | 83970 | species | HM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +84645 | 84644 | species | LR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +85589 | 1004435 | species | OG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86068 | 27772 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86207 | 86206 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86345 | 8383 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86366 | 86365 | species | MT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86373 | 86372 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86543 | 86542 | species | BA | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86606 | 44170 | species | SL | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86918 | 86917 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86921 | 85565 | species | EX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +86942 | 86941 | species | EL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +87138 | 87137 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +88031 | 88030 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +88116 | 88115 | species | DU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +88120 | 88119 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +88445 | 121164 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +88448 | 121164 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +89462 | 9918 | species | BB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +89468 | 89467 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +90408 | 90407 | species | IE | 4 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +91611 | 50744 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +91721 | 91720 | species | HN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +91738 | 91737 | species | AA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +91745 | 91744 | species | CO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +92439 | 75041 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +92724 | 43470 | species | DT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +92731 | 507706 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +92733 | 384907 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +92734 | 507706 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +92737 | 507706 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +93715 | 447236 | species | PS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +94232 | 94231 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +94413 | 80443 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +94437 | 94436 | species | PB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +94835 | 94834 | species | GG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +94993 | 94992 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +95143 | 95142 | species | ND | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +95181 | 95180 | species | AA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +95602 | 95601 | species | ES | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +95972 | 95971 | species | AA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +96430 | 323737 | species | TQ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +96741 | 96740 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +96932 | 96931 | species | PG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +97956 | 8350 | species | DG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +98648 | 98647 | species | EB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +98921 | 31032 | species | TP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +98922 | 9434 | species | MD | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +99490 | 9784 | species | LC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +99855 | 9996 | species | SP | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +100823 | 8583 | species | NN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +100937 | 9554 | species | PP | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +101364 | 7956 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +101699 | 86974 | species | TH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +101840 | 643422 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +101899 | 101898 | species | VM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +102107 | 3754 | species | PM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +102211 | 102210 | species | BH | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +102246 | 102245 | species | BT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +103373 | 110071 | species | HT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +103431 | 8383 | species | BC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +103433 | 651658 | species | IG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +103434 | 651680 | species | DH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +104688 | 69624 | species | BO | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +104690 | 69644 | species | BM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +104691 | 69644 | species | BT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +104895 | 8370 | species | LR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +104896 | 8370 | species | LE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +104954 | 8366 | species | UM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +105012 | 52652 | species | AE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +105427 | 262014 | species | XM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +105513 | 84804 | species | IG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +106331 | 3050250 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | specified | | | 1 | 0 | 1 | +106727 | 1137846 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +107026 | 107025 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +109178 | 121164 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +109271 | 27724 | species | OB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +109296 | 9885 | species | MV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +109674 | 109673 | species | FC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +109960 | 121155 | species | ON | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +109962 | 109961 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +109965 | 862141 | species | QS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110072 | 110071 | species | HR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110076 | 121155 | species | OC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110077 | 1008893 | species | HE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110094 | 109961 | species | LD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110102 | 120497 | species | NY | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110107 | 797091 | species | LK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110111 | 1659744 | species | HL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110116 | 121155 | species | OS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110118 | 1008893 | species | HT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110212 | 1170831 | species | MR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110620 | 30389 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110793 | 110792 | species | MP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +110926 | 8867 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111065 | 490056 | species | HB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111124 | 1116803 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111128 | 507706 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111130 | 47563 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111183 | 323737 | species | TS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111367 | 127010 | species | FC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111784 | 111783 | species | RH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111811 | 48284 | species | CE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111881 | 111880 | species | NU | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111898 | 111897 | species | EA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111900 | 111897 | species | EC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111902 | 111897 | species | EE | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111904 | 111897 | species | EM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111905 | 111897 | species | EM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111906 | 111897 | species | EP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111907 | 111897 | species | ER | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111916 | 111915 | species | LM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111917 | 111915 | species | LM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111918 | 111915 | species | LP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111923 | 111922 | species | MG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111924 | 111922 | species | ML | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111925 | 111922 | species | MR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111933 | 111932 | species | PX | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +111981 | 111980 | species | DC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +112179 | 58326 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +112509 | 4513 | subspecies | HV | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +113305 | 113289 | species | AT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113307 | 40074 | species | AL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113315 | 104499 | species | CL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113345 | 104514 | species | MT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113380 | 113379 | species | KB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113382 | 113381 | species | OF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113383 | 121175 | species | RH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113391 | 1527435 | species | HL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113540 | 27726 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +113544 | 113543 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +114085 | 54578 | species | CY | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +114109 | 114108 | species | HL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +116049 | 1508175 | species | BM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +116057 | 2777416 | species | RR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +116150 | 111932 | species | PA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +118138 | 118137 | species | ND | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +118230 | 43507 | species | LA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +118235 | 118234 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +118643 | 9506 | species | AC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +118688 | 51213 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119041 | 31032 | species | TX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119254 | 119253 | species | DR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119282 | 119281 | species | PM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119431 | 119430 | species | HC | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119488 | 119487 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119608 | 8911 | species | LV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119609 | 8911 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119711 | 119714 | species | ET | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +119769 | 420447 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +120218 | 71773 | subspecies | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +120495 | 1208378 | species | BA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +120502 | 862141 | species | QB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121156 | 121155 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121158 | 121155 | species | OH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121160 | 121155 | species | OL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121165 | 121164 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121168 | 167931 | species | GT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121228 | 121227 | species | PP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121350 | 121327 | species | ET | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121400 | 119410 | species | GJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121839 | 121835 | species | CP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +121869 | 8421 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +122765 | 54136 | species | TC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +123243 | 123242 | species | TN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +123333 | 123332 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +123659 | 123654 | species | MG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +124104 | 1351707 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +125246 | 651669 | species | VA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +125247 | 651676 | species | PD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +125252 | 1862675 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +125253 | 420447 | species | ML | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +125854 | 651669 | species | VI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +126966 | 126965 | species | TC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127020 | 1008893 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127021 | 1008893 | species | HN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127079 | 127028 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127175 | 68448 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127641 | 127629 | species | HO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127645 | 110071 | species | HO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127654 | 88030 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +127972 | 127971 | species | PK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +128105 | 10162 | species | PG | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129005 | 110071 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129008 | 113379 | species | KT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129016 | 129015 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129025 | 745779 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129029 | 129028 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129077 | 129072 | species | TC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129108 | 129107 | species | XC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129216 | 297009 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129237 | 1508173 | species | BE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129241 | 1508173 | species | BM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129788 | 186463 | species | RP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +129885 | 129884 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +130786 | 129015 | species | MK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +130825 | 9977 | species | OC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +131645 | 416559 | species | GN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +132587 | 8842 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +132696 | 127313 | species | BE | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +132697 | 111893 | species | CT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +132706 | 447236 | species | PP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +132708 | 132707 | species | PC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +132710 | 132709 | species | ZR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +134471 | 134470 | species | SH | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +134700 | 39588 | species | HH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +134910 | 400053 | species | AU | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +135776 | 135775 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +138070 | 138069 | species | LB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +138083 | 651656 | species | IM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +138084 | 651656 | species | IC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +138085 | 651656 | species | IN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +140017 | 94873 | species | LT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +140444 | 9041 | species | LH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +141839 | 141838 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +141976 | 8335 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +142466 | 39616 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143020 | 55977 | species | TP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143313 | 68512 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143330 | 143329 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143350 | 8172 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143403 | 143402 | species | LE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143421 | 39601 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143422 | 39601 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143439 | 68448 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143442 | 88030 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143502 | 39609 | species | CR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143526 | 129017 | species | MO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143529 | 42749 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143533 | 68448 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143535 | 88030 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143539 | 1479064 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143563 | 143562 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143568 | 32643 | species | HR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143592 | 127028 | species | SD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143648 | 143647 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +143895 | 55112 | species | NC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +145400 | 28376 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +146146 | 146139 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +146617 | 9207 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +146625 | 1523025 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +146711 | 50908 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +146730 | 58518 | species | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +146731 | 1729444 | species | HG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +147650 | 2059839 | species | AS | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +147909 | 43043 | species | ES | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +147949 | 27705 | species | MD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +149983 | 3162714 | species | OR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +149986 | 149984 | species | GG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +150245 | 150241 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +150319 | 86206 | species | PZ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +150323 | 86206 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +150325 | 150324 | species | RB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +150436 | 6734 | species | PV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +150710 | 374069 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +151304 | 151303 | species | DP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +151541 | 151543 | species | DC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +152347 | 192752 | species | LY | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +152539 | 57791 | species | EB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +153621 | 103819 | species | MB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +154334 | 3050315 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +154348 | 149981 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +154816 | 98398 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +154823 | 117934 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +155165 | 242266 | species | PA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +155167 | 242266 | species | PM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156563 | 156562 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156565 | 156564 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156870 | 2054187 | species | NO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156873 | 1008893 | species | HL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156874 | 651678 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156875 | 651678 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156876 | 651678 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156877 | 651678 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156878 | 651678 | species | PT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156879 | 651678 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156881 | 651680 | species | DS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +156992 | 156991 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +158052 | 34923 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +158688 | 155167 | subspecies | PM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +159457 | 651667 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +160721 | 94231 | species | EI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +160725 | 1208316 | species | HN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +160734 | 134629 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +160742 | 160741 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +160760 | 1647189 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161274 | 8344 | species | BM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161276 | 40193 | subspecies | OU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161624 | 161623 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161680 | 161679 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161698 | 161697 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161704 | 143627 | species | MI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161706 | 27578 | species | RR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161707 | 311778 | species | KV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161767 | 80969 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +161940 | 161939 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +163129 | 163128 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +163134 | 163133 | species | OF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +163137 | 163136 | species | KM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +163828 | 1070161 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164282 | 1217922 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164302 | 164301 | species | BE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164310 | 1534316 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164648 | 591932 | species | PB | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164736 | 164737 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164738 | 164737 | species | AV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164740 | 2067478 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164743 | 58514 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164746 | 164744 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164969 | 164968 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164970 | 164968 | species | PD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164971 | 164968 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +164973 | 129884 | species | TV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +165099 | 165098 | species | SC | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +165226 | 651667 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +165846 | 145888 | species | AJ | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +165858 | 76227 | species | DM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +165861 | 151543 | species | DE | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +166779 | 86206 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +167804 | 167803 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +167933 | 8421 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +167935 | 121155 | species | OG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +167953 | 10162 | species | PQ | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +168631 | 168630 | species | CS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +170207 | 1203020 | species | SC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +171407 | 1004436 | species | RR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +171585 | 111880 | species | NI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +171592 | 442325 | species | NA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +171594 | 442324 | species | NP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +171959 | 4558 | subspecies | SB | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +172552 | 89900 | species | LM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +173242 | 8020 | subspecies | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +173308 | 173307 | species | HL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +174269 | 174268 | species | AR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +175439 | 75045 | species | ZF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +175930 | 30426 | species | CE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176013 | 9225 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176014 | 9225 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176015 | 12945 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176039 | 176038 | species | ER | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176043 | 176042 | species | NM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176187 | 31032 | species | TP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176188 | 31032 | species | TP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176316 | 93201 | species | CM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +176508 | 490305 | species | MM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +177060 | 31032 | species | TV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +177089 | 177088 | species | MH | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +177184 | 568926 | species | NB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +178293 | 178292 | species | PM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +179362 | 179360 | species | CO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +179674 | 179673 | species | DC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +180174 | 180173 | species | CI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +180214 | 30252 | species | MS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181096 | 30420 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181099 | 98139 | species | OO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181119 | 181118 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181330 | 181329 | species | HR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181399 | 181398 | species | SI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181422 | 181421 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181437 | 181436 | species | OJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +181443 | 181442 | species | ZJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +182256 | 9499 | species | AG | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +182936 | 182935 | species | MV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +183177 | 183176 | species | XM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +183653 | 183652 | species | PT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +184238 | 8500 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +184440 | 184439 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +184539 | 79504 | species | CD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +184780 | 423492 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +185586 | 185585 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +185748 | 185747 | species | QY | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +185876 | 185875 | species | AN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +186211 | 160130 | species | GG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +186600 | 39147 | species | GB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +186990 | 58068 | species | HA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +187007 | 9432 | species | MF | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +187415 | 187414 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +188107 | 188106 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +188380 | 110684 | species | IC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +188568 | 188567 | species | AS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +188763 | 3050334 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | specified | | | 1 | 0 | 1 | +189922 | 189921 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +190369 | 190368 | species | XF | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +190476 | 8497 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191198 | 39611 | species | BO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191206 | 126965 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191398 | 525815 | species | BS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191473 | 8350 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191474 | 8350 | species | DS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191476 | 43541 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191477 | 61615 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191716 | 139973 | species | AR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191813 | 191812 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191873 | 866635 | species | TP | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +191976 | 191975 | species | PP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +192188 | 293340 | species | GM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +192191 | 192190 | species | PH | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +192207 | 192206 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +192593 | 192592 | species | ET | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +194199 | 189919 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +194917 | 474494 | species | CC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +195596 | 195595 | species | AK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +195653 | 195651 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +195821 | 143028 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +196387 | 1960649 | species | NI | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +196770 | 117934 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +196774 | 117934 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +196781 | 117934 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +197464 | 75989 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +198027 | 198026 | species | MN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +198323 | 97051 | species | CT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +198635 | 198633 | species | ET | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +198938 | 2502001 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +201992 | 201991 | subspecies | SO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +202063 | 8207 | species | NN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +202456 | 202455 | species | AS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +202839 | 130738 | species | PW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +203116 | 75361 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +203277 | 203276 | species | AE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +203558 | 9186 | species | TG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +204814 | 204813 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +204942 | 74933 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +204965 | 72005 | species | CF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +204968 | 72005 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +205123 | 33789 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +205595 | 94189 | species | GM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +206143 | 163125 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +206427 | 7045 | species | SL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +208071 | 1930205 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +209478 | 979144 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +209479 | 68429 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +209480 | 745779 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +209679 | 209678 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +210139 | 210138 | species | ET | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +210202 | 2725783 | species | ZS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +210409 | 80835 | species | PT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +211510 | 2823206 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +211679 | 125072 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +211967 | 9001 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +212358 | 2023954 | species | BA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +213803 | 248880 | species | TV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +213858 | 8579 | species | ES | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214017 | 56362 | species | AD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214018 | 56362 | species | AH | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214131 | 214130 | species | EE | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214133 | 214132 | species | ED | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214156 | 464718 | species | AV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214161 | 214160 | species | HC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214171 | 214170 | species | HM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214181 | 41185 | species | KL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214293 | 43336 | species | OR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214332 | 214331 | species | PI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214366 | 214365 | species | SV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214431 | 214430 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214449 | 36801 | species | CO | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214486 | 34820 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +214687 | 4641 | subspecies | MA | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +215329 | 215328 | species | HS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +215336 | 69129 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +215358 | 215357 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +215402 | 33789 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +215440 | 6630 | species | NS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +216193 | 1930205 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +217634 | 157304 | species | AG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +218474 | 218470 | species | PK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +218714 | 218713 | species | BC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +218720 | 218719 | species | CP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +218750 | 218747 | species | PM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +219333 | 219332 | species | ED | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +219593 | 30384 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +221568 | 210425 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +221866 | 221865 | species | JL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +221905 | 221904 | species | HA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +223773 | 223772 | species | GM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +223805 | 107765 | species | SJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +223891 | 4107 | species | SV | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +224340 | 8363 | species | XE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +224708 | 224706 | species | BT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +224716 | 224715 | species | ET | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +224718 | 224717 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +225060 | 27705 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +225117 | 3766 | species | PX | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +225337 | 225336 | species | AM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +225390 | 13105 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +225391 | 27705 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +226889 | 8317 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +227460 | 55534 | subspecies | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +227978 | 227977 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228011 | 228010 | species | LB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228029 | 228088 | species | CK | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228306 | 2013023 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228420 | 47563 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228422 | 449102 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228425 | 228648 | species | EP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228429 | 228649 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228433 | 228649 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228434 | 228649 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228444 | 228649 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228445 | 228649 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228449 | 228649 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228452 | 228649 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228564 | 228563 | species | PT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228608 | 262014 | species | XG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +228670 | 30316 | species | SH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +229057 | 204813 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +230655 | 69509 | species | SD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +230980 | 230979 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +231021 | 715368 | species | EP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +231224 | 189919 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +233775 | 247085 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +233779 | 30316 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +233780 | 30316 | species | SI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +234793 | 8028 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +235326 | 9181 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +235354 | 442327 | species | NL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +236742 | 40249 | species | UB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +236793 | 168630 | species | CS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +238031 | 238032 | species | EB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +238840 | 34818 | species | GS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +240173 | 228649 | species | CO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +240395 | 167931 | species | GE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +240406 | 240405 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +241069 | 21819 | species | MX | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +241142 | 156196 | species | AJ | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +241340 | 241338 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +242581 | 189919 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +242981 | 242980 | species | HH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +243225 | 37613 | species | VC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +243562 | 243561 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +244290 | 244289 | species | PS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +244447 | 106173 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +244449 | 244448 | species | CH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +245046 | 245045 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +245147 | 156991 | species | LT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +245776 | 245712 | species | DU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +245847 | 58200 | species | MT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +245850 | 58200 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +246411 | 109961 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +246418 | 109961 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +247094 | 8361 | species | HB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +247538 | 2715641 | species | GG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +247978 | 247977 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +248792 | 8428 | species | GO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +248868 | 8392 | species | PT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +248945 | 651675 | species | NV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +249002 | 249001 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +251502 | 454751 | species | OV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +254363 | 254361 | species | AG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +254382 | 254381 | species | PF | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +254539 | 254538 | species | FF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +255564 | 117858 | species | DT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +257879 | 2045281 | species | AC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +257884 | 9434 | species | MC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +258452 | 80992 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +261519 | 215380 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +261944 | 1041596 | species | LI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +262651 | 7145 | species | PD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +262664 | 2854839 | species | PT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +263372 | 263371 | species | SF | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +263451 | 263450 | species | LS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +263928 | 33465 | species | YR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +264213 | 40493 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +264364 | 264363 | species | PX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +265032 | 247085 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +265035 | 265034 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +265036 | 161701 | species | XM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +265040 | 161697 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +265041 | 161697 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +265044 | 265043 | species | OP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +266506 | 1508173 | species | BD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +266507 | 1508173 | species | BF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +266509 | 1508173 | species | BL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +266517 | 1508173 | species | BR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +267130 | 86196 | species | AH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +267839 | 2545484 | species | MR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +267840 | 2545484 | species | MB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +267844 | 1729444 | species | HM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +267845 | 1659765 | species | IA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +268490 | 268489 | species | LP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +270252 | 270251 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +270329 | 13105 | species | LG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +270454 | 270453 | species | ZO | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +270463 | 42274 | species | VI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +270574 | 270573 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +271217 | 103830 | species | MS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +272047 | 8918 | species | CR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +272190 | 272189 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +272797 | 75023 | species | HT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +274457 | 568896 | species | EJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +274728 | 274727 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +278734 | 278733 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +278736 | 278733 | species | ML | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +278773 | 278772 | species | SR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +279537 | 43045 | species | DF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +279931 | 54972 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +279961 | 8918 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +279982 | 44371 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +280780 | 206429 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +282069 | 9181 | species | PY | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +282254 | 282253 | species | ON | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +282316 | 282315 | species | ZK | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +282391 | 265359 | species | LP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +283035 | 283033 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +283213 | 161697 | species | LH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +283215 | 247085 | species | MO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +283217 | 247085 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +283373 | 123222 | species | CH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +283843 | 103889 | species | HG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +283870 | 283868 | species | HC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +284583 | 284584 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +285992 | 2267536 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +285996 | 285991 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +286016 | 2267536 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +286537 | 286536 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +288315 | 288314 | species | SK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +288317 | 288316 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +288646 | 288645 | species | EO | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +288789 | 288788 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +290155 | 290154 | species | BC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +291688 | 218734 | species | HC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +291689 | 218734 | species | HJ | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +291690 | 218734 | species | HL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +291691 | 218734 | species | HN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +291695 | 291694 | species | PS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +291939 | 797091 | species | LF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +294758 | 43476 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +295660 | 295659 | species | LS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +297528 | 260891 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +299648 | 192752 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +299668 | 192752 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +299683 | 192752 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +299684 | 192752 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +299727 | 2777416 | species | RD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +300230 | 2358450 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +300415 | 300414 | species | VL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +300877 | 37029 | subspecies | PB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +301031 | 301030 | species | PH | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +301037 | 300855 | species | BI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +301041 | 301040 | species | PC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +301166 | 132699 | species | EB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +301299 | 651667 | species | RA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +302418 | 2736677 | species | ST | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +302537 | 651670 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +302540 | 651670 | species | AH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +302541 | 651670 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +302544 | 651656 | species | IM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +302546 | 651656 | species | IM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +302777 | 302776 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +303304 | 9225 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +303695 | 303694 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +303935 | 7806 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +304009 | 61320 | species | HB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +304017 | 188718 | species | HE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +305662 | 305659 | species | DA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +305819 | 979144 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +305821 | 68429 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +306578 | 94231 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +306590 | 306589 | species | CO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +307205 | 95468 | species | FC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +307978 | 294366 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +308092 | 308091 | species | MV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +309541 | 31032 | species | TO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +309911 | 309910 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310513 | 53545 | species | OS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310571 | 94231 | species | EL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310664 | 121155 | species | OS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310666 | 121155 | species | OH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310668 | 129028 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310713 | 9807 | subspecies | CS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310804 | 33416 | species | HP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +310915 | 30992 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +311037 | 127345 | species | KI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +311328 | 311327 | species | TV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +311577 | 311576 | species | GC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +311779 | 311778 | species | KE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +311820 | 979144 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +314003 | 185749 | species | LD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +314334 | 1926313 | species | DA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +315381 | 51360 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +316160 | 100124 | species | PQ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +316163 | 316162 | species | NE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317167 | 72881 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317171 | 72881 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317174 | 72881 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317301 | 317299 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317303 | 75989 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317313 | 2777416 | species | RB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317319 | 8419 | species | GM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317327 | 2023954 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317335 | 374085 | species | TL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317336 | 374082 | species | EM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317344 | 374083 | species | IR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317363 | 8370 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317382 | 75989 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317388 | 44371 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317398 | 44371 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317403 | 317402 | species | TP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317899 | 8283 | species | LD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +317943 | 317942 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318254 | 318402 | species | NB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318302 | 318255 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318367 | 8370 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318376 | 248880 | species | TR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318396 | 192736 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318413 | 318412 | species | TE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318551 | 109940 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +318743 | 318742 | species | MU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +319323 | 137062 | species | BS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +319444 | 319443 | species | ML | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +319543 | 55137 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +319817 | 94434 | species | OH | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +320267 | 320266 | species | CP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +320294 | 320293 | species | PP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +320472 | 1709198 | species | IS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +320612 | 255532 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +321043 | 47605 | species | HK | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +321806 | 651656 | species | IC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +322711 | 56318 | species | HL | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +323754 | 339868 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +323755 | 339868 | species | LI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +324348 | 1008990 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +325554 | 121175 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +325556 | 109940 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +325557 | 109940 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +325558 | 109940 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +326940 | 121155 | species | OV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +326968 | 72171 | species | ZJ | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +327781 | 274730 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +327803 | 103819 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +327806 | 103819 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +327941 | 103819 | species | MI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +327944 | 94231 | species | ED | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +327958 | 164737 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +327960 | 109940 | species | AH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +327965 | 745261 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +329116 | 172918 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +329257 | 1659745 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +329258 | 1659745 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +330460 | 330459 | species | HL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +332575 | 43043 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +332576 | 43043 | species | EG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +332578 | 8335 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +333424 | 181392 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +333676 | 2067478 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +333684 | 2763318 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +333686 | 143461 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +333694 | 143647 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +334885 | 257886 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +334892 | 272789 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +334915 | 300414 | species | VA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +334942 | 33533 | species | CK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +334986 | 7872 | species | HO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +334999 | 2212484 | species | PJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +335395 | 335394 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +335999 | 7129 | species | MQ | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336072 | 8370 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336074 | 8370 | species | LR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336075 | 8370 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336077 | 8370 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336078 | 8370 | species | LI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336080 | 8370 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336081 | 8370 | species | LW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336082 | 317312 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +336083 | 2777416 | species | RA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +337775 | 255570 | species | KM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +337883 | 117883 | species | TF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +338093 | 164016 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +341696 | 341695 | species | OP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +342441 | 342440 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +342815 | 862141 | species | QE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +342817 | 120497 | species | NL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +342819 | 120497 | species | NM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +343929 | 125862 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +345721 | 42293 | species | PB | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +346249 | 346248 | species | DG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +346448 | 651679 | species | RG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +346451 | 651664 | species | PJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +351164 | 7145 | species | PP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +352245 | 244448 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +354129 | 8295 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +354433 | 354432 | species | PM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +354944 | 354943 | species | GG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +355514 | 355513 | species | LT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +355677 | 8683 | species | HS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +355915 | 355912 | species | GG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356210 | 192744 | species | HF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356215 | 288788 | species | LF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356218 | 39601 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356228 | 1795275 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356243 | 88030 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356265 | 356264 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356301 | 356300 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +356314 | 1659746 | species | PD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +357281 | 357280 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +357811 | 638272 | species | AI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +359533 | 311778 | species | KN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +359535 | 311778 | species | KA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +359538 | 311778 | species | KB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +359668 | 121175 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +360505 | 360504 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +363190 | 286536 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +364768 | 8377 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +365059 | 286536 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +365581 | 8000 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +367642 | 39599 | species | AD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +367647 | 143566 | species | EO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +367648 | 2860737 | species | WM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +367669 | 143647 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +367674 | 685121 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +369509 | 2731430 | species | PW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +369511 | 2054187 | species | NP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +369514 | 121155 | species | OA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +369515 | 1659747 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +369627 | 369626 | species | BM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +370040 | 1935872 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +370357 | 370356 | species | NH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +371028 | 61508 | species | PP | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +371673 | 94925 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +371709 | 317308 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +371864 | 198026 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +374458 | 225336 | species | AO | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +374600 | 1233221 | species | AG | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +374649 | 36295 | species | HA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +375434 | 47563 | species | LF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +376637 | 376636 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +376739 | 376738 | species | AJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +376895 | 8158 | species | CI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +377266 | 377265 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +377307 | 377306 | species | AD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +377316 | 47578 | species | AZ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +377348 | 377347 | species | TM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +377353 | 377352 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +378387 | 129398 | species | AA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +381124 | 4577 | subspecies | ZM | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +383841 | 88030 | species | PU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +384871 | 507706 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +384895 | 43470 | species | DT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +384899 | 92727 | species | EE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +384902 | 507706 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +385654 | 385652 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +385657 | 8315 | species | NM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +385674 | 129884 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +385676 | 129884 | species | TK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +385678 | 129884 | species | TW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +386281 | 93385 | varietas | BR | 4 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | code compliant; specified | 11 | 1 | 1 | 0 | 1 | +389261 | 36801 | species | CA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +389288 | 651673 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +389293 | 651673 | species | BL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +389298 | 651673 | species | BP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +389299 | 651673 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +389303 | 651673 | species | BS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +389874 | 247085 | species | MB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +390307 | 210578 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | specified | | | 1 | 0 | 1 | +390363 | 183652 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +390465 | 390464 | species | BD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +390484 | 301283 | species | NA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +390718 | 240396 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +390977 | 390976 | species | DI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +391206 | 391205 | species | HH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +391220 | 210591 | species | ST | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +391223 | 118144 | species | MJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +391864 | 2786935 | species | CR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +391866 | 1659747 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +392903 | 303694 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +394460 | 8419 | species | GO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +396791 | 396790 | species | MN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +399177 | 1659749 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +400187 | 76212 | species | EP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +400502 | 6968 | species | SV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +401547 | 47727 | species | HF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +402710 | 205131 | species | MO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +403224 | 403223 | species | CT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +404976 | 121175 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +405016 | 171801 | species | AL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +405018 | 171801 | species | AP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +405022 | 127313 | species | BE | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +405189 | 220781 | species | GF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +410301 | 410297 | species | GK | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +410303 | 410297 | species | GR | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +411963 | 411962 | species | SC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +415323 | 415322 | species | EC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +415331 | 415320 | species | EA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +416556 | 151303 | species | DT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +418657 | 9288 | species | MR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +418659 | 9288 | species | MN | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +418663 | 9288 | species | MM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +419645 | 129017 | species | MB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +419646 | 143667 | species | RV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +419956 | 41140 | species | CQ | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +420420 | 317312 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +420422 | 42756 | species | NP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +420446 | 420445 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +420460 | 117858 | species | DB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +420590 | 151303 | species | DS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +423320 | 56375 | species | CN | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +423607 | 423606 | species | FM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +427924 | 205083 | subspecies | DR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +428446 | 428445 | species | DP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +428466 | 161697 | species | LA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +430793 | 129020 | species | NB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +431941 | 121175 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +432164 | 417944 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +432528 | 29014 | species | GR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +433684 | 31032 | species | TF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +433688 | 31032 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +435155 | 94309 | species | HN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +435225 | 43257 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +435638 | 9216 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +435999 | 173330 | species | TB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +436885 | 172122 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +437330 | 7954 | species | DF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +439704 | 54483 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +439892 | 75041 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +441319 | 320266 | species | CS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +441366 | 210581 | species | GW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +441663 | 63176 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +443710 | 215380 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +443716 | 316131 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +443761 | 34767 | species | CI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +443774 | 443773 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +443788 | 443787 | species | HJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445153 | 445152 | species | HV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445506 | 27760 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445771 | 265043 | species | OC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445772 | 265043 | species | OJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445774 | 265043 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445777 | 265043 | species | OO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445778 | 265043 | species | OP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445779 | 265043 | species | OR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445780 | 265043 | species | OS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445782 | 265043 | species | OX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445783 | 265034 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445784 | 265034 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +445787 | 161697 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +446415 | 260511 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +446489 | 8373 | species | CR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +446502 | 446501 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +447135 | 447134 | species | MG | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +447920 | 1743244 | species | AN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448029 | 172268 | species | AJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448039 | 264363 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448113 | 121155 | species | OT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448114 | 121155 | species | OT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448381 | 105721 | species | OH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448438 | 228648 | species | ED | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448469 | 228648 | species | EL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448482 | 228648 | species | EP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448486 | 228648 | species | ER | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +448676 | 317360 | species | IG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +449221 | 228649 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +452076 | 33789 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +452081 | 33789 | species | CD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +452646 | 2902005 | species | NV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +453924 | 30962 | subspecies | OC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +454142 | 40493 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +455156 | 8254 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +457511 | 47718 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +458026 | 1780241 | species | MG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +458605 | 458604 | species | RB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +460200 | 30424 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +460622 | 71165 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +461231 | 156159 | species | CT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +461284 | 1534316 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +461400 | 2045281 | species | AE | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +461409 | 42721 | species | MI | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +462318 | 311576 | species | GJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +462319 | 979184 | species | LR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +462321 | 2725783 | species | ZD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +462322 | 2725783 | species | ZF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +462324 | 2725783 | species | ZM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +462328 | 2725783 | species | ZO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +463597 | 274464 | species | GO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +464359 | 464718 | species | AD | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +464373 | 464718 | species | AP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +464721 | 464720 | species | DS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +467031 | 9225 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +467706 | 1004470 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +467740 | 143461 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +467741 | 143461 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +467742 | 143461 | species | PU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +467775 | 275431 | species | IS | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +471713 | 2819877 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +472225 | 60886 | species | AD | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +472707 | 472706 | species | MN | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +472711 | 69080 | species | MH | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +473130 | 473129 | species | KL | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +473184 | 473183 | species | EA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +473346 | 473345 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +473458 | 121281 | species | GM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +476017 | 39588 | species | HM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +476251 | 288314 | species | ST | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +476506 | 13084 | species | HS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +477932 | 181096 | subspecies | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +478982 | 651680 | species | DS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +479651 | 1935872 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +479705 | 9298 | species | PB | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +481309 | 481308 | species | LS | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +481462 | 69293 | subspecies | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +482143 | 486473 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +482375 | 482374 | species | OP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +482537 | 482536 | species | GV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +482914 | 8190 | species | MG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +483428 | 2819854 | species | GR | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +484165 | 48667 | species | RK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +485637 | 485636 | species | HP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +486151 | 80974 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +486220 | 685121 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +487618 | 7954 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +488224 | 126587 | species | NM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +488246 | 68448 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +488252 | 488249 | species | GV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +491159 | 2116695 | species | MW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +491200 | 132587 | subspecies | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +491955 | 69509 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +492764 | 134396 | species | SI | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +493413 | 493409 | species | OP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +495824 | 164744 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +495863 | 1930104 | species | BW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +495865 | 7872 | species | HT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +496090 | 496089 | species | HE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +496415 | 117858 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +498271 | 498270 | species | TO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +498518 | 498517 | species | CM | 1 | 1 | 1 | 1 | 4 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +499858 | 499857 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +501720 | 435228 | species | TB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +505955 | 505953 | species | VF | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +505961 | 134759 | species | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +507973 | 507971 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +509078 | 46304 | species | HS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +510768 | 281757 | species | OA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +512429 | 480210 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +512457 | 129017 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +512458 | 129017 | species | MB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +512777 | 490727 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +515824 | 505396 | species | CM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +516038 | 516037 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +516811 | 75359 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +520854 | 745779 | species | RG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +520858 | 745779 | species | RB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +520860 | 745779 | species | RB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +520875 | 745779 | species | RT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +521022 | 495042 | species | CE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +521099 | 225060 | subspecies | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +521382 | 1507498 | species | BR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +521416 | 71159 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +521419 | 79887 | species | CT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +526129 | 715370 | species | SI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +526138 | 715370 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +532073 | 532072 | species | AY | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +533315 | 349641 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +536571 | 143461 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +544411 | 126670 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +544413 | 126670 | species | CJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +544415 | 59660 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +545688 | 123222 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +546549 | 546548 | species | PQ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +548164 | 98381 | species | NF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +548508 | 62211 | species | IP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +552877 | 175116 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +552897 | 203786 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +552899 | 552898 | species | EG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +552920 | 552919 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +552922 | 552921 | species | NT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +555356 | 555355 | species | TM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +555602 | 34820 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +557290 | 469796 | subspecies | OO | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +566292 | 7691 | species | SH | 1 | 1 | 1 | 1 | 9 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +566407 | 42509 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +568927 | 2778563 | species | AN | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +570414 | 10114 | species | RM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +570415 | 10114 | species | RN | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +571825 | 496087 | species | GG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +573213 | 573212 | species | BC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +573377 | 75285 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +573891 | 143647 | species | SW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +575557 | 209165 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +577198 | 83975 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +577200 | 83975 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +577205 | 83975 | species | AX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +578142 | 382769 | species | LR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +578143 | 382769 | species | LW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +582434 | 582433 | species | BW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +584662 | 745779 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +585466 | 85104 | species | BG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +586024 | 120497 | species | NA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +586785 | 109718 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +590941 | 27710 | species | RL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +591287 | 591301 | species | HS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +591288 | 591302 | species | HS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +591934 | 591932 | species | PR | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +596107 | 86362 | species | HU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +596145 | 209165 | species | OP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +622367 | 38660 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +622399 | 150257 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +622413 | 150305 | species | IR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +622600 | 2545484 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +624848 | 274464 | species | GL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +627180 | 143039 | species | ST | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +632609 | 2054187 | species | NC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +633869 | 43048 | subspecies | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +635075 | 635074 | species | MS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +635150 | 209678 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +638140 | 1604642 | species | FL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +642922 | 337631 | species | BF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +643485 | 39588 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +643490 | 39588 | species | HM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +643491 | 39588 | species | HP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +643493 | 39588 | species | HP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +651721 | 651720 | species | NK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +651724 | 86376 | species | TM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +652442 | 390342 | species | IJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655099 | 119705 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655831 | 164286 | species | NV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655832 | 164291 | species | PT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655833 | 164293 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655847 | 8383 | species | BV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655848 | 613087 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655852 | 651680 | species | DB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655855 | 651680 | species | DH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655856 | 651680 | species | DP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655869 | 119768 | species | SL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +655891 | 420447 | species | MU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +658163 | 1208378 | species | BH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +658176 | 50368 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +658182 | 658181 | species | CO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +661134 | 7822 | species | ST | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +661228 | 390297 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +662561 | 662560 | species | RU | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +663277 | 247085 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +666059 | 666058 | species | CR | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +666682 | 1926313 | species | DI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +666915 | 666914 | species | HA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +670114 | 143399 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +670346 | 110684 | species | IE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +670488 | 161459 | species | HC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +670521 | 12912 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +670918 | 745779 | species | RL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +670925 | 126965 | species | TM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +671158 | 7806 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +671162 | 671161 | species | NV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +672774 | 672773 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +672787 | 491871 | species | CL | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +673032 | 2083494 | species | VB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +673854 | 32439 | species | DP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681214 | 317312 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681215 | 317312 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681216 | 2777416 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681217 | 317312 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681218 | 2777416 | species | RP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681219 | 317312 | species | CV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681220 | 317312 | species | CV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681221 | 8370 | species | LA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681226 | 8370 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681227 | 8370 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681237 | 2777416 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681241 | 8370 | species | LD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681251 | 8370 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681254 | 8370 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681258 | 8370 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681259 | 8370 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681262 | 8370 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681263 | 8370 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +681274 | 8370 | species | LT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +683850 | 88030 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +685118 | 109961 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +687230 | 161697 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +687235 | 1534316 | species | LH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +687869 | 360504 | species | HN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +689408 | 143461 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +691798 | 248134 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +693459 | 693458 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +693640 | 48170 | species | CD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +693642 | 1935921 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +693644 | 8190 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +693712 | 54132 | species | PC | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +694279 | 696752 | species | NJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +694306 | 143461 | species | PG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +694311 | 143461 | species | PV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +694503 | 109961 | species | LP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +694504 | 129015 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +694506 | 247085 | species | ML | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +694510 | 651658 | species | IP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +697147 | 39609 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +697160 | 39609 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +698420 | 127028 | species | SR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +700176 | 700175 | species | NC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +700637 | 319443 | species | MS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +700668 | 163119 | species | SD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +700796 | 224704 | species | HH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +702266 | 9661 | species | ML | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +704175 | 2839957 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +705554 | 113379 | species | KB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +709362 | 102245 | species | BC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +711521 | 369633 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +712048 | 712047 | species | CS | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +713925 | 46841 | species | LJ | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +714659 | 495042 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +716691 | 9578 | species | HA | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +717468 | 717467 | species | NO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +721938 | 505324 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +721939 | 81391 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +722433 | 722432 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +723540 | 86365 | species | MH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +740928 | 740927 | species | CV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +741976 | 247085 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +743424 | 743423 | species | NO | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +744555 | 466149 | species | PF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +745122 | 745121 | species | CG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +746842 | 119745 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +747527 | 747526 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +747773 | 747772 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +749526 | 36703 | species | EV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753488 | 753481 | species | LM | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753639 | 47707 | species | ST | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753643 | 12912 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753644 | 12912 | species | AN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753646 | 47699 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753647 | 47707 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753649 | 75045 | species | ZR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753651 | 753650 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753897 | 69129 | species | AV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753902 | 69133 | species | CE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753914 | 69133 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753915 | 123717 | species | HH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +753916 | 123717 | species | HT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +758447 | 758446 | species | IG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +762043 | 117864 | species | OB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +762045 | 411568 | species | ST | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +762047 | 244453 | species | ZF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +762061 | 3025441 | species | RL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +762504 | 318405 | species | PJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +764543 | 156896 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +764832 | 150297 | species | GO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +764833 | 86206 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +764836 | 637726 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +765186 | 765185 | species | HR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +767251 | 42498 | species | GS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +767411 | 8176 | species | AB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +797160 | 218743 | species | OV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +798166 | 465452 | species | NI | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +798169 | 465452 | species | NS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +857615 | 38660 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +857645 | 210572 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +857658 | 27710 | species | RD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +857659 | 27710 | species | RE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +857662 | 27710 | species | RR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +858229 | 390299 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +858497 | 293908 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +859894 | 9324 | species | PC | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +861345 | 340506 | species | LP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +862142 | 862141 | species | QF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +862791 | 303747 | species | TH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +862799 | 862798 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +862801 | 862800 | species | OA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +862826 | 7833 | species | EB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +862898 | 862897 | species | IB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +864177 | 864176 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +866009 | 464756 | species | SN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +868862 | 42653 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +870552 | 51788 | species | HM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +873202 | 62258 | species | VB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +876627 | 121281 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +877584 | 2054187 | species | ND | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +877586 | 685169 | species | PK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879473 | 703910 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879476 | 703910 | species | CQ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879482 | 722435 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879483 | 722435 | species | EP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879491 | 57795 | species | ES | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879501 | 587054 | species | ID | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879502 | 587054 | species | IL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879513 | 57834 | species | OO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879519 | 390369 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879520 | 390369 | species | PT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879682 | 879681 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879706 | 879705 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879712 | 879711 | species | BC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +879879 | 879878 | species | NN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +880961 | 210570 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882191 | 303694 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882735 | 7443 | species | VA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882753 | 242978 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882754 | 242978 | species | AM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882772 | 882771 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882776 | 882775 | species | RF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882786 | 210628 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882817 | 314240 | species | IF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +882858 | 882857 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +884168 | 27772 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +885580 | 423606 | species | FD | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +886298 | 54555 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +886300 | 546548 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +887134 | 59945 | species | RP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +904093 | 29054 | species | ER | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +907928 | 69080 | species | MR | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +909114 | 91742 | species | CH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +909122 | 349641 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +909123 | 119737 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +909126 | 119745 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +909367 | 909366 | species | GA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +909369 | 909366 | species | GV | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +912804 | 912803 | species | BT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +912805 | 240164 | species | JA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +925459 | 30413 | species | BR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +928324 | 1585921 | species | CF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +928525 | 47563 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +929715 | 443751 | species | BW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +932675 | 84644 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +932717 | 932716 | species | GV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +933226 | 933990 | species | NK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +933992 | 291793 | species | CE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +935645 | 57854 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +941983 | 48170 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +941984 | 270536 | species | TJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +958669 | 1960645 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +978109 | 175823 | species | AW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +980415 | 94988 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +980578 | 326975 | species | KI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +987431 | 320016 | species | XC | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +990218 | 151724 | species | FD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +990556 | 119683 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +990946 | 2602927 | species | PT | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +992341 | 109961 | species | LD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +992342 | 109961 | species | LH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +992343 | 109961 | species | LK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +992344 | 109961 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +992947 | 241749 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +996475 | 121175 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +997024 | 997023 | species | HQ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +998003 | 126328 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +999462 | 9851 | species | AA | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1001915 | 497004 | species | HT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1003683 | 390299 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1010709 | 349641 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1010711 | 349641 | species | PV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1016941 | 862899 | species | OC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1017371 | 342442 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1029687 | 1508175 | species | BM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1037525 | 164737 | species | AR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1041117 | 904236 | species | MG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1042646 | 8048 | species | GC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1045542 | 390299 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1045544 | 163136 | species | KM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1046121 | 1046120 | species | GB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1047088 | 10049 | species | AA | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1047102 | 351416 | species | AP | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1048219 | 3052046 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | | | | 0 | 0 | 1 | +1048220 | 3052046 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | | | | 0 | 0 | 1 | +1048243 | 11855 | no rank | | 9 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | | | | 0 | 0 | 1 | +1048669 | 120497 | species | NV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1054643 | 910305 | species | TV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1070323 | 1070322 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1071977 | 83975 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1072479 | 55137 | species | MF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1072485 | 86376 | species | TG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1072514 | 1072513 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1085684 | 443787 | species | HF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1088130 | 662560 | species | RT | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1089686 | 561726 | species | HB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1091402 | 1004436 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1093613 | 369633 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1095382 | 1095381 | species | GM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1095716 | 365053 | species | IM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1104375 | 8366 | species | UR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1104425 | 129020 | species | NS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1108006 | 36257 | species | AN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1108806 | 1108805 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1109079 | 125062 | species | MT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1110376 | 659170 | species | IP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1110606 | 8370 | species | LC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1111465 | 143329 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1111470 | 1040952 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1111478 | 1111477 | species | NL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1112861 | 1532884 | species | SF | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1114792 | 9789 | species | EF | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1115652 | 670929 | species | FK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1120762 | 89566 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1120768 | 121178 | species | RF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1124502 | 70083 | species | AO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1130116 | 1534316 | species | LV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1130117 | 247085 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1131888 | 107965 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1131890 | 107965 | species | DX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1133662 | 248943 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1134580 | 435239 | species | OS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1138020 | 39588 | species | HB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1141927 | 2070548 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1141933 | 546548 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1143719 | 9863 | subspecies | CN | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1146954 | 879711 | species | BG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1146960 | 91742 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1146965 | 161447 | species | CF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1146973 | 587054 | species | IB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1146980 | 270577 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1147085 | 1147084 | species | EB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1147087 | 1147086 | species | FB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1147743 | 270526 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1154649 | 334384 | species | DR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1155711 | 80967 | species | AT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1156095 | 181392 | species | CM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1156139 | 391187 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1156144 | 70079 | species | SG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1156498 | 337742 | species | BD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1157335 | 119724 | species | NN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1158920 | 188374 | species | AG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1159274 | 189497 | species | EC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1160816 | 8894 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1161368 | 1161366 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1161369 | 1161366 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1162258 | 8428 | species | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1163533 | 210591 | species | SO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1165302 | 1165301 | species | WM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1167616 | 94231 | species | EB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1168020 | 121175 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1171664 | 1171662 | species | FF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1171665 | 1171662 | species | FG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1171711 | 9114 | species | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1175540 | 1175560 | species | RG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1175541 | 62964 | species | ND | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1178017 | 209680 | species | EA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1181264 | 2070549 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1182014 | 426091 | species | EN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1182147 | 241267 | species | BE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1182148 | 126328 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1182153 | 315409 | species | IP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1182258 | 1182257 | species | MA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1183148 | 587066 | species | PU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1184739 | 215380 | species | PX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1185436 | 129007 | species | IB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1188029 | 184446 | species | PN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1188032 | 1188031 | species | BS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1191327 | 2067478 | species | AD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1192867 | 1129741 | species | CR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1198083 | 51788 | species | HB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1200804 | 52123 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1201173 | 8028 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1201327 | 745779 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1202793 | 27578 | species | RT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1202794 | 27578 | species | RV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1203425 | 98381 | species | NC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1203428 | 443809 | species | RP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1203600 | 1116803 | species | AO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1206914 | 270608 | species | BG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1206920 | 40493 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1206931 | 1206930 | species | DL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1206946 | 202595 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1206948 | 1206947 | species | UL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1206982 | 303738 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1209400 | 71159 | species | LA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1212470 | 182948 | species | SS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1212746 | 70083 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213615 | 1213614 | species | BA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213663 | 263700 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213666 | 117870 | species | BP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213672 | 1213614 | species | BS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213673 | 876122 | species | BD | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213681 | 77913 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213707 | 7861 | species | RR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213717 | 7786 | species | TT | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1213718 | 86674 | species | UM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1218007 | 27707 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1223622 | 51345 | species | GK | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1227137 | 1227136 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1230708 | 1043195 | species | IH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1230718 | 270567 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1230725 | 334930 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1230726 | 1043195 | species | IJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1231074 | 1231073 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1231620 | 94231 | species | EF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1231899 | 210590 | species | OH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1232745 | 118169 | species | NC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1234705 | 118156 | species | OS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1234954 | 571339 | species | MG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1236050 | 126670 | species | CE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1236055 | 126670 | species | CS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1236056 | 188113 | species | HH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1236062 | 59660 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1236080 | 59660 | species | SV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1238289 | 150297 | species | GC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1240248 | 39147 | species | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1241976 | 186601 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1241977 | 186601 | species | SM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1246547 | 10162 | species | PS | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1249234 | 247085 | species | MB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1249237 | 161701 | species | XM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1249487 | 224717 | species | AI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1249488 | 224717 | species | AL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1250777 | 300297 | species | CL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1250785 | 32457 | species | GM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1260531 | 278733 | species | ME | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1260532 | 29153 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1263181 | 1263180 | species | GA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1265597 | 8683 | species | HB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1266867 | 270551 | species | EP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1266874 | 428035 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1266880 | 320587 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1268092 | 61808 | species | PI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1268094 | 80992 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1271572 | 143647 | species | SF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1273186 | 318408 | species | PK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1280522 | 284700 | species | DF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1282961 | 150287 | species | BB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1283716 | 143558 | species | BA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1286116 | 195593 | species | AO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1286175 | 1286174 | species | SH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1294540 | 1294539 | species | DH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1295506 | 449102 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1298884 | 259990 | species | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1300103 | 39601 | species | LF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1302381 | 47563 | species | LL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1302559 | 384907 | species | AC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1302775 | 244453 | species | ZZ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1302782 | 88199 | species | MC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1302783 | 88199 | species | MM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1302786 | 249001 | species | PJ | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1303107 | 8341 | subspecies | SI | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1306751 | 1306750 | species | EB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1311454 | 150305 | species | IO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1311497 | 991003 | species | SC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1311505 | 75045 | species | ZV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1314640 | 241532 | species | CO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1316015 | 75035 | species | PB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1316676 | 1431193 | species | LN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1319981 | 670929 | species | FH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1325494 | 270577 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1325495 | 270577 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1328070 | 1328069 | species | PS | 5 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1329237 | 223138 | species | CC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1329240 | 223138 | species | CP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1329249 | 303747 | species | TS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1329253 | 1329252 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1331681 | 27578 | species | RC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1333648 | 428445 | species | DU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1334086 | 52652 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1334848 | 300304 | subspecies | LS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1338018 | 30348 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1338022 | 30348 | species | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1338023 | 30348 | species | PO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1342827 | 39601 | species | LG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1342830 | 39601 | species | LV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1342833 | 88030 | species | PE | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1342840 | 39601 | species | LR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1343680 | 195315 | species | NB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1343690 | 270577 | species | PV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1346795 | 451696 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1355937 | 9013 | species | CN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1356035 | 51797 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1356052 | 27578 | species | RM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1357725 | 392922 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1364862 | 2823303 | species | TC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1365533 | 70083 | species | AF | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1365539 | 150290 | species | BN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1365700 | 1365699 | species | OM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1367116 | 334938 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1367118 | 991001 | species | RA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1368165 | 1368164 | species | AA | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1378173 | 119745 | species | SX | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1379451 | 327815 | species | AP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1380542 | 269193 | species | TA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1386171 | 96885 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1390257 | 134760 | subspecies | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1390258 | 134760 | subspecies | GP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1390262 | 324349 | subspecies | PM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1390265 | 134762 | subspecies | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1391725 | 1534316 | species | LG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1394124 | 121155 | species | OA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1394127 | 121155 | species | OK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1394129 | 121155 | species | OL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1394135 | 121155 | species | OW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1395009 | 1395012 | species | SP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1396860 | 42617 | species | AH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1399764 | 638290 | species | OR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1405560 | 314248 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1405644 | 57791 | species | EY | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1405645 | 130720 | species | EM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1405656 | 57846 | species | PL | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1405661 | 57850 | species | RS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1411154 | 428445 | species | DP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1412110 | 1412109 | species | SV | 1 | 1 | 1 | 1 | 5 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1412450 | 1412449 | species | HG | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1414481 | 215380 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1415635 | 8835 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1421018 | 745779 | species | RP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1428451 | 613076 | species | CB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1431475 | 475180 | species | GV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1431494 | 397597 | species | SR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1431514 | 1431513 | species | VN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1436202 | 1436200 | species | AS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1441476 | 88030 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1445676 | 2782528 | species | LB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1446469 | 181436 | species | OK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1453604 | 37063 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1453815 | 461241 | species | PC | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1455662 | 435003 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1455677 | 496013 | species | GO | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1458430 | 46296 | species | DP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1459836 | 40510 | species | PA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1460501 | 29081 | species | MM | 2 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1462579 | 8518 | species | SU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1462580 | 8518 | species | SB | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1474818 | 109718 | species | CV | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1474870 | 109716 | species | AA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1475060 | 189919 | species | PH | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1475061 | 189919 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1479094 | 226820 | species | RM | 6 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1480063 | 134919 | species | PP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1486644 | 46304 | species | HU | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1486653 | 1486652 | species | PS | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1496311 | 1496304 | species | MR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1498866 | 129015 | species | ME | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1498878 | 129015 | species | MP | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1500691 | 181473 | species | AN | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1502869 | 1502868 | species | PR | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1502963 | 55141 | species | SA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1510417 | 109961 | species | LK | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1513182 | 109961 | species | LM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1513809 | 374066 | species | BA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1517488 | 1517487 | species | BM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1517490 | 1517489 | species | NW | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1517834 | 1517830 | species | DM | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1517969 | 52655 | species | EA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | +1521260 | 58023 | class | | 4 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | code compliant | 11 | 1 | 0 | 0 | 1 | +1522394 | 91742 | species | CA | 10 | 1 | 1 | 1 | 2 | 1 | 1 | 0 | code compliant; specified | | | 1 | 0 | 1 | diff --git a/scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf b/scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf deleted file mode 100644 index ccbc748473..0000000000 --- a/scripts/biomedical/NCBI_Taxonomy/test_data/nodes_enum_expected.mcf +++ /dev/null @@ -1,184 +0,0 @@ -Node:dcid:BiologicalTaxonomicRankEnum -name: "BiologicalTaxonomicRankEnum" -typeOf: schema:Class -subClassOf: schema:Enumeration -description: "In biology, taxonomic rank is the relative level of a group of organisms (a taxon) in an ancestral or hereditary hierarchy. A common system of biological classification (taxonomy) consists of species, genus, family, order, class, phylum, kingdom, and domain. However, todays taxonomic rankings have expanded beyond these seven basic classifications." -descriptionUrl: "https://en.wikipedia.org/wiki/Taxonomic_rank" - - -Node:dcid:BiologicalTaxonomicRankBiotype -name: biotype -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankClade -name: clade -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankClass -name: class -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankCohort -name: cohort -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankFamily -name: family -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankForma -name: forma -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankFormaSpecialis -name: forma specialis -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankGenotype -name: genotype -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankGenus -name: genus -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankInfraclass -name: infraclass -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankInfraorder -name: infraorder -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankIsolate -name: isolate -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankKingdom -name: kingdom -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankMorph -name: morph -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankNoRank -name: no rank -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankOrder -name: order -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankParvorder -name: parvorder -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankPathogroup -name: pathogroup -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankPhylum -name: phylum -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSection -name: section -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSeries -name: series -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSerogroup -name: serogroup -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSerotype -name: serotype -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSpecies -name: species -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSpeciesGroup -name: species group -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSpeciesSubgroup -name: species subgroup -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankStrain -name: strain -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubclass -name: subclass -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubcohort -name: subcohort -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubfamily -name: subfamily -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubgenus -name: subgenus -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubkingdom -name: subkingdom -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSuborder -name: suborder -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubphylum -name: subphylum -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubsection -name: subsection -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubspecies -name: subspecies -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSubtribe -name: subtribe -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSuperclass -name: superclass -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSuperfamily -name: superfamily -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSuperkingdom -name: superkingdom -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSuperorder -name: superorder -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankSuperphylum -name: superphylum -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankTribe -name: tribe -typeOf: dcs:BiologicalTaxonomicRankEnum - -Node:dcid:BiologicalTaxonomicRankVarietas -name: varietas -typeOf: dcs:BiologicalTaxonomicRankEnum - diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh b/scripts/biomedical/NCBI_Taxonomy/tests.sh similarity index 93% rename from scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh rename to scripts/biomedical/NCBI_Taxonomy/tests.sh index e1e7bbba39..cb756ecfec 100755 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/tests.sh +++ b/scripts/biomedical/NCBI_Taxonomy/tests.sh @@ -17,14 +17,15 @@ # Edited By: Samantha Piekos # Last Edited: 03-Jul-2024 -# Command -python3 format_ncbi_taxonomy_test.py - # download data commons java test tool version 0.1-alpha.1k +rm -rf tmp mkdir -p tmp; cd tmp wget https://github.com/datacommonsorg/import/releases/download/0.1-alpha.1k/datacommons-import-tool-0.1-alpha.1-jar-with-dependencies.jar cd .. # run java test tool -java -jar tmp/datacommons-import-tool-0.1-alpha.1-jar-with-dependencies.jar lint tMCFs/ncbi_taxonomy.tmcf output/ncbi_taxonomy.csv output/*.mcf +java -jar tmp/datacommons-import-tool-0.1-alpha.1-jar-with-dependencies.jar lint tMCFs/ncbi_taxonomy.tmcf output/ncbi_taxonomy.csv output/ncbi_taxonomy_schema_enum.mcf mv dc_generated ncbi_taxonomy_report + +# remove tmp folder +rm -rf tmp \ No newline at end of file From d90da57cc291d53a22e28adf94829a435dced721 Mon Sep 17 00:00:00 2001 From: Pradeep Krishnaswamy Date: Tue, 3 Sep 2024 05:48:06 +0000 Subject: [PATCH 18/21] type fix in README.md file --- scripts/biomedical/NCBI_Taxonomy/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index ca9e2efbb7..2b778103fa 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -110,7 +110,7 @@ More information about the NCBI Taxonomy database can be found [here](https://ww ##### Bash Scripts - [download.sh](download.sh) downloads the most recent release of the NCBI Taxonomy data. -- [run.sh](run.sh) creates new taxonomy enum mfc and converts data into formatted CSV for import of data using categories.dmp, division.dmp, host.dmp, names.dmp & nodes.dmp files from download location +- [run.sh](run.sh) creates new taxonomy enum mcf and converts data into formatted CSV for import of data using categories.dmp, division.dmp, host.dmp, names.dmp & nodes.dmp files from download location - [tests.sh](tests.sh) runs standard tests on CSV + tMCF pairs to check for proper formatting. ##### Python Scripts From 2c9cce9351cbfb93f977e285b449ca1dabbee2aa Mon Sep 17 00:00:00 2001 From: Pradeep Krishnaswamy Date: Thu, 3 Oct 2024 15:49:37 +0000 Subject: [PATCH 19/21] lint issue fix --- .../NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py | 12 +++++------- .../scripts/format_ncbi_taxonomy_test.py | 6 +++--- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py index d32b5869d9..28c5b1f549 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy.py @@ -300,7 +300,7 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: """ with open(mcf_file_path, 'w') as file: file.write(FIRST_MCF_ENTRY - ) # Assuming FIRST_MCF_ENTRY is defined elsewhere + ) # Assuming FIRST_MCF_ENTRY is defined elsewhere global DIVISION_DICT df.sort_values(by=['division_namePascalCase'], inplace=True) @@ -311,8 +311,7 @@ def append_mcf_data(self, df: pd.DataFrame, mcf_file_path: str) -> None: division_name=row['division_name'].title(), division_acronym=row['division_acronym'], ) - mcf_line = DivisionCls().add_description_mcf_line( - mcf_line, row) + mcf_line = DivisionCls().add_description_mcf_line(mcf_line, row) file.write(mcf_line) DIVISION_DICT[row[ 'division_code']] = 'dcs:BiologicalTaxonomicDivision' + row[ @@ -363,8 +362,8 @@ def clean_names_dataframe(self, df: pd.DataFrame) -> None: property_list.append(char_replace(row['name_txt'])) try: property_list.append( - char_replace(row['unique_name'].split('<') - [1].split('>')[0])) + char_replace( + row['unique_name'].split('<')[1].split('>')[0])) except: logging.error(f"Error in split {property_value}") else: @@ -423,8 +422,7 @@ def create_dataframe(self, file_path: str) -> pd.DataFrame: global HOST_DICT df = DataFrameGenerator().get_dataframe(file_path, HOST_DMP) df = DataFrameGenerator().assign_dataframe_header(df, HOST_COL) - df['DC_host_enum'] = df['host'].apply( - lambda x: self.__hostdcsformat(x)) + df['DC_host_enum'] = df['host'].apply(lambda x: self.__hostdcsformat(x)) return df def __hostdcsformat(self, host: str) -> str: diff --git a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py index 97e074c572..ef4b0d6039 100644 --- a/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py +++ b/scripts/biomedical/NCBI_Taxonomy/scripts/format_ncbi_taxonomy_test.py @@ -22,7 +22,7 @@ import tempfile import unittest from deepdiff.diff import DeepDiff -from format_ncbi_taxonomy import * +from .format_ncbi_taxonomy import * MODULE_DIR_PATH = dirname(dirname(abspath(__file__))) SOURCE_FILE_PATH = dirname(dirname(abspath(__file__))) + '/test_data/input' @@ -130,8 +130,8 @@ def test_check_mcf_entries_nodes(self): with open( os.path.join( MODULE_DIR_PATH, - 'test_data/expected_mcf_files/nodes_enum_expected.mcf' - ), 'r') as mcf: + 'test_data/expected_mcf_files/nodes_enum_expected.mcf'), + 'r') as mcf: expected_mcf_list.extend(mcf.read().split('\n\n')) assert DeepDiff(expected_mcf_list, current_mcf_list) == {} From a94616e90cafa77b073e552d0db5966051e8f295 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Mon, 28 Oct 2024 23:01:06 -0700 Subject: [PATCH 20/21] Update README.md update the properties subsection to describe all properties included in the import --- scripts/biomedical/NCBI_Taxonomy/README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index 2b778103fa..84bf688c81 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -49,14 +49,18 @@ In this import we include information from the following files downloaded from t ##### Properties -* BiologicalEntity - * ncbiBlastName * Taxon + * abbreviaion * biologicalHost + * citation * commonName * genBankName * hasInheritedDivsion + * ncbiBlastName * ncbiTaxId + * scientificName + * specializationOf + * synonym * taxonDivision * taxonRank * taxonTopLevelCategory @@ -155,4 +159,4 @@ This sample [dataset](/scripts/biomedical/NCBI_Taxonomy/test_data) is a represen The sample input and output data are located at the following links: Input data: [input_link](test_data/input) -Output data: [output_link](test_data/expected_output) \ No newline at end of file +Output data: [output_link](test_data/expected_output) From 96259ac81fb960d9c37b4370ee14a7d579ba5157 Mon Sep 17 00:00:00 2001 From: Samantha Piekos Date: Mon, 28 Oct 2024 23:11:26 -0700 Subject: [PATCH 21/21] Update README.md update notes and caveat subsection --- scripts/biomedical/NCBI_Taxonomy/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/biomedical/NCBI_Taxonomy/README.md b/scripts/biomedical/NCBI_Taxonomy/README.md index 84bf688c81..6cbb00ffad 100644 --- a/scripts/biomedical/NCBI_Taxonomy/README.md +++ b/scripts/biomedical/NCBI_Taxonomy/README.md @@ -33,7 +33,7 @@ NCBI Taxonomy data can be downloaded from the National Center for Biotechnology "NCBI Taxonomy distinguishes between formal and informal names. Formal names are declared based on rules laid down in four relevant codes of nomenclature (although other codes do exist). These are the International Code of Nomenclature for algae, fungi, and plants (ICNafp), the International Code of Nomenclature of Prokaryotes (ICNP) and the International Code of Zoological Nomenclature (ICZN). The viruses are governed by the International Code of Virus Classification and Nomenclature (ICVCN, also referred to as the ICTV Code). Informal names follow internal rules that are dictated by practical considerations outside of the Codes. For example, names lacking species epithets are commonly applied to GenBank records." -In this import we include information from the following files downloaded from the ftp backend: +In this import we include information from the `ncbi_taxcat` and the following files downloaded from the ftp backend from `ncbi_taxdump`: * divisions.dmp * names.dmp * host.dmp @@ -45,7 +45,7 @@ In this import we include information from the following files downloaded from t ##### Classes * Taxon - * Thing -> BioChemEntity -> BiomedicalEntity -> BiologicalEntity -> GenomeAnnotation -> Taxon + * Thing -> BiomedicalEntity -> BiologicalEntity -> GenomeAnnotation -> Taxon ##### Properties @@ -93,9 +93,9 @@ The edges, or links, in this import are between Taxon nodes that are related in * Data Consistency and Quality: - Rank Changes: Taxonomic classifications are subject to change, necessitating regular data refreshes. + Rank Changes: Taxonomic classifications are subject to change, necessitating regular data refreshes. The NCBI Taxonomy database is on a daily refresh. - Parent-Child Relationships: Verify the accuracy of parent-child relationships between Taxon. + Data Included in Biomedical Data Commons: Please note that in this import the files included from NCBI Taxonomy include `ncbi_taxcat` and a subset of files from `ncbi_taxdump`: `divisions.dmp`, `names.dmp`, `host.dmp`, nodes.dmp`, and `categories.dmp` ### License @@ -124,7 +124,7 @@ More information about the NCBI Taxonomy database can be found [here](https://ww #### tMCFs -- [ncbi_taxonomy_schema.mcf](tMCFs/ncbi_taxonomy.tmcf) contains the tmcf mapping to the csv of taxonomy. +- [ncbi_taxonomy.tmcf](tMCFs/ncbi_taxonomy.tmcf) contains the tmcf mapping to the csv of taxonomy. ### Import Procedure